Skip to content

Commit dcf9095

Browse files
committed
Bump kube
1 parent dcb6960 commit dcf9095

3 files changed

Lines changed: 13 additions & 20 deletions

File tree

Cargo.lock

Lines changed: 5 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ k8s-openapi = { version = "0.27.0", default-features = false, features = ["schem
3939
# We use rustls instead of openssl for easier portability, e.g. so that we can build stackablectl without the need to vendor (build from source) openssl
4040
# We use ring instead of aws-lc-rs, as this currently fails to build in "make run-dev"
4141
# We pin the kube version, as we use a patch for 2.0.1
42-
kube = { version = "3.0.1", default-features = false, features = ["client", "jsonpatch", "runtime", "derive", "admission", "rustls-tls", "ring"] }
42+
# kube = { version = "3.0.1", default-features = false, features = ["client", "jsonpatch", "runtime", "derive", "admission", "rustls-tls", "ring"] }
43+
kube = { git = "https://github.com/kube-rs/kube-rs", rev = "fe69cc486ff8e62a7da61d64ec3ebbd9e64c43b5", version = "=3.0.1", default-features = false, features = ["client", "jsonpatch", "runtime", "derive", "admission", "rustls-tls", "ring"] }
4344
opentelemetry = "0.31.0"
4445
opentelemetry_sdk = { version = "0.31.0", features = ["rt-tokio"] }
4546
opentelemetry-appender-tracing = "0.31.0"

crates/stackable-operator/crds/DummyCluster.yaml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -85,16 +85,13 @@ spec:
8585
Since git-sync v4.x.x this field is mapped to the flag `--ref`.
8686
type: string
8787
credentials:
88-
anyOf:
89-
- oneOf:
90-
- required:
91-
- basicAuthSecretName
92-
- required:
93-
- sshPrivateKeySecretName
94-
- enum:
95-
- null
96-
nullable: true
9788
description: An optional secret used for git access.
89+
nullable: true
90+
oneOf:
91+
- required:
92+
- basicAuthSecretName
93+
- required:
94+
- sshPrivateKeySecretName
9895
properties:
9996
basicAuthSecretName:
10097
description: |-

0 commit comments

Comments
 (0)