Last active
August 24, 2021 18:04
-
-
Save Ulexus/d55cc39c519236717baaac99b051fe57 to your computer and use it in GitHub Desktop.
azure-cloud-manager.yaml
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
apiVersion: v1 | |
kind: ServiceAccount | |
metadata: | |
name: cloud-controller-manager | |
namespace: kube-system | |
--- | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: ClusterRole | |
metadata: | |
name: system:cloud-controller-manager | |
annotations: | |
rbac.authorization.kubernetes.io/autoupdate: "true" | |
labels: | |
k8s-app: cloud-controller-manager | |
rules: | |
- apiGroups: | |
- "" | |
resources: | |
- events | |
verbs: | |
- create | |
- patch | |
- update | |
- apiGroups: | |
- "" | |
resources: | |
- nodes | |
verbs: | |
- "*" | |
- apiGroups: | |
- "" | |
resources: | |
- nodes/status | |
verbs: | |
- patch | |
- apiGroups: | |
- "" | |
resources: | |
- services | |
verbs: | |
- list | |
- patch | |
- update | |
- watch | |
- apiGroups: | |
- "" | |
resources: | |
- services/status | |
verbs: | |
- list | |
- patch | |
- update | |
- watch | |
- apiGroups: | |
- "" | |
resources: | |
- serviceaccounts | |
verbs: | |
- create | |
- get | |
- list | |
- watch | |
- update | |
- apiGroups: | |
- "" | |
resources: | |
- persistentvolumes | |
verbs: | |
- get | |
- list | |
- update | |
- watch | |
- apiGroups: | |
- "" | |
resources: | |
- endpoints | |
verbs: | |
- create | |
- get | |
- list | |
- watch | |
- update | |
- apiGroups: | |
- "" | |
resources: | |
- secrets | |
verbs: | |
- get | |
- list | |
- watch | |
- apiGroups: | |
- coordination.k8s.io | |
resources: | |
- leases | |
verbs: | |
- get | |
- create | |
- update | |
--- | |
kind: ClusterRoleBinding | |
apiVersion: rbac.authorization.k8s.io/v1 | |
metadata: | |
name: system:cloud-controller-manager | |
roleRef: | |
apiGroup: rbac.authorization.k8s.io | |
kind: ClusterRole | |
name: system:cloud-controller-manager | |
subjects: | |
- kind: ServiceAccount | |
name: cloud-controller-manager | |
namespace: kube-system | |
- kind: User | |
name: cloud-controller-manager | |
--- | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: RoleBinding | |
metadata: | |
name: system:cloud-controller-manager:extension-apiserver-authentication-reader | |
namespace: kube-system | |
roleRef: | |
apiGroup: rbac.authorization.k8s.io | |
kind: Role | |
name: extension-apiserver-authentication-reader | |
subjects: | |
- kind: ServiceAccount | |
name: cloud-controller-manager | |
namespace: kube-system | |
- apiGroup: "" | |
kind: User | |
name: cloud-controller-manager | |
--- | |
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: cloud-controller-manager | |
namespace: kube-system | |
labels: | |
tier: control-plane | |
component: cloud-controller-manager | |
spec: | |
priorityClassName: system-node-critical | |
hostNetwork: true | |
serviceAccountName: cloud-controller-manager | |
tolerations: | |
- key: node-role.kubernetes.io/master | |
effect: NoSchedule | |
containers: | |
- name: cloud-controller-manager | |
image: mcr.microsoft.com/oss/kubernetes/azure-cloud-controller-manager:v1.0.1 | |
imagePullPolicy: IfNotPresent | |
command: ["cloud-controller-manager"] | |
args: | |
- "--allocate-node-cidrs=true" | |
- "--cloud-config=/var/lib/kubelet/azure/azure.json" | |
- "--cloud-provider=azure" | |
- "--cluster-cidr=10.244.0.0/16" | |
- "--cluster-name=k8s" | |
- "--controllers=*,-cloud-node" # disable cloud-node controller | |
- "--configure-cloud-routes=true" # "false" for Azure CNI and "true" for other network plugins | |
- "--leader-elect=true" | |
- "--route-reconciliation-period=10s" | |
- "--v=2" | |
- "--port=10267" | |
resources: | |
requests: | |
cpu: 100m | |
memory: 128Mi | |
limits: | |
cpu: "4" | |
memory: 2Gi | |
livenessProbe: | |
httpGet: | |
path: /healthz | |
port: 10267 | |
initialDelaySeconds: 20 | |
periodSeconds: 10 | |
timeoutSeconds: 5 | |
volumeMounts: | |
- name: etc-kubernetes | |
mountPath: /etc/kubernetes | |
- name: var-azure | |
mountPath: /var/lib/kubelet/azure | |
- name: etc-ssl | |
mountPath: /etc/ssl | |
readOnly: true | |
- name: msi | |
mountPath: /var/lib/waagent/ManagedIdentity-Settings | |
readOnly: true | |
volumes: | |
- name: etc-kubernetes | |
hostPath: | |
path: /etc/kubernetes | |
- name: var-azure | |
hostPath: | |
path: /var/lib/kubelet/azure | |
- name: etc-ssl | |
hostPath: | |
path: /etc/ssl | |
- name: msi | |
hostPath: | |
path: /var/lib/waagent/ManagedIdentity-Settings |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment