Skip to content

Commit

Permalink
chore(deps): Updated cilium to v1.15.2 (#484)
Browse files Browse the repository at this point in the history
* chore(deps): Updated cilium to v1.15.2

* fix(molecule): increase timeout for slow CI
  • Loading branch information
timothystewart6 committed Mar 22, 2024
1 parent dc9d571 commit a46d97a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion inventory/sample/group_vars/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ calico_tag: "v3.27.2" # calico version tag
# ensure v4.19.57, v5.1.16, v5.2.0 or more recent kernel
# cilium_iface: "eth0"
cilium_mode: "native" # native when nodes on same subnet or using bgp, else set routed
cilium_tag: "v1.15.1" # cilium version tag
cilium_tag: "v1.15.2" # cilium version tag
cilium_hubble: true # enable hubble observability relay and ui

# if using calico or cilium, you may specify the cluster pod cidr pool
Expand Down
4 changes: 2 additions & 2 deletions roles/k3s_server_post/tasks/calico.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
k3s kubectl wait {{ item.type }}/{{ item.name }}
--namespace='tigera-operator'
--for=condition=Available=True
--timeout=7s
--timeout=30s
register: tigera_result
changed_when: false
until: tigera_result is succeeded
Expand Down Expand Up @@ -87,7 +87,7 @@
--namespace='{{ item.namespace }}'
--for=condition=Available
{% endif %}
--timeout=7s
--timeout=30s
register: cr_result
changed_when: false
until: cr_result is succeeded
Expand Down
2 changes: 1 addition & 1 deletion roles/k3s_server_post/tasks/cilium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@
--namespace=kube-system
--for=condition=Available
{% endif %}
--timeout=7s
--timeout=30s
register: cr_result
changed_when: false
until: cr_result is succeeded
Expand Down

0 comments on commit a46d97a

Please sign in to comment.