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
alias noobaa=./noobaa # or you can keep using ./noobaa

You should have a kubernetes cluster, and kubectl configured to use it, and then use the CLI to deploy (to the noobaa namespace in this example):

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