Skip to content

Commit c0acf9d

Browse files
committed
charts/redpanda: Pin console v3.0.0 version
1 parent 4ece701 commit c0acf9d

File tree

8 files changed

+1282
-1283
lines changed

8 files changed

+1282
-1283
lines changed

charts/redpanda/Chart.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies:
2-
- name: console-unstable
3-
repository: oci://registry-1.docker.io/redpandadata
4-
version: v0.0-k8s0-be94e29d-helm-chart
5-
digest: sha256:e0885a68fcbfd2b31aa94d376f1ab827f0dd3a1b4e5cc8b3c677218924ff11cf
6-
generated: "2025-03-28T12:50:02.993977-04:00"
2+
- name: console
3+
repository: https://charts.redpanda.com
4+
version: 3.0.0
5+
digest: sha256:48a8eb68dc63fc908ee6de55505e13de824a58d2bcef7e03749c1d1978680278
6+
generated: "2025-04-08T14:00:17.889873+02:00"

charts/redpanda/Chart.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,11 @@ appVersion: v25.1.1
3535
kubeVersion: ">= 1.25.0-0"
3636

3737
dependencies:
38-
- name: console-unstable
38+
- name: console
3939
condition: console.enabled
40-
version: v0.0-k8s0-be94e29d-helm-chart
41-
repository: oci://registry-1.docker.io/redpandadata
40+
version: ">=3.0.0-0"
41+
repository: https://charts.redpanda.com
4242
alias: console
43-
# TODO: Move back to official releases once console chart v3 has been officially released
44-
# repository: https://charts.redpanda.com
45-
# version: ">=3.0.0-0"
4643

4744
icon: https://images.ctfassets.net/paqvtpyf8rwu/3cYHw5UzhXCbKuR24GDFGO/73fb682e6157d11c10d5b2b5da1d5af0/skate-stand-panda.svg
4845
sources:

charts/redpanda/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Kubernetes: `>= 1.25.0-0`
2222

2323
| Repository | Name | Version |
2424
|------------|------|---------|
25-
| oci://registry-1.docker.io/redpandadata | console(console-unstable) | v0.0-k8s0-be94e29d-helm-chart |
25+
| https://charts.redpanda.com | console(console) | >=3.0.0-0 |
2626

2727
## Settings
2828

charts/redpanda/chart_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,9 @@ func TestChartLock(t *testing.T) {
8080
// describes length to make matching easier.
8181
return rev[:8]
8282
}
83-
return req.Mod.Version
83+
// Remove the `v` from the go dependency e.g. v3.0.0 will become 3.0.0
84+
// That will match what the Chart.lock reports
85+
return req.Mod.Version[1:]
8486
}
8587

8688
consoleModule := goMod.Require[slices.IndexFunc(goMod.Require, func(req *modfile.Require) bool {

charts/redpanda/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.76.2
1111
github.com/quasilyte/go-ruleguard/dsl v0.3.22
1212
github.com/redpanda-data/common-go/rpadmin v0.1.13-0.20250109154132-12ac78a58f95
13-
github.com/redpanda-data/redpanda-operator/charts/console/v3 v3.0.0-20250321204757-be94e29d32a7
13+
github.com/redpanda-data/redpanda-operator/charts/console/v3 v3.0.0
1414
github.com/redpanda-data/redpanda-operator/gotohelm v0.0.0-20250327164623-c3883a149a17
1515
github.com/redpanda-data/redpanda-operator/pkg v0.0.0-20250124085449-058118a82f50
1616
github.com/redpanda-data/redpanda/src/go/rpk v0.0.0-20240827155712-244863ea0ae8

charts/redpanda/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,8 +434,8 @@ github.com/redpanda-data/common-go/net v0.1.0 h1:JnJioRJuL961r1QXiJQ1tW9+yEaJfu8
434434
github.com/redpanda-data/common-go/net v0.1.0/go.mod h1:iOdNkjxM7a1T8F3cYHTaKIPFCHzzp/ia6TN+Z+7Tt5w=
435435
github.com/redpanda-data/common-go/rpadmin v0.1.13-0.20250109154132-12ac78a58f95 h1:TmbXxlIHlKEF2wO5z82sQz98Su/WSgs+bC0k8s26Lsg=
436436
github.com/redpanda-data/common-go/rpadmin v0.1.13-0.20250109154132-12ac78a58f95/go.mod h1:zgE/M2UihQZRdivHfbm4x9Rb3Vm/crO5kiX3GQrxhG4=
437-
github.com/redpanda-data/redpanda-operator/charts/console/v3 v3.0.0-20250321204757-be94e29d32a7 h1:CCmFZLsc8oZBQ3w3dnN9dSJs72fMtrE7CUBmWOHvMcs=
438-
github.com/redpanda-data/redpanda-operator/charts/console/v3 v3.0.0-20250321204757-be94e29d32a7/go.mod h1:rM1G0g5+l5GykYQId/2C09Gfo5IUMIznW7uUjuzicP4=
437+
github.com/redpanda-data/redpanda-operator/charts/console/v3 v3.0.0 h1:S7fmi5TAlj+5GBU8UKhELscg5BpzQBWQynuSDxujPKQ=
438+
github.com/redpanda-data/redpanda-operator/charts/console/v3 v3.0.0/go.mod h1:AQWidq2TAeQZbwbrGc/1JcdxUK9aAd5B08SVePxRy3I=
439439
github.com/redpanda-data/redpanda-operator/gotohelm v0.0.0-20250327164623-c3883a149a17 h1:aARsVhc9XYhrC/aeJpDHnel8QicHbo6BtZzbhqe33UY=
440440
github.com/redpanda-data/redpanda-operator/gotohelm v0.0.0-20250327164623-c3883a149a17/go.mod h1:QkZMtADhtFgS5Bixk6N931yazp9mBtQ7VAJ5gWPrsgg=
441441
github.com/redpanda-data/redpanda-operator/pkg v0.0.0-20250124085449-058118a82f50 h1:rmgno9TNZCX2c81zJGrv2CZjiPURWevNeQ7Lo8fVszk=

0 commit comments

Comments
 (0)