-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathkind-config.yaml
38 lines (38 loc) · 1.09 KB
/
kind-config.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
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
kubeadmConfigPatches:
- |
kind: ClusterConfiguration
etcd:
local:
extraArgs:
listen-metrics-urls: http://0.0.0.0:2381
experimental-enable-distributed-tracing: "true"
experimental-distributed-tracing-address: 10.96.0.2:4317
experimental-distributed-tracing-service-name: etcd
scheduler:
extraArgs:
bind-address: 0.0.0.0
controllerManager:
extraArgs:
bind-address: 0.0.0.0
apiServer:
extraArgs:
tracing-config-file: /etc/cluster/tracing-config.yaml
extraVolumes:
- name: cluster
hostPath: /etc/cluster
mountPath: /etc/cluster
readOnly: true
pathType: "DirectoryOrCreate"
extraMounts:
- hostPath: ./cluster
containerPath: /etc/cluster
readOnly: true
- role: worker
- role: worker
- role: worker
featureGates:
APIServerTracing: true