Skip to content

Commit 3c2c254

Browse files
xeniapeadwk67
andauthored
chore: add oci references, merge templating changes (#640)
* replace repo urls * correct workflow to keep conditions mutually exclusive * bump stackable-operator version * add changelog --------- Co-authored-by: Andrew Kenworthy <andrew.kenworthy@stackable.de>
1 parent 53e0b4c commit 3c2c254

File tree

19 files changed

+41
-39
lines changed

19 files changed

+41
-39
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@ All notable changes to this project will be documented in this file.
1818
This helps with setups where configOverrides are used to enable security on the HTTP interfaces.
1919
As this results in `401` HTTP responses (instead of `200`), this previously failed the liveness checks.
2020
- Set the JVM argument `-Xms` in addition to `-Xmx` (with the same value). This ensure consistent JVM configs across our products ([#636]).
21+
- Default to OCI for image metadata and product image selection ([#640]).
2122

2223
[#619]: https://github.com/stackabletech/hdfs-operator/pull/619
2324
[#629]: https://github.com/stackabletech/hdfs-operator/pull/629
2425
[#636]: https://github.com/stackabletech/hdfs-operator/pull/636
26+
[#640]: https://github.com/stackabletech/hdfs-operator/pull/640
2527
[#643]: https://github.com/stackabletech/hdfs-operator/pull/643
2628

2729
## [24.11.1] - 2025-01-10

Cargo.lock

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

Cargo.nix

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ serde = { version = "1.0", features = ["derive"] }
2222
serde_json = "1.0"
2323
serde_yaml = "0.9"
2424
snafu = "0.8"
25-
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.84.1" }
25+
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.85.0" }
2626
product-config = { git = "https://github.com/stackabletech/product-config.git", tag = "0.7.0" }
2727
strum = { version = "0.26", features = ["derive"] }
2828
tokio = { version = "1.40", features = ["full"] }

crate-hashes.json

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

deploy/helm/hdfs-operator/crds/crds.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ spec:
734734
Consult the [Product image selection documentation](https://docs.stackable.tech/home/nightly/concepts/product_image_selection) for details.
735735
properties:
736736
custom:
737-
description: Overwrite the docker image. Specify the full docker image name, e.g. `docker.stackable.tech/stackable/superset:1.4.1-stackable2.1.0`
737+
description: Overwrite the docker image. Specify the full docker image name, e.g. `oci.stackable.tech/sdp/superset:1.4.1-stackable2.1.0`
738738
type: string
739739
productVersion:
740740
description: Version of the product, e.g. `1.4.1`.
@@ -761,7 +761,7 @@ spec:
761761
nullable: true
762762
type: array
763763
repo:
764-
description: Name of the docker repo, e.g. `docker.stackable.tech/stackable`
764+
description: Name of the docker repo, e.g. `oci.stackable.tech/sdp`
765765
nullable: true
766766
type: string
767767
stackableVersion:

deploy/helm/hdfs-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Default values for hdfs-operator.
22
---
33
image:
4-
repository: docker.stackable.tech/stackable/hdfs-operator
4+
repository: oci.stackable.tech/sdp/hdfs-operator
55
pullPolicy: IfNotPresent
66
pullSecrets: []
77

docs/modules/hdfs/examples/getting_started/webhdfs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ spec:
1818
spec:
1919
containers:
2020
- name: webhdfs
21-
image: docker.stackable.tech/stackable/testing-tools:0.2.0-stackable0.0.0-dev
21+
image: oci.stackable.tech/sdp/testing-tools:0.2.0-stackable0.0.0-dev
2222
stdin: true
2323
tty: true

docs/modules/hdfs/pages/reference/environment-variables.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ docker run \
3030
--env KUBECONFIG=/home/stackable/.kube/config \
3131
--env KUBERNETES_CLUSTER_DOMAIN=mycluster.local \
3232
--mount type=bind,source="$HOME/.kube/config",target="/home/stackable/.kube/config" \
33-
docker.stackable.tech/stackable/hdfs-operator:latest
33+
oci.stackable.tech/sdp/hdfs-operator:0.0.0-dev
3434
----
3535

3636
== PRODUCT_CONFIG
@@ -56,7 +56,7 @@ docker run \
5656
--env KUBECONFIG=/home/stackable/.kube/config \
5757
--env PRODUCT_CONFIG=/my/product/config.yaml \
5858
--mount type=bind,source="$HOME/.kube/config",target="/home/stackable/.kube/config" \
59-
docker.stackable.tech/stackable/hdfs-operator:latest
59+
oci.stackable.tech/sdp/hdfs-operator:0.0.0-dev
6060
----
6161

6262
== WATCH_NAMESPACE
@@ -85,5 +85,5 @@ docker run \
8585
--env KUBECONFIG=/home/stackable/.kube/config \
8686
--env WATCH_NAMESPACE=test \
8787
--mount type=bind,source="$HOME/.kube/config",target="/home/stackable/.kube/config" \
88-
docker.stackable.tech/stackable/hdfs-operator:latest
88+
oci.stackable.tech/sdp/hdfs-operator:0.0.0-dev
8989
----

docs/modules/hdfs/pages/usage-guide/fuse.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
env:
2222
- name: HADOOP_CONF_DIR
2323
value: /stackable/conf/hdfs
24-
image: docker.stackable.tech/stackable/hadoop:<version> <1>
24+
image: oci.stackable.tech/sdp/hadoop:<version> <1>
2525
imagePullPolicy: Always
2626
securityContext:
2727
privileged: true

0 commit comments

Comments
 (0)