mirror of https://github.com/easzlab/kubeasz.git
add cilium hubble
parent
3258022773
commit
512e11568b
|
@ -134,6 +134,7 @@ calico_ver_main: "{{ calico_ver.split('.')[0] }}.{{ calico_ver.split('.')[1] }}"
|
||||||
# [cilium]镜像版本
|
# [cilium]镜像版本
|
||||||
cilium_ver: "__cilium__"
|
cilium_ver: "__cilium__"
|
||||||
cilium_connectivity_check: "true"
|
cilium_connectivity_check: "true"
|
||||||
|
cilium_hubble_enabled: "true"
|
||||||
|
|
||||||
# ------------------------------------------- kube-ovn
|
# ------------------------------------------- kube-ovn
|
||||||
# [kube-ovn]选择 OVN DB and OVN Control Plane 节点,默认为第一个master节点
|
# [kube-ovn]选择 OVN DB and OVN Control Plane 节点,默认为第一个master节点
|
||||||
|
|
2
ezdown
2
ezdown
|
@ -31,7 +31,7 @@ dashboardMetricsScraperVer=v1.0.8
|
||||||
metricsVer=v0.5.2
|
metricsVer=v0.5.2
|
||||||
pauseVer=3.6
|
pauseVer=3.6
|
||||||
nfsProvisionerVer=v4.0.2
|
nfsProvisionerVer=v4.0.2
|
||||||
ciliumVer=1.11.5
|
ciliumVer=1.11.6
|
||||||
export kubeRouterVer=v0.3.1
|
export kubeRouterVer=v0.3.1
|
||||||
export kubeOvnVer=v1.5.3
|
export kubeOvnVer=v1.5.3
|
||||||
export promChartVer=35.5.1
|
export promChartVer=35.5.1
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -23,8 +23,22 @@ containerRuntime:
|
||||||
integration: containerd
|
integration: containerd
|
||||||
socketPath: unix:///run/containerd/containerd.sock
|
socketPath: unix:///run/containerd/containerd.sock
|
||||||
|
|
||||||
|
{% if cilium_hubble_enabled %}
|
||||||
hubble:
|
hubble:
|
||||||
enabled: false
|
enabled: true
|
||||||
|
metrics:
|
||||||
|
enabled:
|
||||||
|
- dns
|
||||||
|
- drop
|
||||||
|
- tcp
|
||||||
|
- flow
|
||||||
|
- icmp
|
||||||
|
- http
|
||||||
|
relay:
|
||||||
|
enabled: true
|
||||||
|
ui:
|
||||||
|
enabled: true
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
identityAllocationMode: "crd"
|
identityAllocationMode: "crd"
|
||||||
|
|
||||||
|
|
|
@ -32,4 +32,4 @@
|
||||||
when: '"nfs-client-provisioner" not in pod_info.stdout and nfs_provisioner_install == "yes"'
|
when: '"nfs-client-provisioner" not in pod_info.stdout and nfs_provisioner_install == "yes"'
|
||||||
|
|
||||||
- import_tasks: cilium_connectivity_check.yml
|
- import_tasks: cilium_connectivity_check.yml
|
||||||
when: 'cilium_connectivity_check|bool'
|
when: 'CLUSTER_NETWORK == "cilium" and cilium_connectivity_check|bool'
|
||||||
|
|
Loading…
Reference in New Issue