Skip to content

Commit

Permalink
fix: indentation on TLSOption
Browse files Browse the repository at this point in the history
  • Loading branch information
eddykaya authored Apr 17, 2023
1 parent da553ee commit 2a9879a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions traefik/templates/tlsoption.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ metadata:
spec:
{{- with $config.alpnProtocols }}
alpnProtocols:
{{- toYaml . | nindent 6 }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with $config.cipherSuites }}
cipherSuites:
{{- toYaml . | nindent 6 }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with $config.clientAuth }}
clientAuth:
{{- toYaml . | nindent 6 }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with $config.curvePreferences }}
curvePreferences:
{{- toYaml . | nindent 6 }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- if $config.maxVersion }}
maxVersion: {{ $config.maxVersion }}
Expand Down

0 comments on commit 2a9879a

Please sign in to comment.