Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Commit

Permalink
fixing indenting
Browse files Browse the repository at this point in the history
Signed-off-by: Jeff Billimek <jeff@billimek.com>
  • Loading branch information
billimek committed Mar 10, 2019
1 parent 84038a4 commit d3bbf6f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions stable/unifi/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,16 +94,16 @@ spec:
{{ toYaml .Values.resources | indent 12 }}
volumes:
{{- if and .Values.persistence.enabled .Values.persistence.existingClaim }}
- name: unifi-data
{{- if .Values.persistence.enabled }}
persistentVolumeClaim:
claimName: {{ .Values.persistence.existingClaim }}
{{- else }}
emptyDir: {}
{{- end }}
- name: unifi-data
{{- if .Values.persistence.enabled }}
persistentVolumeClaim:
claimName: {{ .Values.persistence.existingClaim }}
{{- else }}
emptyDir: {}
{{- end }}
{{- else if not .Values.persistence.enabled }}
- name: unifi-data
emptyDir: {}
- name: unifi-data
emptyDir: {}
{{- else if and .Values.persistence.enabled (not .Values.persistence.existingClaim) }}
volumeClaimTemplates:
- metadata:
Expand Down

0 comments on commit d3bbf6f

Please sign in to comment.