Skip to content

Commit 19fa963

Browse files
chore(deps): bump k8s.io/apiextensions-apiserver from 0.33.4 to 0.34.0 (#915)
* chore(deps): bump k8s.io/apiextensions-apiserver from 0.33.4 to 0.34.0 Bumps [k8s.io/apiextensions-apiserver](https://github.com/kubernetes/apiextensions-apiserver) from 0.33.4 to 0.34.0. - [Release notes](https://github.com/kubernetes/apiextensions-apiserver/releases) - [Commits](kubernetes/apiextensions-apiserver@v0.33.4...v0.34.0) --- updated-dependencies: - dependency-name: k8s.io/apiextensions-apiserver dependency-version: 0.34.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * chore: bump tools Signed-off-by: arkbriar <arkbriar@gmail.com> * Update pre-commit config Signed-off-by: arkbriar <arkbriar@gmail.com> * Use kustomise 4.5.7 Signed-off-by: arkbriar <arkbriar@gmail.com> * Update kind node image Signed-off-by: arkbriar <arkbriar@gmail.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: arkbriar <arkbriar@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: arkbriar <arkbriar@gmail.com>
1 parent 71bc124 commit 19fa963

File tree

12 files changed

+4083
-654
lines changed

12 files changed

+4083
-654
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repos:
99
- spellcheck
1010
always_run: true
1111
stages:
12-
- commit
12+
- pre-commit
1313
- id: shellcheck
1414
name: shellcheck
1515
language: system
@@ -19,7 +19,7 @@ repos:
1919
- shopt -s globstar; shellcheck -x -e SC1091 -s bash test/**/*.sh
2020
always_run: true
2121
stages:
22-
- commit
22+
- pre-commit
2323
- repo: https://github.com/arkbriar/pre-commit-golang
2424
rev: master
2525
hooks:

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,11 +223,11 @@ undeploy: ## Undeploy controller from the K8s cluster specified in ~/.kube/confi
223223
224224
CONTROLLER_GEN = $(shell pwd)/bin/$(OS)/controller-gen
225225
controller-gen: ## Download controller-gen locally if necessary.
226-
$(call go-get-tool,$(CONTROLLER_GEN),sigs.k8s.io/controller-tools/cmd/controller-gen@v0.16.1)
226+
$(call go-get-tool,$(CONTROLLER_GEN),sigs.k8s.io/controller-tools/cmd/controller-gen@v0.19.0)
227227
228228
KUSTOMIZE = $(shell pwd)/bin/$(OS)/kustomize
229229
kustomize: ## Download kustomize locally if necessary.
230-
$(call go-get-tool,$(KUSTOMIZE),sigs.k8s.io/kustomize/kustomize/v4@v4.5.5)
230+
$(call go-get-tool,$(KUSTOMIZE),sigs.k8s.io/kustomize/kustomize/v4@v4.5.7)
231231
232232
ENVTEST = $(shell pwd)/bin/$(OS)/setup-envtest
233233
envtest: ## Download envtest-setup locally if necessary.
@@ -244,7 +244,7 @@ ctrlkit-gen: ## Download ctrlkit locally if necessary.
244244
245245
GOIMPORTS-REVISER = $(shell pwd)/bin/$(OS)/goimports-reviser
246246
goimports-reviser: ## Download goimports-reviser locally if necessary.
247-
$(call go-get-tool,$(GOIMPORTS-REVISER),github.com/incu6us/goimports-reviser/v3@v3.6.0)
247+
$(call go-get-tool,$(GOIMPORTS-REVISER),github.com/incu6us/goimports-reviser/v3@v3.9.1)
248248
249249
GEN_CRD_API_REFERENCE_DOCS = $(shell pwd)/bin/$(OS)/gen-crd-api-reference-docs
250250
gen-crd-api-reference-docs: ## Download gen-crd-api-reference-docs locally if necessary

ci/runner/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM golang:1.24
1+
FROM golang:1.25
22

3-
ARG KIND_VERSION=v0.18.0
3+
ARG KIND_VERSION=v0.30.0
44
ARG SHELLCHECK_VERSION=v0.10.0
55

66
RUN apt-get update && \

config/crd/bases/risingwave.risingwavelabs.com_risingwaves.yaml

Lines changed: 1320 additions & 176 deletions
Large diffs are not rendered by default.

config/crd/bases/risingwave.risingwavelabs.com_risingwavescaleviews.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.16.1
6+
controller-gen.kubebuilder.io/version: v0.19.0
77
name: risingwavescaleviews.risingwave.risingwavelabs.com
88
spec:
99
group: risingwave.risingwavelabs.com

config/rbac/role.yaml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -7,49 +7,47 @@ rules:
77
- apiGroups:
88
- ""
99
resources:
10-
- events
10+
- configmaps
11+
- pods
1112
verbs:
1213
- create
14+
- delete
15+
- get
16+
- list
1317
- patch
18+
- update
19+
- watch
1420
- apiGroups:
15-
- apiextensions.k8s.io
21+
- ""
1622
resources:
17-
- customresourcedefinitions
23+
- events
1824
verbs:
19-
- get
20-
- list
21-
- watch
25+
- create
26+
- patch
2227
- apiGroups:
23-
- apps
28+
- ""
2429
resources:
25-
- deployments
26-
- statefulsets
30+
- services
2731
verbs:
2832
- create
2933
- delete
3034
- get
3135
- list
32-
- patch
3336
- update
3437
- watch
3538
- apiGroups:
36-
- apps.kruise.io
39+
- apiextensions.k8s.io
3740
resources:
38-
- clonesets
39-
- statefulsets
41+
- customresourcedefinitions
4042
verbs:
41-
- create
42-
- delete
4343
- get
4444
- list
45-
- patch
46-
- update
4745
- watch
4846
- apiGroups:
49-
- ""
47+
- apps
5048
resources:
51-
- configmaps
52-
- pods
49+
- deployments
50+
- statefulsets
5351
verbs:
5452
- create
5553
- delete
@@ -59,14 +57,16 @@ rules:
5957
- update
6058
- watch
6159
- apiGroups:
62-
- ""
60+
- apps.kruise.io
6361
resources:
64-
- services
62+
- clonesets
63+
- statefulsets
6564
verbs:
6665
- create
6766
- delete
6867
- get
6968
- list
69+
- patch
7070
- update
7171
- watch
7272
- apiGroups:

config/risingwave-operator-test.yaml

Lines changed: 1343 additions & 199 deletions
Large diffs are not rendered by default.

config/risingwave-operator.yaml

Lines changed: 1343 additions & 199 deletions
Large diffs are not rendered by default.

docs/general/api.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -375,15 +375,13 @@ string
375375
<p>volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim.
376376
If specified, the CSI driver will create or update the volume with the attributes defined
377377
in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName,
378-
it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass
379-
will be applied to the claim but it&rsquo;s not allowed to reset this field to empty string once it is set.
380-
If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass
381-
will be set by the persistentvolume controller if it exists.
378+
it can be changed after the claim is created. An empty string or nil value indicates that no
379+
VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state,
380+
this field can be reset to its previous value (including nil) to cancel the modification.
382381
If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be
383382
set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource
384383
exists.
385-
More info: <a href="https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/">https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/</a>
386-
(Beta) Using this field requires the VolumeAttributesClass feature gate to be enabled (off by default).</p>
384+
More info: <a href="https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/">https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/</a></p>
387385
</td>
388386
</tr>
389387
</table>

go.mod

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ require (
2020
golang.org/x/time v0.12.0
2121
google.golang.org/grpc v1.75.0
2222
google.golang.org/protobuf v1.36.8
23-
k8s.io/api v0.33.4
24-
k8s.io/apiextensions-apiserver v0.33.4
25-
k8s.io/apimachinery v0.33.4
26-
k8s.io/client-go v0.33.4
23+
k8s.io/api v0.34.0
24+
k8s.io/apiextensions-apiserver v0.34.0
25+
k8s.io/apimachinery v0.34.0
26+
k8s.io/client-go v0.34.0
2727
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397
2828
sigs.k8s.io/controller-runtime v0.21.0
2929
)
@@ -32,37 +32,38 @@ require (
3232
github.com/beorn7/perks v1.0.1 // indirect
3333
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3434
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
35-
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
35+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
3636
github.com/evanphx/json-patch v5.7.0+incompatible // indirect
3737
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
38-
github.com/fsnotify/fsnotify v1.7.0 // indirect
39-
github.com/fxamacker/cbor/v2 v2.8.0 // indirect
38+
github.com/fsnotify/fsnotify v1.9.0 // indirect
39+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
4040
github.com/go-logr/zapr v1.3.0 // indirect
4141
github.com/go-openapi/jsonpointer v0.21.0 // indirect
4242
github.com/go-openapi/jsonreference v0.20.2 // indirect
4343
github.com/go-openapi/swag v0.23.0 // indirect
4444
github.com/gogo/protobuf v1.3.2 // indirect
4545
github.com/google/btree v1.1.3 // indirect
46-
github.com/google/gnostic-models v0.6.9 // indirect
46+
github.com/google/gnostic-models v0.7.0 // indirect
4747
github.com/google/go-cmp v0.7.0 // indirect
4848
github.com/josharian/intern v1.0.0 // indirect
4949
github.com/json-iterator/go v1.1.12 // indirect
5050
github.com/mailru/easyjson v0.7.7 // indirect
5151
github.com/mattn/go-colorable v0.1.13 // indirect
5252
github.com/mattn/go-isatty v0.0.20 // indirect
5353
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
54-
github.com/modern-go/reflect2 v1.0.2 // indirect
54+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
5555
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5656
github.com/opencontainers/go-digest v1.0.0 // indirect
5757
github.com/pkg/errors v0.9.1 // indirect
5858
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
5959
github.com/prometheus/common v0.65.0 // indirect
6060
github.com/prometheus/procfs v0.16.1 // indirect
61-
github.com/spf13/pflag v1.0.5 // indirect
61+
github.com/spf13/pflag v1.0.6 // indirect
6262
github.com/x448/float16 v0.8.4 // indirect
6363
go.uber.org/multierr v1.11.0 // indirect
6464
go.uber.org/zap v1.27.0 // indirect
6565
go.yaml.in/yaml/v2 v2.4.2 // indirect
66+
go.yaml.in/yaml/v3 v3.0.4 // indirect
6667
golang.org/x/net v0.41.0 // indirect
6768
golang.org/x/oauth2 v0.30.0 // indirect
6869
golang.org/x/sync v0.16.0 // indirect
@@ -75,9 +76,9 @@ require (
7576
gopkg.in/inf.v0 v0.9.1 // indirect
7677
gopkg.in/yaml.v3 v3.0.1 // indirect
7778
k8s.io/klog/v2 v2.130.1 // indirect
78-
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
79+
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b // indirect
7980
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
8081
sigs.k8s.io/randfill v1.0.0 // indirect
81-
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect
82-
sigs.k8s.io/yaml v1.5.0 // indirect
82+
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
83+
sigs.k8s.io/yaml v1.6.0 // indirect
8384
)

0 commit comments

Comments
 (0)