Skip to content

Commit

Permalink
add key and crt to be pushed in by values
Browse files Browse the repository at this point in the history
  • Loading branch information
khaliqgant committed Jan 9, 2024
1 parent 6440ffa commit ea3f934
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/jobs/templates/temporal-secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ metadata:
name: {{ .Values.temporalio.volumeName }}
type: Opaque
data:
{{ .Values.temporalio.TEMPORAL_NAMESPACE }}.key: # paste in your key here
{{ .Values.temporalio.TEMPORAL_NAMESPACE }}.crt: # paste in your key here
{{ .Values.temporalio.TEMPORAL_NAMESPACE }}.key: {{ .Values.temporalio.TEMPORAL_KEY }}
{{ .Values.temporalio.TEMPORAL_NAMESPACE }}.crt: {{ .Values.temporalio.TEMPORAL_CRT }}
2 changes: 2 additions & 0 deletions charts/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,5 @@ temporalio:
volumeName: temporal-secrets
TEMPORAL_ADDRESS: nango-sync.guqns.tmprl.cloud:7233
TEMPORAL_NAMESPACE: nango-sync.guqns
TEMPORAL_KEY: BASE_64_VALUE # replace
TEMPORAL_CRT: BASE_64_VALUE # replace

0 comments on commit ea3f934

Please sign in to comment.