diff --git a/charts/conductor/Chart.yaml b/charts/conductor/Chart.yaml index 1ff5d33ce..75459c727 100644 --- a/charts/conductor/Chart.yaml +++ b/charts/conductor/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.3.0 +version: 0.3.1 # 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/charts/conductor/templates/deployment.yaml b/charts/conductor/templates/deployment.yaml index e1f8a3c1c..ec5674677 100644 --- a/charts/conductor/templates/deployment.yaml +++ b/charts/conductor/templates/deployment.yaml @@ -39,11 +39,6 @@ spec: containerPort: 8080 protocol: TCP env: - - name: PG_CONN_URL - valueFrom: - secretKeyRef: - name: data-plane - key: _data-plane_postgres_connection_string - name: CONDUCTOR_ENABLED value: "true" - name: WATCHER_ENABLED diff --git a/charts/conductor/templates/watcher-deployment.yaml b/charts/conductor/templates/watcher-deployment.yaml index cfa7f6405..b0e99f73a 100644 --- a/charts/conductor/templates/watcher-deployment.yaml +++ b/charts/conductor/templates/watcher-deployment.yaml @@ -39,11 +39,6 @@ spec: containerPort: 8080 protocol: TCP env: - - name: PG_CONN_URL - valueFrom: - secretKeyRef: - name: data-plane - key: _data-plane_postgres_connection_string - name: CONDUCTOR_ENABLED value: "false" - name: WATCHER_ENABLED diff --git a/charts/conductor/values.yaml b/charts/conductor/values.yaml index aa73e9e15..81f652b26 100644 --- a/charts/conductor/values.yaml +++ b/charts/conductor/values.yaml @@ -50,4 +50,9 @@ securityContext: {} nodeSelector: {} tolerations: [] affinity: {} -env: {} +env: + - name: PG_CONN_URL + valueFrom: + secretKeyRef: + name: data-plane + key: _data-plane_postgres_connection_string