Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update: Cilium version update #2037

Merged
merged 2 commits into from
May 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/tasks/workload/compatibility.cr
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ def setup_cilium_cluster(cluster_name : String, offline : Bool) : KindManager::C
else
Helm.helm_repo_add("cilium","https://helm.cilium.io/")
chart = "cilium/cilium"
chart_opts.push("--version 1.10.5")
chart_opts.push("--version 1.15.4")
Helm.install("#{cluster_name}-plugin #{chart} #{chart_opts.join(" ")} --namespace kube-system --kubeconfig #{cluster.kubeconfig}")
end

Expand Down Expand Up @@ -633,7 +633,7 @@ task "cni_compatible" do |t, args|
if calico_cnf_passed && cilium_cnf_passed
CNFManager::TestcaseResult.new(CNFManager::ResultStatus::Passed, "CNF compatible with both Calico and Cilium")
else
CNFManager::TestcaseResult.new(CNFManager::ResultStatus::Failed, "CNF not compatible with either Calico or Cillium")
CNFManager::TestcaseResult.new(CNFManager::ResultStatus::Failed, "CNF not compatible with either Calico or Cilium")
end
ensure
kind_manager = KindManager.new
Expand Down
Loading