From 75332fb3fe7e5f6ef2d3da6fc94d8304a86596a0 Mon Sep 17 00:00:00 2001 From: Kochetkov S Date: Thu, 9 Apr 2026 13:17:23 +0300 Subject: [PATCH] fix(local-path): provide complete values map for chart templates --- .../patches/local-path-provisioner.yaml | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/clusters/yc-k8s-test/infrastructure/patches/local-path-provisioner.yaml b/clusters/yc-k8s-test/infrastructure/patches/local-path-provisioner.yaml index 67d6037..7c1eba6 100644 --- a/clusters/yc-k8s-test/infrastructure/patches/local-path-provisioner.yaml +++ b/clusters/yc-k8s-test/infrastructure/patches/local-path-provisioner.yaml @@ -7,10 +7,47 @@ spec: interval: 5m timeout: 10m values: + replicaCount: 1 + image: + repository: cr.yandex/crp3ccidau046kdj8g9q/contour/local-path-provisioner-nn/local-path-provisioner + tag: v0.0.24 + pullPolicy: IfNotPresent + helperImage: + repository: cr.yandex/crp3ccidau046kdj8g9q/contour/local-path-provisioner-nn/busybox + tag: latest + defaultSettings: + registrySecret: null + privateRegistry: + registryUrl: null + registryUser: null + registryPasswd: null imagePullSecrets: - name: regcred + nameOverride: "" + fullnameOverride: "" storageClass: create: true defaultClass: false name: local-path reclaimPolicy: Delete + nodePathMap: + - node: DEFAULT_PATH_FOR_NON_LISTED_NODES + paths: + - /opt/local-path-provisioner + resources: {} + rbac: + create: true + serviceAccount: + create: true + name: "" + nodeSelector: {} + tolerations: [] + affinity: {} + configmap: + name: local-path-config + setup: |- + set -eu + mkdir -m 0777 -p "$VOL_DIR" + teardown: |- + set -eu + rm -rf "$VOL_DIR"