-
Notifications
You must be signed in to change notification settings - Fork 308
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Caleb Lloyd <[email protected]>
- Loading branch information
Caleb Lloyd
committed
Jul 14, 2023
1 parent
5ce75a5
commit 4369503
Showing
13 changed files
with
466 additions
and
239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,16 @@ | ||
# tls | ||
{{- with .tls }} | ||
{{- if .secretName }} | ||
{{- $dir := trimSuffix "/" .dir }} | ||
cert_file: {{ printf "%s/%s" $dir .cert }} | ||
key_file: {{ printf "%s/%s" $dir .key }} | ||
cert_file: {{ printf "%s/%s" $dir (.cert | default "tls.crt") | quote }} | ||
key_file: {{ printf "%s/%s" $dir (.key | default "tls.key") | quote }} | ||
{{- end }} | ||
{{- end }} | ||
|
||
# tlsCA | ||
{{- with $.Values.tlsCA }} | ||
{{- if and .enabled (or .configMapName .secretName) }} | ||
{{- $dir := trimSuffix "/" .dir }} | ||
ca_file: {{ printf "%s/%s" $dir (.key | default "ca.crt") | quote }} | ||
{{- end }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.