Skip to content
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
6 changes: 3 additions & 3 deletions addons/observability/grafana-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ agent:
// expects service "aps" and the workspace's region.
prometheus.remote_write "amp" {
endpoint {
url = sys.env("AMP_REMOTE_WRITE_URL")
url = env("AMP_REMOTE_WRITE_URL")
sigv4 {
region = sys.env("AWS_REGION")
region = env("AWS_REGION")
}
}
external_labels = {
cluster = sys.env("CLUSTER_NAME"),
cluster = env("CLUSTER_NAME"),
}
}

Expand Down
8 changes: 5 additions & 3 deletions addons/operations/velero/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,13 @@ tolerations:
- key: CriticalAddonsOnly
operator: Exists

# Override kubectl image for helm hooks (bitnamilegacy/kubectl:1.35 doesn't exist)
# Override kubectl image for helm hooks. Bitnami migrated public images to
# `bitnamilegacy/`; pin to a real existing tag (latest isn't published on
# the legacy repo).
kubectl:
image:
repository: docker.io/bitnami/kubectl
tag: latest
repository: docker.io/bitnamilegacy/kubectl
tag: 1.33.4-debian-12-r0

# Default backup schedules
schedules:
Expand Down
13 changes: 8 additions & 5 deletions addons/security/kyverno/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,18 @@ features:
webhooksCleanup:
enabled: true

# Override kubectl image for helm hooks (bitnami/kubectl:1.32.3 doesn't exist)
# Override kubectl image for helm hooks. Bitnami migrated public images to
# `bitnamilegacy/` (the `bitnami/kubectl` repo on Docker Hub is no longer
# published). Pin to a real, existing tag — `latest` on the legacy repo
# isn't reliably maintained either.
cleanupJobs:
admissionReports:
image:
registry: docker.io
repository: bitnami/kubectl
tag: latest
repository: bitnamilegacy/kubectl
tag: 1.33.4-debian-12-r0
clusterAdmissionReports:
image:
registry: docker.io
repository: bitnami/kubectl
tag: latest
repository: bitnamilegacy/kubectl
tag: 1.33.4-debian-12-r0
Loading