Skip to content

Commit 8ae420d

Browse files
Techassisbernauer
andauthored
docs: Update the quay.io section (#863)
* docs: Update the quay.io section * chore: Apply suggestion Co-authored-by: Sebastian Bernauer <sebastian.bernauer@stackable.de> --------- Co-authored-by: Sebastian Bernauer <sebastian.bernauer@stackable.de>
1 parent 64f11f2 commit 8ae420d

1 file changed

Lines changed: 22 additions & 53 deletions

File tree

  • modules/concepts/pages/artifact-registries

modules/concepts/pages/artifact-registries/index.adoc

Lines changed: 22 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -46,75 +46,44 @@ $ helm install <PRODUCT>-operator oci://oci.stackable.tech/sdp-charts/<PRODUCT>-
4646

4747
== quay.io
4848

49-
Currently, only the operator and product container images are published to quay.io by mirroring them from our Harbor instance on `oci.stackable.tech`.
50-
See link:#pulling-quay-io[below].
49+
On quay.io, everything is stored under the central `stackable` organization.
50+
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.
5151

5252
[source,plain]
5353
----
5454
quay.io
5555
|- stackable
56-
|- airflow
57-
|- airflow-operator
58-
|- hbase
59-
|- hbase-operator
60-
|- ...
56+
|- sdp
57+
| |- airflow
58+
| |- airflow-operator
59+
| |- hbase
60+
| |- hbase-operator
61+
| |- ...
62+
|- sdp-charts
63+
|- airflow-operator
64+
|- hbase-operator
65+
|- ...
6166
----
6267

63-
[#pulling-quay-io]
6468
=== Pulling from quay.io
6569

6670
* Product container images can be pulled using:
6771
+
6872
[source,shell]
6973
----
70-
$ docker pull quay.io/stackable/<PRODUCT>:<VERSION>-stackable<SDP_VERSION>
74+
$ docker pull quay.io/stackable/sdp/<PRODUCT>:<VERSION>-stackable<SDP_VERSION>
7175
----
7276
* Product operator container images can be pulled using:
7377
+
7478
[source,shell]
7579
----
76-
$ docker pull quay.io/stackable/<PRODUCT>-operator:<SDP_VERSION>
80+
$ docker pull quay.io/stackable/sdp/<PRODUCT>-operator:<SDP_VERSION>
81+
----
82+
* Product operator Helm Charts can be installed using:
83+
+
84+
[source,shell]
85+
----
86+
$ helm install <PRODUCT>-operator oci://quay.io/stackable/sdp-charts/<PRODUCT>-operator \
87+
--version <SDP_VERSION> \
88+
--wait
7789
----
78-
79-
// NOTE: This is how it will be going forward.
80-
// On quay.io, everything is stored under the central `stackable` organization.
81-
// The rest of the structure is identical compared to `oci.stackable.tech`.
82-
83-
// [source,plain]
84-
// ----
85-
// quay.io
86-
// |- stackable
87-
// |- sdp
88-
// | |- airflow
89-
// | |- airflow-operator
90-
// | |- hbase
91-
// | |- hbase-operator
92-
// | |- ...
93-
// |- sdp-charts
94-
// |- airflow-operator
95-
// |- hbase-operator
96-
// |- ...
97-
// ----
98-
99-
// === Pulling from quay.io
100-
101-
// * Product container images can be pulled using:
102-
// +
103-
// [source,shell]
104-
// ----
105-
// $ docker pull quay.io/stackable/sdp/<PRODUCT>:<VERSION>-stackable<SDP_VERSION>
106-
// ----
107-
// * Product operator container images can be pulled using:
108-
// +
109-
// [source,shell]
110-
// ----
111-
// $ docker pull quay.io/stackable/sdp/<PRODUCT>-operator:<SDP_VERSION>
112-
// ----
113-
// * Product operator Helm Charts can be installed using:
114-
// +
115-
// [source,shell]
116-
// ----
117-
// $ helm install <PRODUCT>-operator oci://quay.io/stackable/sdp-charts/<PRODUCT>-operator \
118-
// --version <SDP_VERSION> \
119-
// --wait
120-
// ----

0 commit comments

Comments
 (0)