Browse Source
Cilium updates (#5438)
* Add resources needed to deploy 1.6.4
* Use cilium v1.6.4
* Change deprecated option name
* Add update crd to clusterrole cilium
* Cilium 1.6.4 -> 1.6.5
* Make monitor-aggregation config configurable as a variable
* Change monitor-aggregation default none->medium
* Cilium 1.6.5 -> 1.6.6
* Update to 1.7.0
* v1.7.0->v1.7.1
pull/5755/head
Fredrik Lönnegren
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
15 additions and
12 deletions
-
roles/download/defaults/main.yml
-
roles/network_plugin/cilium/defaults/main.yml
-
roles/network_plugin/cilium/templates/cilium-config.yml.j2
-
roles/network_plugin/cilium/templates/cilium-cr.yml.j2
|
@ -80,7 +80,7 @@ cni_version: "v0.8.3" |
|
|
weave_version: 2.5.2 |
|
|
weave_version: 2.5.2 |
|
|
pod_infra_version: 3.1 |
|
|
pod_infra_version: 3.1 |
|
|
contiv_version: 1.2.1 |
|
|
contiv_version: 1.2.1 |
|
|
cilium_version: "v1.5.5" |
|
|
|
|
|
|
|
|
cilium_version: "v1.7.1" |
|
|
kube_ovn_version: "v0.6.0" |
|
|
kube_ovn_version: "v0.6.0" |
|
|
kube_router_version: "v0.2.5" |
|
|
kube_router_version: "v0.2.5" |
|
|
multus_version: "v3.2.1" |
|
|
multus_version: "v3.2.1" |
|
|
|
@ -23,6 +23,8 @@ cilium_tunnel_mode: vxlan |
|
|
cilium_enable_prometheus: false |
|
|
cilium_enable_prometheus: false |
|
|
# Enable if you want to make use of hostPort mappings |
|
|
# Enable if you want to make use of hostPort mappings |
|
|
cilium_enable_portmap: false |
|
|
cilium_enable_portmap: false |
|
|
|
|
|
# Monitor aggregation level (none/low/medium/maximum) |
|
|
|
|
|
cilium_monitor_aggregation: medium |
|
|
|
|
|
|
|
|
# If upgrading from Cilium < 1.5, you may want to override some of these options |
|
|
# If upgrading from Cilium < 1.5, you may want to override some of these options |
|
|
# to prevent service disruptions. See also: |
|
|
# to prevent service disruptions. See also: |
|
|
|
@ -61,7 +61,7 @@ data: |
|
|
# If you want cilium monitor to aggregate tracing for packets, set this level |
|
|
# If you want cilium monitor to aggregate tracing for packets, set this level |
|
|
# to "low", "medium", or "maximum". The higher the level, the less packets |
|
|
# to "low", "medium", or "maximum". The higher the level, the less packets |
|
|
# that will be seen in monitor output. |
|
|
# that will be seen in monitor output. |
|
|
monitor-aggregation-level: "none" |
|
|
|
|
|
|
|
|
monitor-aggregation: "{{ cilium_monitor_aggregation }}" |
|
|
|
|
|
|
|
|
# ct-global-max-entries-* specifies the maximum number of connections |
|
|
# ct-global-max-entries-* specifies the maximum number of connections |
|
|
# supported across all endpoints, split by protocol: tcp or other. One pair |
|
|
# supported across all endpoints, split by protocol: tcp or other. One pair |
|
|
|
@ -43,6 +43,10 @@ rules: |
|
|
- ciliumnetworkpolicies/status |
|
|
- ciliumnetworkpolicies/status |
|
|
- ciliumendpoints |
|
|
- ciliumendpoints |
|
|
- ciliumendpoints/status |
|
|
- ciliumendpoints/status |
|
|
|
|
|
- ciliumnodes |
|
|
|
|
|
- ciliumnodes/status |
|
|
|
|
|
- ciliumidentities |
|
|
|
|
|
- ciliumidentities/status |
|
|
verbs: |
|
|
verbs: |
|
|
- '*' |
|
|
- '*' |
|
|
--- |
|
|
--- |
|
@ -66,7 +70,6 @@ rules: |
|
|
- services |
|
|
- services |
|
|
- nodes |
|
|
- nodes |
|
|
- endpoints |
|
|
- endpoints |
|
|
- componentstatuses |
|
|
|
|
|
verbs: |
|
|
verbs: |
|
|
- get |
|
|
- get |
|
|
- list |
|
|
- list |
|
@ -88,18 +91,10 @@ rules: |
|
|
- nodes/status |
|
|
- nodes/status |
|
|
verbs: |
|
|
verbs: |
|
|
- patch |
|
|
- patch |
|
|
- apiGroups: |
|
|
|
|
|
- extensions |
|
|
|
|
|
resources: |
|
|
|
|
|
- ingresses |
|
|
|
|
|
verbs: |
|
|
|
|
|
- create |
|
|
|
|
|
- get |
|
|
|
|
|
- list |
|
|
|
|
|
- watch |
|
|
|
|
|
- apiGroups: |
|
|
- apiGroups: |
|
|
- apiextensions.k8s.io |
|
|
- apiextensions.k8s.io |
|
|
resources: |
|
|
resources: |
|
|
|
|
|
- ingresses |
|
|
- customresourcedefinitions |
|
|
- customresourcedefinitions |
|
|
verbs: |
|
|
verbs: |
|
|
- create |
|
|
- create |
|
@ -112,7 +107,13 @@ rules: |
|
|
resources: |
|
|
resources: |
|
|
- ciliumnetworkpolicies |
|
|
- ciliumnetworkpolicies |
|
|
- ciliumnetworkpolicies/status |
|
|
- ciliumnetworkpolicies/status |
|
|
|
|
|
- ciliumclusterwidenetworkpolicies |
|
|
|
|
|
- ciliumclusterwidenetworkpolicies/status |
|
|
- ciliumendpoints |
|
|
- ciliumendpoints |
|
|
- ciliumendpoints/status |
|
|
- ciliumendpoints/status |
|
|
|
|
|
- ciliumnodes |
|
|
|
|
|
- ciliumnodes/status |
|
|
|
|
|
- ciliumidentities |
|
|
|
|
|
- ciliumidentities/status |
|
|
verbs: |
|
|
verbs: |
|
|
- '*' |
|
|
- '*' |