mirror of https://git.rancher.io/charts
[rancher-aks-operator] forward-port from v2.6 to v2.7
parent
241461cf54
commit
c62cb8c644
Binary file not shown.
|
@ -0,0 +1,20 @@
|
||||||
|
annotations:
|
||||||
|
catalog.cattle.io/auto-install: rancher-aks-operator-crd=match
|
||||||
|
catalog.cattle.io/certified: rancher
|
||||||
|
catalog.cattle.io/hidden: "true"
|
||||||
|
catalog.cattle.io/kube-version: '>= 1.18.0-0 < 1.25.0-0'
|
||||||
|
catalog.cattle.io/namespace: cattle-system
|
||||||
|
catalog.cattle.io/os: linux
|
||||||
|
catalog.cattle.io/permits-os: linux,windows
|
||||||
|
catalog.cattle.io/provides-gvr: aksclusterconfigs.aks.cattle.io/v1
|
||||||
|
catalog.cattle.io/rancher-version: '>= 2.6.0-0 < 2.7.0-0'
|
||||||
|
catalog.cattle.io/release-name: rancher-aks-operator
|
||||||
|
catalog.cattle.io/scope: management
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: 1.0.9
|
||||||
|
description: A Helm chart for provisioning AKS clusters
|
||||||
|
home: https://github.com/rancher/aks-operator
|
||||||
|
name: rancher-aks-operator
|
||||||
|
sources:
|
||||||
|
- https://github.com/rancher/aks-operator
|
||||||
|
version: 100.0.7+up1.0.9
|
|
@ -0,0 +1,4 @@
|
||||||
|
You have deployed the Rancher AKS operator
|
||||||
|
Version: {{ .Chart.AppVersion }}
|
||||||
|
Description: This operator provisions AKS clusters
|
||||||
|
from AKSClusterConfig CRs.
|
|
@ -0,0 +1,25 @@
|
||||||
|
{{/* vim: set filetype=mustache: */}}
|
||||||
|
|
||||||
|
{{- define "system_default_registry" -}}
|
||||||
|
{{- if .Values.global.cattle.systemDefaultRegistry -}}
|
||||||
|
{{- printf "%s/" .Values.global.cattle.systemDefaultRegistry -}}
|
||||||
|
{{- else -}}
|
||||||
|
{{- "" -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Windows cluster will add default taint for linux nodes,
|
||||||
|
add below linux tolerations to workloads could be scheduled to those linux nodes
|
||||||
|
*/}}
|
||||||
|
{{- define "linux-node-tolerations" -}}
|
||||||
|
- key: "cattle.io/os"
|
||||||
|
value: "linux"
|
||||||
|
effect: "NoSchedule"
|
||||||
|
operator: "Equal"
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "linux-node-selector" -}}
|
||||||
|
kubernetes.io/os: linux
|
||||||
|
{{- end -}}
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
kind: ClusterRole
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
metadata:
|
||||||
|
name: aks-operator
|
||||||
|
namespace: cattle-system
|
||||||
|
rules:
|
||||||
|
- apiGroups: ['']
|
||||||
|
resources: ['secrets']
|
||||||
|
verbs: ['get', 'list', 'create', 'watch', 'update']
|
||||||
|
- apiGroups: ['aks.cattle.io']
|
||||||
|
resources: ['aksclusterconfigs']
|
||||||
|
verbs: ['get', 'list', 'update', 'watch']
|
||||||
|
- apiGroups: ['aks.cattle.io']
|
||||||
|
resources: ['aksclusterconfigs/status']
|
||||||
|
verbs: ['update']
|
|
@ -0,0 +1,13 @@
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: ClusterRoleBinding
|
||||||
|
metadata:
|
||||||
|
name: aks-operator
|
||||||
|
namespace: cattle-system
|
||||||
|
roleRef:
|
||||||
|
apiGroup: rbac.authorization.k8s.io
|
||||||
|
kind: ClusterRole
|
||||||
|
name: aks-operator
|
||||||
|
subjects:
|
||||||
|
- kind: ServiceAccount
|
||||||
|
name: aks-operator
|
||||||
|
namespace: cattle-system
|
|
@ -0,0 +1,61 @@
|
||||||
|
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:
|
||||||
|
nodeSelector: {{ include "linux-node-selector" . | nindent 8 }}
|
||||||
|
{{- if .Values.nodeSelector }}
|
||||||
|
{{ toYaml .Values.nodeSelector | indent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
tolerations: {{ include "linux-node-tolerations" . | nindent 8 }}
|
||||||
|
{{- if .Values.tolerations }}
|
||||||
|
{{ toYaml .Values.tolerations | indent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
serviceAccountName: aks-operator
|
||||||
|
{{- if .Values.priorityClassName }}
|
||||||
|
priorityClassName: "{{.Values.priorityClassName}}"
|
||||||
|
{{- end }}
|
||||||
|
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 }}
|
|
@ -0,0 +1,5 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ServiceAccount
|
||||||
|
metadata:
|
||||||
|
namespace: cattle-system
|
||||||
|
name: aks-operator
|
|
@ -0,0 +1,23 @@
|
||||||
|
global:
|
||||||
|
cattle:
|
||||||
|
systemDefaultRegistry: ""
|
||||||
|
|
||||||
|
aksOperator:
|
||||||
|
image:
|
||||||
|
repository: rancher/aks-operator
|
||||||
|
tag: v1.0.9
|
||||||
|
|
||||||
|
httpProxy: ""
|
||||||
|
httpsProxy: ""
|
||||||
|
noProxy: ""
|
||||||
|
additionalTrustedCAs: false
|
||||||
|
|
||||||
|
## Node labels for pod assignment
|
||||||
|
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
|
||||||
|
##
|
||||||
|
nodeSelector: {}
|
||||||
|
## List of node taints to tolerate (requires Kubernetes >= 1.6)
|
||||||
|
tolerations: []
|
||||||
|
|
||||||
|
## PriorityClassName assigned to deployment.
|
||||||
|
priorityClassName: ""
|
24
index.yaml
24
index.yaml
|
@ -3676,6 +3676,30 @@ entries:
|
||||||
urls:
|
urls:
|
||||||
- assets/rancher-aks-operator/rancher-aks-operator-101.0.0+up1.0.7.tgz
|
- assets/rancher-aks-operator/rancher-aks-operator-101.0.0+up1.0.7.tgz
|
||||||
version: 101.0.0+up1.0.7
|
version: 101.0.0+up1.0.7
|
||||||
|
- annotations:
|
||||||
|
catalog.cattle.io/auto-install: rancher-aks-operator-crd=match
|
||||||
|
catalog.cattle.io/certified: rancher
|
||||||
|
catalog.cattle.io/hidden: "true"
|
||||||
|
catalog.cattle.io/kube-version: '>= 1.18.0-0 < 1.25.0-0'
|
||||||
|
catalog.cattle.io/namespace: cattle-system
|
||||||
|
catalog.cattle.io/os: linux
|
||||||
|
catalog.cattle.io/permits-os: linux,windows
|
||||||
|
catalog.cattle.io/provides-gvr: aksclusterconfigs.aks.cattle.io/v1
|
||||||
|
catalog.cattle.io/rancher-version: '>= 2.6.0-0 < 2.7.0-0'
|
||||||
|
catalog.cattle.io/release-name: rancher-aks-operator
|
||||||
|
catalog.cattle.io/scope: management
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: 1.0.9
|
||||||
|
created: "2023-03-22T16:48:54.96221-04:00"
|
||||||
|
description: A Helm chart for provisioning AKS clusters
|
||||||
|
digest: 0d204f2ab2d43e25ab01acd12f18b1ff8350a4dbc5a36a456262606a7d4a049b
|
||||||
|
home: https://github.com/rancher/aks-operator
|
||||||
|
name: rancher-aks-operator
|
||||||
|
sources:
|
||||||
|
- https://github.com/rancher/aks-operator
|
||||||
|
urls:
|
||||||
|
- assets/rancher-aks-operator/rancher-aks-operator-100.0.7+up1.0.9.tgz
|
||||||
|
version: 100.0.7+up1.0.9
|
||||||
- annotations:
|
- annotations:
|
||||||
catalog.cattle.io/auto-install: rancher-aks-operator-crd=match
|
catalog.cattle.io/auto-install: rancher-aks-operator-crd=match
|
||||||
catalog.cattle.io/certified: rancher
|
catalog.cattle.io/certified: rancher
|
||||||
|
|
|
@ -36,6 +36,7 @@ prometheus-federator:
|
||||||
- 0.2.0+up0.2.2
|
- 0.2.0+up0.2.2
|
||||||
rancher-aks-operator:
|
rancher-aks-operator:
|
||||||
- 102.0.0+up1.1.0-rc7
|
- 102.0.0+up1.1.0-rc7
|
||||||
|
- 100.0.7+up1.0.9
|
||||||
rancher-aks-operator-crd:
|
rancher-aks-operator-crd:
|
||||||
- 102.0.0+up1.1.0-rc7
|
- 102.0.0+up1.1.0-rc7
|
||||||
rancher-alerting-drivers:
|
rancher-alerting-drivers:
|
||||||
|
|
Loading…
Reference in New Issue