forked from kubernetes-sigs/cloud-provider-azure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcloud-controller-manager.yaml
More file actions
46 lines (46 loc) · 1.29 KB
/
cloud-controller-manager.yaml
File metadata and controls
46 lines (46 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
apiVersion: v1
kind: Pod
metadata:
name: azure-cloud-controller-manager
namespace: kube-system
labels:
tier: control-plane
component: azure-cloud-controller-manager
spec:
hostNetwork: true
containers:
- name: azure-cloud-controller-manager
image: mcr.microsoft.com/k8s/core/azure-cloud-controller-manager:v0.1.0
imagePullPolicy: IfNotPresent
command:
- "cloud-controller-manager"
args:
- "--allocate-node-cidrs=true"
- "--cloud-config=/etc/kubernetes/azure.json"
- "--cloud-provider=azure"
- "--cluster-cidr=10.244.0.0/16"
- "--cluster-name=kubernetes"
- "--configure-cloud-routes=true"
- "--kubeconfig=/etc/kubernetes/kubeconfig"
- "--leader-elect=true"
- "--route-reconciliation-period=10s"
- "--v=2"
volumeMounts:
- name: etc-kubernetes
mountPath: /etc/kubernetes
- 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: etc-ssl
hostPath:
path: /etc/ssl
- name: msi
hostPath:
path: /var/lib/waagent/ManagedIdentity-Settings