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
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 below.
quay.io
|- stackable
|- airflow
|- airflow-operator
|- hbase
|- hbase-operator
|- ...