Skip to content

Commit

Permalink
k8s wants all env vars as strings only
Browse files Browse the repository at this point in the history
  • Loading branch information
cromega committed Mar 1, 2020
1 parent bb1668e commit a285d74
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ci/k8s/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ spec:
imagePullPolicy: Always
env:
- name: KG_PUBLIC_URL
value: $KG_PUBLIC_URL
value: "$KG_PUBLIC_URL"
- name: KG_PRIVATE_KEY
value: $KG_PRIVATE_KEY
value: "/etc/keyguard/private_key"
- name: KG_YUBI_CLIENT_ID
value: $KG_YUBI_CLIENT_ID
value: "$KG_YUBI_CLIENT_ID"
- name: KG_YUBI_API_KEY
value: "/etc/keyguard/private_key"
value: "$KG_YUBI_API_KEY"
volumeMounts:
- name: private-key
mountPath: "/etc/keyguard"
Expand Down

0 comments on commit a285d74

Please sign in to comment.