Skip to content

Commit 8f1c626

Browse files
authored
Merge pull request #316 from jbiers/k8s-v1.34
[main] Support k8s v1.34
2 parents 2e44d4c + d5cc518 commit 8f1c626

File tree

9 files changed

+304
-320
lines changed

9 files changed

+304
-320
lines changed

.github/workflows/e2e/package/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN make -C /helm
66
FROM registry.suse.com/bci/golang:1.24
77

88
ARG ARCH=amd64
9-
ENV KUBECTL_VERSION=v1.32.0
9+
ENV KUBECTL_VERSION=v1.33.0
1010

1111
# Install dependencies
1212
RUN zypper -n install awk git docker curl wget nodejs sudo

.github/workflows/integration.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
- x64
3434
- arm64
3535
K3S_VERSION :
36-
- v1.31.9-k3s1
37-
- v1.33.1-k3s1
36+
- v1.32.9-k3s1
37+
- v1.34.1-k3s1
3838
name : integration-test
3939
runs-on: ${{ github.repository == 'rancher/prometheus-federator' && format('runs-on,image=ubuntu22-full-{1},runner=4cpu-linux-{1},run-id={0}', github.run_id, matrix.arch) || 'ubuntu-latest' }}
4040
steps:

build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
rancherProjectMonitoringVersion: 0.6.6
1+
rancherProjectMonitoringVersion: 0.6.7
22
rancherMonitoringVersion : latest
3-
k3sTestingMaxVersion: v1.33.1+k3s1
4-
k3sTestingMinVersion: v1.31.9+k3s1
5-
kuberlrVersion: v5
3+
k3sTestingMaxVersion: v1.34.1+k3s1
4+
k3sTestingMinVersion: v1.32.9+k3s1
5+
kuberlrVersion: v6
66

77
# Dev use only
88
# devChartsSource: https://github.com/{Dev}/ob-team-charts

charts/prometheus-federator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ helmProjectOperator:
210210
cleanup:
211211
image:
212212
repository: rancher/kuberlr-kubectl
213-
tag: v5.0.0
213+
tag: v6.0.0
214214
pullPolicy: IfNotPresent
215215

216216
## Define which Nodes the Pods are scheduled on.

go.mod

Lines changed: 50 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -13,105 +13,104 @@ require (
1313
github.com/novln/docker-parser v1.0.0
1414
github.com/onsi/ginkgo/v2 v2.22.2
1515
github.com/onsi/gomega v1.36.2
16-
github.com/rancher/lasso v0.0.0-20250109193533-00757eec2dbd
17-
github.com/rancher/wrangler/v3 v3.2.0-rc.2
16+
github.com/rancher/lasso v0.2.5
17+
github.com/rancher/wrangler/v3 v3.3.1
1818
github.com/samber/lo v1.47.0
1919
github.com/sirupsen/logrus v1.9.3
20-
github.com/spf13/cobra v1.8.1
21-
github.com/spf13/viper v1.10.0
22-
github.com/stretchr/testify v1.10.0
23-
go.uber.org/mock v0.4.0
24-
golang.org/x/mod v0.22.0
25-
golang.org/x/text v0.23.0
20+
github.com/spf13/cobra v1.10.1
21+
github.com/spf13/viper v1.21.0
22+
github.com/stretchr/testify v1.11.1
23+
go.uber.org/mock v0.6.0
24+
golang.org/x/mod v0.28.0
25+
golang.org/x/text v0.29.0
2626
gopkg.in/yaml.v2 v2.4.0
2727
gopkg.in/yaml.v3 v3.0.1
28-
helm.sh/helm/v3 v3.15.3
29-
k8s.io/api v0.33.1
30-
k8s.io/apiextensions-apiserver v0.33.1
31-
k8s.io/apimachinery v0.33.1
32-
k8s.io/client-go v0.33.1
28+
helm.sh/helm/v3 v3.19.0
29+
k8s.io/api v0.34.1
30+
k8s.io/apiextensions-apiserver v0.34.1
31+
k8s.io/apimachinery v0.34.1
32+
k8s.io/client-go v0.34.1
3333
k8s.io/klog v1.0.0
34-
sigs.k8s.io/controller-runtime v0.21.0
34+
sigs.k8s.io/controller-runtime v0.22.1
3535
)
3636

