Skip to content

Commit e13ff08

Browse files
committed
replace nexus references with harbor
1 parent 9e4ad0e commit e13ff08

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

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

docs/modules/zookeeper/examples/getting_started/code/getting_started.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ zkCli_ls() {
7070
# tag::zkcli-ls[]
7171
kubectl run my-pod \
7272
--stdin --tty --quiet --restart=Never \
73-
--image docker.stackable.tech/stackable/zookeeper:3.9.2-stackable0.0.0-dev -- \
73+
--image oci.stackable.tech/sdp/zookeeper:3.9.2-stackable0.0.0-dev -- \
7474
bin/zkCli.sh -server simple-zk-server-default:2282 ls / > /dev/null && \
7575
kubectl logs my-pod && \
7676
kubectl delete pods my-pod

docs/modules/zookeeper/examples/getting_started/code/getting_started.sh.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ zkCli_ls() {
7070
# tag::zkcli-ls[]
7171
kubectl run my-pod \
7272
--stdin --tty --quiet --restart=Never \
73-
--image docker.stackable.tech/stackable/zookeeper:3.9.2-stackable{{ versions.zookeeper }} -- \
73+
--image oci.stackable.tech/sdp/zookeeper:3.9.2-stackable{{ versions.zookeeper }} -- \
7474
bin/zkCli.sh -server simple-zk-server-default:2282 ls / > /dev/null && \
7575
kubectl logs my-pod && \
7676
kubectl delete pods my-pod

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

tests/templates/kuttl/logging/20-install-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ spec:
2929
spec:
3030
containers:
3131
- name: zk-test-helper
32-
image: docker.stackable.tech/stackable/testing-tools:0.2.0-stackable0.0.0-dev
32+
image: oci.stackable.tech/sdp/testing-tools:0.2.0-stackable0.0.0-dev
3333
stdin: true
3434
tty: true

tests/templates/kuttl/smoke/20-install-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ spec:
2929
spec:
3030
containers:
3131
- name: zk-test-helper
32-
image: docker.stackable.tech/stackable/testing-tools:0.2.0-stackable0.0.0-dev
32+
image: oci.stackable.tech/sdp/testing-tools:0.2.0-stackable0.0.0-dev
3333
stdin: true
3434
tty: true
3535
resources:

tests/test-definition.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
dimensions:
33
- name: zookeeper
44
values:
5-
- 3.9.2
5+
- 3.9.2,oci.stackable.tech/sdp/zookeeper:3.9.2-stackable0.0.0-dev
66
# To use a custom image, add a comma and the full name after the product version
7-
# - 3.9.2,docker.stackable.tech/stackable/zookeeper:3.9.2-stackable0.0.0-dev
7+
# - 3.9.2,oci.stackable.tech/sdp/zookeeper:3.9.2-stackable0.0.0-dev
88
- name: zookeeper-latest
99
values:
10-
- 3.9.2
10+
- 3.9.2,oci.stackable.tech/sdp/zookeeper:3.9.2-stackable0.0.0-dev
1111
# To use a custom image, add a comma and the full name after the product version
12-
# - 3.9.2,docker.stackable.tech/stackable/zookeeper:3.9.2-stackable0.0.0-dev
12+
# - 3.9.2,oci.stackable.tech/sdp/zookeeper:3.9.2-stackable0.0.0-dev
1313
- name: use-server-tls
1414
values:
1515
- "true"

0 commit comments

Comments
 (0)