Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
7785ff5
Add common struct for product image selection
sbernauer Sep 26, 2022
7d66a49
Take by reference
sbernauer Sep 26, 2022
19c6ea6
WIP
sbernauer Sep 26, 2022
ce854e8
Default to auto
sbernauer Sep 26, 2022
1d70355
Add pull policy and secrets
sbernauer Sep 28, 2022
bb33389
Add some tests
sbernauer Sep 28, 2022
b2b14a7
Add to builders
sbernauer Oct 3, 2022
2859d55
Add product_version fn
sbernauer Oct 3, 2022
ac11f14
WIP
sbernauer Oct 3, 2022
0bda50f
Add JsonSchema
sbernauer Oct 3, 2022
1d43a58
Adopt tests
sbernauer Oct 6, 2022
4f43d9a
docs
sbernauer Oct 6, 2022
51897a7
cleanup
sbernauer Oct 6, 2022
f68fbbd
Merge remote-tracking branch 'origin/main' into feature/product-image…
sbernauer Oct 18, 2022
995f627
Remove kube native-tls feature
sbernauer Oct 18, 2022
768cd7a
Use kube 0.76.0
sbernauer Oct 28, 2022
160398d
Remove kube native-tls feature
sbernauer Oct 28, 2022
0fcbe8d
typo
sbernauer Oct 28, 2022
f538239
docs
sbernauer Oct 28, 2022
f6a38f0
docs
sbernauer Oct 28, 2022
b1d906b
docs
sbernauer Nov 4, 2022
6315fb9
Removed unused Default impl
sbernauer Nov 7, 2022
258ff6d
Merge branch 'feature/product-image-selection' of github.com:stackabl…
sbernauer Nov 7, 2022
1983187
Remove Stackable enum variant
sbernauer Nov 11, 2022
c882426
Merge remote-tracking branch 'origin/main' into feature/product-image…
sbernauer Nov 11, 2022
d44c2ad
changelog
sbernauer Nov 11, 2022
62b8031
Merge branch 'main' into feature/product-image-selection
sbernauer Nov 11, 2022
f3c9982
Add app_version_label to ResolvedProductImage
sbernauer Nov 11, 2022
74b57f4
Merge remote-tracking branch 'origin/main' into feature/product-image…
sbernauer Nov 11, 2022
b88d33f
Update src/commons/product_image_selection.rs
sbernauer Nov 11, 2022
a668a01
Update src/labels.rs
sbernauer Nov 11, 2022
55681ea
Update src/labels.rs
sbernauer Nov 11, 2022
e93edb0
Update src/labels.rs
sbernauer Nov 11, 2022
e267c1f
Update src/labels.rs
sbernauer Nov 11, 2022
372ba5c
Update src/labels.rs
sbernauer Nov 11, 2022
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
WIP
  • Loading branch information
sbernauer committed Sep 26, 2022
commit 19c6ea64ec8d430ec6800e23360e14a504c2d3d1
6 changes: 1 addition & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ either = "1.8.0"
futures = "0.3.23"
json-patch = "0.2.6"
k8s-openapi = { version = "0.15.0", default-features = false, features = ["schemars", "v1_24"] }
kube = { version = "0.74.0", features = ["jsonpatch", "runtime", "derive"] }
kube = { git = "https://github.com/sbernauer/kube.git", branch = "release-0.74.0", features = ["jsonpatch", "runtime", "derive"] }
lazy_static = "1.4.0"
product-config = { git = "https://github.com/stackabletech/product-config.git", tag = "0.4.0" }
rand = "0.8.5"
Expand Down Expand Up @@ -46,7 +46,3 @@ rustls-tls = ["kube/rustls-tls"]

[workspace]
members = ["stackable-operator-derive"]

[patch.crates-io]
# Add https://github.com/kube-rs/kube/pull/1028
kube = { git = "https://github.com/sbernauer/kube.git", branch = "release-0.74.0" }