Skip to content

Commit

Permalink
move env vars from powerpipe to steampipe
Browse files Browse the repository at this point in the history
  • Loading branch information
oguzhan-yilmaz committed Oct 18, 2024
1 parent e01d37f commit c872c1b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 0 additions & 5 deletions helm-chart/templates/powerpipe-secret-env-vars.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@ metadata:
{{- include "powerpipe.labels" . | nindent 4 }}
stringData:
POWERPIPE_DATABASE: postgres://steampipe:{{ .Values.global.steampipeDatabasePassword }}@{{ include "steampipe.fullname" . }}:9193/steampipe
PGDATABASE: "steampipe"
PGHOST: "127.0.0.1"
PGPASSWORD: {{ .Values.global.steampipeDatabasePassword }}
PGUSER: "steampipe"
PGPORT: "9193"
{{- if .Values.powerpipe.secretEnvVars }}
{{- toYaml .Values.powerpipe.secretEnvVars | nindent 2 }}
{{- end }}
5 changes: 5 additions & 0 deletions helm-chart/templates/steampipe-secret-env-vars.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ metadata:
{{- include "steampipe.labels" . | nindent 4 }}
stringData:
STEAMPIPE_DATABASE_PASSWORD: {{ .Values.global.steampipeDatabasePassword }}
PGDATABASE: "steampipe"
PGHOST: "127.0.0.1"
PGPASSWORD: {{ .Values.global.steampipeDatabasePassword }}
PGUSER: "steampipe"
PGPORT: "9193"
{{- if .Values.powerpipe.secretEnvVars }}
{{- toYaml .Values.steampipe.secretEnvVars | nindent 2 }}
{{- end }}
Expand Down

0 comments on commit c872c1b

Please sign in to comment.