Skip to content

Commit 8f1bc4e

Browse files
authored
chore: add oci references, merge templating changes (#611)
* replace repo urls * replace repo urls * bump stackable-operator version * add changelog entry
1 parent 569e422 commit 8f1bc4e

25 files changed

+53
-50
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,13 @@
99
- Run a `containerdebug` process in the background of each HBase container to collect debugging information ([#605]).
1010
- Aggregate emitted Kubernetes events on the CustomResources ([#612]).
1111

12+
### Changed
13+
14+
- Default to OCI for image metadata and product image selection ([#611]).
15+
1216
[#598]: https://github.com/stackabletech/hbase-operator/pull/598
1317
[#605]: https://github.com/stackabletech/hbase-operator/pull/605
18+
[#611]: https://github.com/stackabletech/hbase-operator/pull/611
1419
[#612]: https://github.com/stackabletech/hbase-operator/pull/612
1520

1621
## [24.11.1] - 2025-01-09

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/hbase-operator/crds/crds.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ spec:
126126
Consult the [Product image selection documentation](https://docs.stackable.tech/home/nightly/concepts/product_image_selection) for details.
127127
properties:
128128
custom:
129-
description: Overwrite the docker image. Specify the full docker image name, e.g. `docker.stackable.tech/stackable/superset:1.4.1-stackable2.1.0`
129+
description: Overwrite the docker image. Specify the full docker image name, e.g. `oci.stackable.tech/sdp/superset:1.4.1-stackable2.1.0`
130130
type: string
131131
productVersion:
132132
description: Version of the product, e.g. `1.4.1`.
@@ -153,7 +153,7 @@ spec:
153153
nullable: true
154154
type: array
155155
repo:
156-
description: Name of the docker repo, e.g. `docker.stackable.tech/stackable`
156+
description: Name of the docker repo, e.g. `oci.stackable.tech/sdp`
157157
nullable: true
158158
type: string
159159
stackableVersion:

deploy/helm/hbase-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 hbase-operator.
22
---
33
image:
4-
repository: docker.stackable.tech/stackable/hbase-operator
4+
repository: oci.stackable.tech/sdp/hbase-operator
55
pullPolicy: IfNotPresent
66
pullSecrets: []
77

docs/modules/hbase/examples/usage-guide/hbck2-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
spec:
99
containers:
1010
- name: hbck2
11-
image: docker.stackable.tech/stackable/hbase:2.4.18-stackable0.0.0-dev
11+
image: oci.stackable.tech/sdp/hbase:2.4.18-stackable0.0.0-dev
1212
volumeMounts:
1313
- name: hbase-config
1414
mountPath: /stackable/conf

docs/modules/hbase/examples/usage-guide/hbck2-job.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
spec:
99
containers:
1010
- name: hbck2
11-
image: docker.stackable.tech/stackable/hbase:2.4.18-stackable{{ versions.hbase }}
11+
image: oci.stackable.tech/sdp/hbase:2.4.18-stackable{{ versions.hbase }}
1212
volumeMounts:
1313
- name: hbase-config
1414
mountPath: /stackable/conf

docs/modules/hbase/examples/usage-guide/snapshot-export-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
spec:
99
containers:
1010
- name: hbase
11-
image: docker.stackable.tech/stackable/hbase:2.4.18-stackable0.0.0-dev
11+
image: oci.stackable.tech/sdp/hbase:2.4.18-stackable0.0.0-dev
1212
volumeMounts:
1313
- name: hbase-config
1414
mountPath: /stackable/conf

0 commit comments

Comments
 (0)