diff options
Diffstat (limited to 'kubernetes/policy')
-rw-r--r-- | kubernetes/policy/templates/policy-pv-pvc.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kubernetes/policy/templates/policy-pv-pvc.yaml b/kubernetes/policy/templates/policy-pv-pvc.yaml index dda9820c06..71cf3d8a48 100644 --- a/kubernetes/policy/templates/policy-pv-pvc.yaml +++ b/kubernetes/policy/templates/policy-pv-pvc.yaml @@ -1,10 +1,10 @@ apiVersion: v1 kind: PersistentVolume metadata: - name: policy-db + name: "{{ .Values.nsPrefix }}-policy-db" namespace: "{{ .Values.nsPrefix }}-policy" labels: - name: policy-db + name: "{{ .Values.nsPrefix }}-policy-db" spec: capacity: storage: 2Gi @@ -27,4 +27,4 @@ spec: storage: 2Gi selector: matchLabels: - name: policy-db + name: "{{ .Values.nsPrefix }}-policy-db" |