apply ceph-client-key normalization to common

This commit is contained in:
Alan Meadows 2016-11-30 15:04:31 -08:00
parent 79c8596c53
commit b372c4b2f8

View File

@ -4,8 +4,9 @@ kind: Secret
metadata:
name: "pvc-ceph-conf-combined-storageclass"
type: kubernetes.io/rbd
data:
key: {{ include "secrets/ceph-client-key" . | quote }}
data:
key: |
{{ include "secrets/ceph-client-key" . | indent 4 }}
---
apiVersion: v1
kind: Secret
@ -13,4 +14,5 @@ metadata:
name: "pvc-ceph-client-key"
type: kubernetes.io/rbd
data:
key: {{ include "secrets/ceph-client-key" . | quote }}
key: |
{{ include "secrets/ceph-client-key" . | indent 4 }}