![Alexander Hughes](/assets/img/avatar_default.png)
The images built from ViNO code are not currently stored in a public registry, this change adds Zuul jobs to push the controller and nodelabeler images to Quay.io where they can be consumed by the community. Signed-off-by: Alexander Hughes <Alexander.Hughes@pm.me> Change-Id: I19d7b9954a20af07cb6ffd1f1e8f17f3ed6e754c
9 lines
286 B
Bash
Executable File
9 lines
286 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xe
|
|
sudo snap install kustomize && sudo snap install go --classic
|
|
make docker-build-controller
|
|
make deploy
|
|
kubectl get po -A
|
|
#Wait for vino controller manager Pod.
|
|
kubectl wait -n vino-system pod -l control-plane=controller-manager --for=condition=ready --timeout=240s |