From 0d0b70d99854183334a4cb8c36c76c1a376f9d39 Mon Sep 17 00:00:00 2001 From: wesuuu Date: Mon, 15 Nov 2021 10:40:57 -0800 Subject: [PATCH] Fixed nfs mount in chart --- chart/Chart.yaml | 2 +- chart/templates/deployment.yaml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 8be0333..d295137 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.2.2 +version: 0.2.3 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/chart/templates/deployment.yaml b/chart/templates/deployment.yaml index 157b4f5..c814322 100644 --- a/chart/templates/deployment.yaml +++ b/chart/templates/deployment.yaml @@ -18,9 +18,9 @@ spec: spec: volumes: - name: config - configMap: - name: {{ include "deployment-controller.fullname" . }} - defaultMode: 0777 + nfs: + server: {{ .Values.nfs.server }} + path: {{ .Values.nfs.path }} {{- with .Values.imagePullSecrets }} imagePullSecrets: {{- toYaml . | nindent 8 }}