mirror of https://git.rancher.io/charts
51 lines
1.7 KiB
YAML
51 lines
1.7 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: aks-config-operator
|
|
namespace: cattle-system
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
ke.cattle.io/operator: aks
|
|
template:
|
|
metadata:
|
|
labels:
|
|
ke.cattle.io/operator: aks
|
|
spec:
|
|
serviceAccountName: aks-operator
|
|
securityContext:
|
|
fsGroup: 1007
|
|
runAsUser: 1007
|
|
containers:
|
|
- name: aks-operator
|
|
image: {{ template "system_default_registry" . }}{{ .Values.aksOperator.image.repository }}:{{ .Values.aksOperator.image.tag }}
|
|
imagePullPolicy: IfNotPresent
|
|
env:
|
|
- name: HTTP_PROXY
|
|
value: {{ .Values.httpProxy }}
|
|
- name: HTTPS_PROXY
|
|
value: {{ .Values.httpsProxy }}
|
|
- name: NO_PROXY
|
|
value: {{ .Values.noProxy }}
|
|
{{- if .Values.additionalTrustedCAs }}
|
|
# aks-operator mounts the additional CAs in two places:
|
|
volumeMounts:
|
|
# This directory is owned by the aks-operator user so c_rehash works here.
|
|
- mountPath: /etc/rancher/ssl/ca-additional.pem
|
|
name: tls-ca-additional-volume
|
|
subPath: ca-additional.pem
|
|
readOnly: true
|
|
# This directory is root-owned so c_rehash doesn't work here,
|
|
# but the cert is here in case update-ca-certificates is called in the future or by the OS.
|
|
- mountPath: /etc/pki/trust/anchors/ca-additional.pem
|
|
name: tls-ca-additional-volume
|
|
subPath: ca-additional.pem
|
|
readOnly: true
|
|
volumes:
|
|
- name: tls-ca-additional-volume
|
|
secret:
|
|
defaultMode: 0400
|
|
secretName: tls-ca-additional
|
|
{{- end }}
|