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

Commit

Permalink
Merge pull request #206 from SataQiu/fix-template-20200913
Browse files Browse the repository at this point in the history
Fix helm chart template format issues
  • Loading branch information
wonderflow authored Sep 14, 2020
2 parents 51caac1 + d9752e5 commit a760d93
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions charts/oam-kubernetes-runtime/templates/oam-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,15 +123,15 @@ spec:
secretName: {{ .Values.certificate.secretName | quote }}
{{ end }}
terminationGracePeriodSeconds: 10
{{- with .Values.nodeSelector }}
nodeSelector:
{{ toYaml . | indent 8 }}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}

0 comments on commit a760d93

Please sign in to comment.