3737
require (
3838
emperror.dev/errors v0.8.1 // indirect
39-
github.com/Masterminds/semver/v3 v3.2.1 // indirect
39+
github.com/Masterminds/semver/v3 v3.4.0 // indirect
4040
github.com/Masterminds/squirrel v1.5.4 // indirect
4141
github.com/beorn7/perks v1.0.1 // indirect
4242
github.com/cespare/xxhash/v2 v2.3.0 // indirect
43-
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
43+
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
4444
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
45-
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
46-
github.com/evanphx/json-patch v5.9.0+incompatible // indirect
45+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
46+
github.com/evanphx/json-patch v5.9.11+incompatible // indirect
4747
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
48-
github.com/fsnotify/fsnotify v1.7.0 // indirect
49-
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
48+
github.com/fsnotify/fsnotify v1.9.0 // indirect
49+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
5050
github.com/ghodss/yaml v1.0.0 // indirect
5151
github.com/go-gorp/gorp/v3 v3.1.0 // indirect
5252
github.com/go-logr/logr v1.4.2 // indirect
5353
github.com/go-openapi/jsonpointer v0.21.0 // indirect
5454
github.com/go-openapi/jsonreference v0.21.0 // indirect
5555
github.com/go-openapi/swag v0.23.0 // indirect
5656
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
57+
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
5758
github.com/gogo/protobuf v1.3.2 // indirect
58-
github.com/google/gnostic-models v0.6.9 // indirect
59+
github.com/google/gnostic-models v0.7.0 // indirect
5960
github.com/google/go-cmp v0.7.0 // indirect
6061
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
6162
github.com/hashicorp/errwrap v1.1.0 // indirect
62-
github.com/hashicorp/hcl v1.0.0 // indirect
6363
github.com/inconshreveable/mousetrap v1.1.0 // indirect
64-
github.com/jmoiron/sqlx v1.3.5 // indirect
64+
github.com/jmoiron/sqlx v1.4.0 // indirect
6565
github.com/josharian/intern v1.0.0 // indirect
6666
github.com/json-iterator/go v1.1.12 // indirect
6767
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
6868
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
6969
github.com/lib/pq v1.10.9 // indirect
70-
github.com/magiconair/properties v1.8.5 // indirect
7170
github.com/mailru/easyjson v0.9.0 // indirect
7271
github.com/mitchellh/copystructure v1.2.0 // indirect
73-
github.com/mitchellh/mapstructure v1.4.3 // indirect
7472
github.com/mitchellh/reflectwalk v1.0.2 // indirect
7573
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
76-
github.com/modern-go/reflect2 v1.0.2 // indirect
74+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
7775
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
78-
github.com/pelletier/go-toml v1.9.4 // indirect
76+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
7977
github.com/pkg/errors v0.9.1 // indirect
8078
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
8179
github.com/prometheus/client_golang v1.22.0 // indirect
8280
github.com/prometheus/client_model v0.6.1 // indirect
8381
github.com/prometheus/common v0.62.0 // indirect
8482
github.com/prometheus/procfs v0.15.1 // indirect
85-
github.com/rubenv/sql-migrate v1.5.2 // indirect
86-
github.com/spf13/afero v1.6.0 // indirect
87-
github.com/spf13/cast v1.5.0 // indirect
88-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
89-
github.com/spf13/pflag v1.0.5 // indirect
90-
github.com/subosito/gotenv v1.2.0 // indirect
83+
github.com/rubenv/sql-migrate v1.8.0 // indirect
84+
github.com/sagikazarmark/locafero v0.11.0 // indirect
85+
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2 // indirect
86+
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect
87+
github.com/spf13/afero v1.15.0 // indirect
88+
github.com/spf13/cast v1.10.0 // indirect
89+
github.com/spf13/pflag v1.0.10 // indirect
90+
github.com/subosito/gotenv v1.6.0 // indirect
9191
github.com/x448/float16 v0.8.4 // indirect
92-
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
93-
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
94-
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
9592
go.uber.org/multierr v1.11.0 // indirect
96-
golang.org/x/net v0.38.0 // indirect
97-
golang.org/x/oauth2 v0.27.0 // indirect
98-
golang.org/x/sync v0.12.0 // indirect
99-
golang.org/x/sys v0.31.0 // indirect
100-
golang.org/x/term v0.30.0 // indirect
101-
golang.org/x/time v0.9.0 // indirect
102-
golang.org/x/tools v0.28.0 // indirect
93+
go.yaml.in/yaml/v2 v2.4.2 // indirect
94+
go.yaml.in/yaml/v3 v3.0.4 // indirect
95+
golang.org/x/net v0.44.0 // indirect
96+
golang.org/x/oauth2 v0.30.0 // indirect
97+
golang.org/x/sync v0.17.0 // indirect
98+
golang.org/x/sys v0.36.0 // indirect
99+
golang.org/x/term v0.35.0 // indirect
100+
golang.org/x/time v0.12.0 // indirect
101+
golang.org/x/tools v0.37.0 // indirect
102+
golang.org/x/tools/go/expect v0.1.1-deprecated // indirect
103103
google.golang.org/protobuf v1.36.5 // indirect
104104
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
105105
gopkg.in/inf.v0 v0.9.1 // indirect
106-
gopkg.in/ini.v1 v1.66.2 // indirect
107-
k8s.io/code-generator v0.33.1 // indirect
108-
k8s.io/gengo v0.0.0-20240911193312-2b36238f13e9 // indirect
109-
k8s.io/gengo/v2 v2.0.0-20250207200755-1244d31929d7 // indirect
106+
k8s.io/code-generator v0.34.1 // indirect
107+
k8s.io/gengo v0.0.0-20250130153323-76c5745d3511 // indirect
108+
k8s.io/gengo/v2 v2.0.0-20250604051438-85fd79dbfd9f // indirect
110109
k8s.io/klog/v2 v2.130.1 // indirect
111-
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
112-
k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect
110+
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b // indirect
111+
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397 // indirect
113112
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
114113
sigs.k8s.io/randfill v1.0.0 // indirect
115-
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
116-
sigs.k8s.io/yaml v1.4.0 // indirect
114+
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
115+
sigs.k8s.io/yaml v1.6.0 // indirect
117116
)

0 commit comments

Comments
 (0)