Skip to content

Commit ea3c3af

Browse files
committed
Update Redpanda chart dependencies
1 parent dc814fb commit ea3c3af

29 files changed

+44
-42
lines changed

charts/redpanda/cert_issuers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1919
"k8s.io/utils/ptr"
2020

21-
"github.com/redpanda-data/redpanda-operator/pkg/gotohelm/helmette"
21+
"github.com/redpanda-data/redpanda-operator/gotohelm/helmette"
2222
)
2323

2424
func CertIssuers(dot *helmette.Dot) []*certmanagerv1.Issuer {

charts/redpanda/certs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2020
"k8s.io/utils/ptr"
2121

22-
"github.com/redpanda-data/redpanda-operator/pkg/gotohelm/helmette"
22+
"github.com/redpanda-data/redpanda-operator/gotohelm/helmette"
2323
)
2424

2525
func ClientCerts(dot *helmette.Dot) []*certmanagerv1.Certificate {

charts/redpanda/chart.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ import (
2727

2828
"github.com/redpanda-data/redpanda-operator/charts/connectors"
2929
"github.com/redpanda-data/redpanda-operator/charts/console"
30-
"github.com/redpanda-data/redpanda-operator/pkg/gotohelm"
31-
"github.com/redpanda-data/redpanda-operator/pkg/gotohelm/helmette"
30+
"github.com/redpanda-data/redpanda-operator/gotohelm"
31+
"github.com/redpanda-data/redpanda-operator/gotohelm/helmette"
3232
"github.com/redpanda-data/redpanda-operator/pkg/kube"
3333
)
3434

charts/redpanda/chart_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import (
4040
"github.com/redpanda-data/redpanda-operator/charts/connectors"
4141
"github.com/redpanda-data/redpanda-operator/charts/console"
4242
"github.com/redpanda-data/redpanda-operator/charts/redpanda/v5"
43-
"github.com/redpanda-data/redpanda-operator/pkg/gotohelm/helmette"
43+
"github.com/redpanda-data/redpanda-operator/gotohelm/helmette"
4444
"github.com/redpanda-data/redpanda-operator/pkg/helm"
4545
"github.com/redpanda-data/redpanda-operator/pkg/helm/helmtest"
4646
"github.com/redpanda-data/redpanda-operator/pkg/kube"

charts/redpanda/client/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030
corev1 "k8s.io/api/core/v1"
3131

3232
"github.com/redpanda-data/redpanda-operator/charts/redpanda/v5"
33-
"github.com/redpanda-data/redpanda-operator/pkg/gotohelm/helmette"
33+
"github.com/redpanda-data/redpanda-operator/gotohelm/helmette"
3434
)
3535

3636
var (

charts/redpanda/client/client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"k8s.io/utils/ptr"
1919

2020
"github.com/redpanda-data/redpanda-operator/charts/redpanda/v5"
21-
"github.com/redpanda-data/redpanda-operator/pkg/gotohelm/helmette"
21+
"github.com/redpanda-data/redpanda-operator/gotohelm/helmette"
2222
)
2323

2424
func TestFirstUser(t *testing.T) {

charts/redpanda/client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929
"sigs.k8s.io/yaml"
3030

3131
"github.com/redpanda-data/redpanda-operator/charts/redpanda/v5"
32-
"github.com/redpanda-data/redpanda-operator/pkg/gotohelm/helmette"
32+
"github.com/redpanda-data/redpanda-operator/gotohelm/helmette"
3333
"github.com/redpanda-data/redpanda-operator/pkg/helm"
3434
"github.com/redpanda-data/redpanda-operator/pkg/kube"
3535
)

charts/redpanda/configmap.tpl.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1818
"k8s.io/utils/ptr"
1919

20-
"github.com/redpanda-data/redpanda-operator/pkg/gotohelm/helmette"
20+
"github.com/redpanda-data/redpanda-operator/gotohelm/helmette"
2121
)
2222

2323
func ConfigMaps(dot *helmette.Dot) []*corev1.ConfigMap {

charts/redpanda/connectors.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"k8s.io/utils/ptr"
1818

1919
"github.com/redpanda-data/redpanda-operator/charts/connectors"
20-
"github.com/redpanda-data/redpanda-operator/pkg/gotohelm/helmette"
20+
"github.com/redpanda-data/redpanda-operator/gotohelm/helmette"
2121
"github.com/redpanda-data/redpanda-operator/pkg/kube"
2222
)
2323

charts/redpanda/console.tpl.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818

1919
"github.com/redpanda-data/redpanda-operator/charts/connectors"
2020
"github.com/redpanda-data/redpanda-operator/charts/console"
21-
"github.com/redpanda-data/redpanda-operator/pkg/gotohelm/helmette"
21+
"github.com/redpanda-data/redpanda-operator/gotohelm/helmette"
2222
"github.com/redpanda-data/redpanda-operator/pkg/kube"
2323
)
2424

0 commit comments

Comments
 (0)