Skip to content

Weekly Master Builds

Guy Margalit edited this page Apr 22, 2021 · 6 revisions

Weekly builds of the core and operator images are pushed to:

Download the operator CLI:

curl 'https://noobaa-operator-cli.s3.amazonaws.com/noobaa-operator-master-20210419' > noobaa
chmod +x noobaa
sudo install noobaa # copies to /usr/local/bin/ or similar bin dir

Use the CLI to deploy to the noobaa namespace:

noobaa install -n noobaa \
  --noobaa-image='noobaa/noobaa-core:master-20210419' \
  --operator-image='noobaa/noobaa-operator:master-20210419'

We suggest setting the current namespace to noobaa so you don’t need to add -n noobaa to all kubectl / noobaa commands:

kubectl config set-context --current --namespace noobaa
Clone this wiki locally