Skip to content

Commit ebe139b

Browse files
committed
replace repo urls
1 parent ac6dc70 commit ebe139b

File tree

13 files changed

+22
-22
lines changed

13 files changed

+22
-22
lines changed

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

tests/templates/kuttl/kerberos/01-install-krb5-kdc.yaml.j2

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
serviceAccountName: test-sa
1616
initContainers:
1717
- name: init
18-
image: docker.stackable.tech/stackable/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
18+
image: oci.stackable.tech/sdp/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
1919
args:
2020
- sh
2121
- -euo
@@ -36,7 +36,7 @@ spec:
3636
name: data
3737
containers:
3838
- name: kdc
39-
image: docker.stackable.tech/stackable/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
39+
image: oci.stackable.tech/sdp/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
4040
args:
4141
- krb5kdc
4242
- -n
@@ -54,7 +54,7 @@ spec:
5454
runAsUser: 0
5555
{% endif %}
5656
- name: kadmind
57-
image: docker.stackable.tech/stackable/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
57+
image: oci.stackable.tech/sdp/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
5858
args:
5959
- kadmind
6060
- -nofork
@@ -72,7 +72,7 @@ spec:
7272
runAsUser: 0
7373
{% endif %}
7474
- name: client
75-
image: docker.stackable.tech/stackable/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
75+
image: oci.stackable.tech/sdp/krb5:{{ test_scenario['values']['krb5'] }}-stackable0.0.0-dev
7676
tty: true
7777
stdin: true
7878
env:

tests/templates/kuttl/kerberos/30-access-hdfs.txt.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ spec:
1212
{% if test_scenario['values']['hadoop'].find(",") > 0 %}
1313
image: "{{ test_scenario['values']['hadoop'].split(',')[1] }}"
1414
{% else %}
15-
image: docker.stackable.tech/stackable/hadoop:{{ test_scenario['values']['hadoop'] }}-stackable0.0.0-dev
15+
image: oci.stackable.tech/sdp/hadoop:{{ test_scenario['values']['hadoop'] }}-stackable0.0.0-dev
1616
{% endif %}
1717
env:
1818
- name: HADOOP_CONF_DIR

tests/templates/kuttl/kerberos/32-check-file.txt.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ spec:
1212
{% if test_scenario['values']['hadoop'].find(",") > 0 %}
1313
image: "{{ test_scenario['values']['hadoop'].split(',')[1] }}"
1414
{% else %}
15-
image: docker.stackable.tech/stackable/hadoop:{{ test_scenario['values']['hadoop'] }}-stackable0.0.0-dev
15+
image: oci.stackable.tech/sdp/hadoop:{{ test_scenario['values']['hadoop'] }}-stackable0.0.0-dev
1616
{% endif %}
1717
env:
1818
- name: HADOOP_CONF_DIR

tests/templates/kuttl/logging/06-install-hdfs-test-runner.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
shareProcessNamespace: true
1919
containers:
2020
- name: hdfs-test-runner
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
args: [sleep, infinity]
2323
stdin: true
2424
tty: true

tests/templates/kuttl/profiling/04-install-test-container.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spec:
2626
fsGroup: 1000
2727
containers:
2828
- name: python
29-
image: docker.stackable.tech/stackable/testing-tools:0.2.0-stackable0.0.0-dev
29+
image: oci.stackable.tech/sdp/testing-tools:0.2.0-stackable0.0.0-dev
3030
stdin: true
3131
tty: true
3232
resources:

tests/templates/kuttl/smoke/40-install-test-runner.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
shareProcessNamespace: true
1919
containers:
2020
- name: test-runner
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
args: [sleep, infinity]
2323
stdin: true
2424
tty: true

0 commit comments

Comments
 (0)