Skip to content

Commit 6eecef5

Browse files
adwk67xeniape
andauthored
chore: add oci references, merge templating changes (#671)
* remove references to nexus * re-add nexus actions * remove changes that will be suppliedm by templating * replace latest with 0.0.0-dev in harbor * bump op-rs to 0.85 * minor test def change * minor test def change II * changelog --------- Co-authored-by: Xenia <xenia.fischer@stackable.tech>
1 parent bb7a337 commit 6eecef5

File tree

14 files changed

+33
-28
lines changed

14 files changed

+33
-28
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,13 @@ All notable changes to this project will be documented in this file.
1414

1515
- Removed support for OPA `0.66.0` ([#677]).
1616

17+
### Changed
18+
19+
- Default to OCI for image metadata and product image selection ([#671]).
20+
1721
[#666]: https://github.com/stackabletech/opa-operator/pull/666
1822
[#677]: https://github.com/stackabletech/opa-operator/pull/677
23+
[#671]: https://github.com/stackabletech/opa-operator/pull/671
1924
[#675]: https://github.com/stackabletech/opa-operator/pull/675
2025

2126
## [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
@@ -33,7 +33,7 @@ semver = "1.0"
3333
serde = { version = "1.0", features = ["derive"] }
3434
serde_json = "1.0"
3535
snafu = "0.8"
36-
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.84.1" }
36+
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.85.0" }
3737
strum = { version = "0.26", features = ["derive"] }
3838
tar = "0.4"
3939
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/opa-operator/crds/crds.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ spec:
265265
description: The OPA image to use
266266
properties:
267267
custom:
268-
description: Overwrite the docker image. Specify the full docker image name, e.g. `docker.stackable.tech/stackable/superset:1.4.1-stackable2.1.0`
268+
description: Overwrite the docker image. Specify the full docker image name, e.g. `oci.stackable.tech/sdp/superset:1.4.1-stackable2.1.0`
269269
type: string
270270
productVersion:
271271
description: Version of the product, e.g. `1.4.1`.
@@ -292,7 +292,7 @@ spec:
292292
nullable: true
293293
type: array
294294
repo:
295-
description: Name of the docker repo, e.g. `docker.stackable.tech/stackable`
295+
description: Name of the docker repo, e.g. `oci.stackable.tech/sdp`
296296
nullable: true
297297
type: string
298298
stackableVersion:

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

docs/modules/opa/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/opa-operator:latest
33+
oci.stackable.tech/sdp/opa-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/opa-operator:latest
59+
oci.stackable.tech/sdp/opa-operator:0.0.0-dev
6060
----
6161

6262
== WATCH_NAMESPACE
@@ -85,7 +85,7 @@ 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/opa-operator:latest
88+
oci.stackable.tech/sdp/opa-operator:0.0.0-dev
8989
----
9090

9191
== OPA_BUNDLE_BUILDER_CLUSTERROLE

tests/templates/kuttl/aas-user-info/20-install-test-regorule.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
serviceAccountName: test-sa
1919
containers:
2020
- name: test-regorule
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
2424
resources:

tests/templates/kuttl/keycloak-user-info/20-install-test-regorule.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
spec:
1818
containers:
1919
- name: test-regorule
20-
image: docker.stackable.tech/stackable/testing-tools:0.2.0-stackable0.0.0-dev
20+
image: oci.stackable.tech/sdp/testing-tools:0.2.0-stackable0.0.0-dev
2121
stdin: true
2222
tty: true
2323
resources:

0 commit comments

Comments
 (0)