mirror of https://git.rancher.io/charts
12 lines
213 B
YAML
12 lines
213 B
YAML
|
{{- $auth := .Values.auth | default dict }}
|
||
|
{{- if $auth.clientCA }}
|
||
|
apiVersion: v1
|
||
|
data:
|
||
|
ca.crt: {{ $auth.clientCA }}
|
||
|
kind: Secret
|
||
|
metadata:
|
||
|
name: client-ca
|
||
|
namespace: cattle-system
|
||
|
type: Opaque
|
||
|
{{- end }}
|