-
Notifications
You must be signed in to change notification settings - Fork 65
/
karpenter-values-template.yaml
45 lines (43 loc) · 1.38 KB
/
karpenter-values-template.yaml
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
replicas: 1 # for better debugging experience
controller:
env:
- name: LEADER_ELECT # disable leader election for better debugging / troubleshooting experience
value: "false"
# disable HTTP/2 to reduce ARM throttling on large-scale tests;
# with this in place write (and read) QPS can be increased too
#- name: GODEBUG
# value: http2client=0
# options
- name: CLUSTER_NAME
value: ${CLUSTER_NAME}
- name: CLUSTER_ENDPOINT
value: ${CLUSTER_ENDPOINT}
- name: KUBELET_BOOTSTRAP_TOKEN
value: ${BOOTSTRAP_TOKEN}
- name: SSH_PUBLIC_KEY
value: "${SSH_PUBLIC_KEY}"
- name: NETWORK_PLUGIN
value: ${NETWORK_PLUGIN}
- name: NETWORK_PLUGIN_MODE
value: ${NETWORK_PLUGIN_MODE}
- name: NETWORK_POLICY
value: ${NETWORK_POLICY}
- name: VNET_SUBNET_ID
value: ${VNET_SUBNET_ID}
- name: NODE_IDENTITIES
value: ${NODE_IDENTITIES}
# Azure client settings
- name: ARM_SUBSCRIPTION_ID
value: ${AZURE_SUBSCRIPTION_ID}
- name: LOCATION
value: ${AZURE_LOCATION}
- name: KUBELET_IDENTITY_CLIENT_ID
value: ""
- name: AZURE_NODE_RESOURCE_GROUP
value: ${AZURE_RESOURCE_GROUP_MC}
serviceAccount:
name: ${KARPENTER_SERVICE_ACCOUNT_NAME}
annotations:
azure.workload.identity/client-id: ${KARPENTER_USER_ASSIGNED_CLIENT_ID}
podLabels:
azure.workload.identity/use: "true"