Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions contrib/charts/dragonfly/ci/tls-values.golden.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ metadata:
app.kubernetes.io/version: "v1.8.0"
app.kubernetes.io/managed-by: Helm
---
# Source: dragonfly/templates/extra-manifests.yaml
apiVersion: v1
kind: Secret
metadata:
name: dfly-password
stringData:
password: foobar
---
# Source: dragonfly/templates/tls-secret.yaml
apiVersion: v1
kind: Secret
Expand Down Expand Up @@ -114,6 +122,12 @@ spec:
volumeMounts:
- mountPath: /etc/dragonfly/tls
name: tls
env:
- name: DFLY_PASSWORD
valueFrom:
secretKeyRef:
name: dfly-password
key: password
volumes:
- name: tls
secret:
Expand Down
14 changes: 14 additions & 0 deletions contrib/charts/dragonfly/ci/tls-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,17 @@ tls:
AwEHoUQDQgAEFjX07jY4TxIu4dXIgktCLXyoIgYcSxpRdzLY5RU4wq85Mp0kgAaD
LTZY3AxNIZv4s20VKIAHAxXL5J7woc8Wqg==
-----END EC PRIVATE KEY-----

extraObjects:
- apiVersion: v1
kind: Secret
metadata:
name: dfly-password
stringData:
password: foobar

passwordFromSecret:
enable: true
existingSecret:
name: dfly-password
key: password