Artifact registries
The SDP operator and product container images, as well as the Helm Charts are published on two registries: oci.stackable.tech and quay.io.
This page details in which structure these artifacts are stored and how they can be retrieved.
oci.stackable.tech
oci.stackable.tech
|- sdp
| |- airflow
| |- airflow-operator
| |- hbase
| |- hbase-operator
| |- ...
|- sdp-charts
|- airflow-operator
|- hbase-operator
|- ...
Pulling from oci.stackable.tech
-
Product container images can be pulled using:
$ docker pull oci.stackable.tech/sdp/<PRODUCT>:<VERSION>-stackable<SDP_VERSION> -
Product operator container images can be pulled using:
$ docker pull oci.stackable.tech/sdp/<PRODUCT>-operator:<SDP_VERSION> -
Product operator Helm Charts can be installed using:
$ helm install <PRODUCT>-operator oci://oci.stackable.tech/sdp-charts/<PRODUCT>-operator \ --version <SDP_VERSION> \ --wait
quay.io
On quay.io, everything is stored under the central stackable organization.
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.
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:
$ docker pull quay.io/stackable/sdp/<PRODUCT>:<VERSION>-stackable<SDP_VERSION> -
Product operator container images can be pulled using:
$ docker pull quay.io/stackable/sdp/<PRODUCT>-operator:<SDP_VERSION> -
Product operator Helm Charts can be installed using:
$ helm install <PRODUCT>-operator oci://quay.io/stackable/sdp-charts/<PRODUCT>-operator \ --version <SDP_VERSION> \ --wait