Skip to content

Commit

Permalink
Remove hard-coded PG_CONN_URL in Conductor Chart (#718)
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Stanton <ian@tembo.io>
  • Loading branch information
ianstanton committed Apr 18, 2024
1 parent 5c41481 commit ed6b2ce
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 12 deletions.
2 changes: 1 addition & 1 deletion charts/conductor/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 0 additions & 5 deletions charts/conductor/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 0 additions & 5 deletions charts/conductor/templates/watcher-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 6 additions & 1 deletion charts/conductor/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit ed6b2ce

Please sign in to comment.