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 to 1.11.0 #624

Merged
merged 2 commits into from
Dec 8, 2021
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion defaults/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const (
ConnectivityCheckJSONMockImage = "quay.io/cilium/json-mock:v1.3.0@sha256:2729064827fa9dbfface8d3df424feb6c792a0ba07117b844349635c93c06d2b"

ConfigMapName = "cilium-config"
Version = "v1.10.5"
Version = "v1.11.0"
HubbleUIVersion = "v0.8.3"

TunnelType = "vxlan"
Expand Down
6 changes: 3 additions & 3 deletions internal/cli/cmd/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,15 +133,15 @@ func newCmdUpgrade() *cobra.Command {
cmd := &cobra.Command{
Use: "upgrade",
Short: "Upgrade Cilium in a Kubernetes cluster",
Long: `Upgrade Cilium in a Kubernetes cluster
Long: fmt.Sprintf(`Upgrade Cilium in a Kubernetes cluster

Examples:
# Upgrade Cilium to the latest patch release:
cilium upgrade

# Upgrade Cilium to a specific version
cilium upgrade --version v1.10.5
`,
cilium upgrade --version %s
`, defaults.Version),
RunE: func(cmd *cobra.Command, args []string) error {
installer, err := install.NewK8sInstaller(k8sClient, params)
if err != nil {
Expand Down