From 2e01c593d3dc7d735b39721bd0dd739ad7dbd9b0 Mon Sep 17 00:00:00 2001 From: Techassi Date: Thu, 25 Jun 2026 11:06:15 +0200 Subject: [PATCH 1/2] docs: Update the quay.io section --- .../pages/artifact-registries/index.adoc | 75 ++++++------------- 1 file changed, 22 insertions(+), 53 deletions(-) diff --git a/modules/concepts/pages/artifact-registries/index.adoc b/modules/concepts/pages/artifact-registries/index.adoc index 6d72b48cc..359d1b8d8 100644 --- a/modules/concepts/pages/artifact-registries/index.adoc +++ b/modules/concepts/pages/artifact-registries/index.adoc @@ -46,75 +46,44 @@ $ helm install -operator oci://oci.stackable.tech/sdp-charts/- == quay.io -Currently, only the operator and product container images are published to quay.io by mirroring them from our Harbor instance on `oci.stackable.tech`. -See link:#pulling-quay-io[below]. +On quay.io, everything is stored under the central `stackable` organization. +Since SDP 26.7.0, the rest of the structure is identical compared to `oci.stackable.tech` and images will no longer be pushed to their previous locations (directly under `quay.io/stackable`) going forward. [source,plain] ---- quay.io |- stackable - |- airflow - |- airflow-operator - |- hbase - |- hbase-operator - |- ... + |- sdp + | |- airflow + | |- airflow-operator + | |- hbase + | |- hbase-operator + | |- ... + |- sdp-charts + |- airflow-operator + |- hbase-operator + |- ... ---- -[#pulling-quay-io] === Pulling from quay.io * Product container images can be pulled using: + [source,shell] ---- -$ docker pull quay.io/stackable/:-stackable +$ docker pull quay.io/stackable/sdp/:-stackable ---- * Product operator container images can be pulled using: + [source,shell] ---- -$ docker pull quay.io/stackable/-operator: +$ docker pull quay.io/stackable/sdp/-operator: +---- +* Product operator Helm Charts can be installed using: ++ +[source,shell] +---- +$ helm install -operator oci://quay.io/stackable/sdp-charts/-operator \ + --version \ + --wait ---- - -// NOTE: This is how it will be going forward. -// On quay.io, everything is stored under the central `stackable` organization. -// The rest of the structure is identical compared to `oci.stackable.tech`. - -// [source,plain] -// ---- -// quay.io -// |- stackable -// |- sdp -// | |- airflow -// | |- airflow-operator -// | |- hbase -// | |- hbase-operator -// | |- ... -// |- sdp-charts -// |- airflow-operator -// |- hbase-operator -// |- ... -// ---- - -// === Pulling from quay.io - -// * Product container images can be pulled using: -// + -// [source,shell] -// ---- -// $ docker pull quay.io/stackable/sdp/:-stackable -// ---- -// * Product operator container images can be pulled using: -// + -// [source,shell] -// ---- -// $ docker pull quay.io/stackable/sdp/-operator: -// ---- -// * Product operator Helm Charts can be installed using: -// + -// [source,shell] -// ---- -// $ helm install -operator oci://quay.io/stackable/sdp-charts/-operator \ -// --version \ -// --wait -// ---- From d234c22a9aa99c99a51ef0dd481fe11a572a1c48 Mon Sep 17 00:00:00 2001 From: Techassi Date: Thu, 25 Jun 2026 13:11:43 +0200 Subject: [PATCH 2/2] chore: Apply suggestion Co-authored-by: Sebastian Bernauer --- modules/concepts/pages/artifact-registries/index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/concepts/pages/artifact-registries/index.adoc b/modules/concepts/pages/artifact-registries/index.adoc index 359d1b8d8..58307f1a0 100644 --- a/modules/concepts/pages/artifact-registries/index.adoc +++ b/modules/concepts/pages/artifact-registries/index.adoc @@ -47,7 +47,7 @@ $ helm install -operator oci://oci.stackable.tech/sdp-charts/- == quay.io On quay.io, everything is stored under the central `stackable` organization. -Since SDP 26.7.0, the rest of the structure is identical compared to `oci.stackable.tech` and images will no longer be pushed to their previous locations (directly under `quay.io/stackable`) going forward. +Starting with SDP 26.7.0, the rest of the structure is identical compared to `oci.stackable.tech` and images will no longer be pushed to their previous locations (directly under `quay.io/stackable`) going forward. [source,plain] ----