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

defaults: Move Version and HelmRepository from const to var #2439

Closed
wants to merge 1 commit into from
Closed
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
12 changes: 6 additions & 6 deletions defaults/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ import (
)

const (
// renovate: datasource=github-releases depName=cilium/cilium
Version = "v1.15.2"

CiliumPodSelector = "app.kubernetes.io/part-of=cilium"

AgentContainerName = "cilium-agent"
Expand Down Expand Up @@ -99,9 +96,6 @@ const (

CiliumNoScheduleLabel = "cilium.io/no-schedule"

// HelmRepository specifies Helm repository to download Cilium charts from.
HelmRepository = "https://helm.cilium.io"

// ClustermeshMaxConnectedClusters is the default number of the maximum
// number of clusters that should be allowed to connect to the Clustermesh.
ClustermeshMaxConnectedClusters = 255
Expand All @@ -111,6 +105,12 @@ const (
)

var (
// renovate: datasource=github-releases depName=cilium/cilium
Version = "v1.15.2"

// HelmRepository specifies Helm repository to download Cilium charts from.
HelmRepository = "https://helm.cilium.io"

// CiliumScheduleAffinity is the node affinity to prevent Cilium from being schedule on
// nodes labeled with CiliumNoScheduleLabel.
CiliumScheduleAffinity = []string{
Expand Down
Loading