ansibleplaybookbundle / apb-base

Base image for APB development
Apache License 2.0
8 stars 14 forks source link

Canary apb-base should use latest asb modules #8

Closed djzager closed 6 years ago

djzager commented 7 years ago

Update the canary apb-base so that it grabs the latest asb modules instead of an old sha.

djzager commented 7 years ago

Testing

Build Dockerfile-canary apb-base:

$ docker build --no-cache -t docker.io/djzager/apb-base -f Dockerfile-canary .

Changed hello-world-apb to use docker.io/djzager/apb-base:

--- a/Dockerfile
+++ b/Dockerfile
@@ -1,17 +1,18 @@
-FROM ansibleplaybookbundle/apb-base
+FROM docker.io/djzager/apb-base

Build and Push it:

$ docker run --rm --privileged -v $PWD:/mnt -v $HOME/.kube:/.kube -v /var/run/docker.sock:/var/run/docker.sock -u $UID docker.io/ansibleplaybookbundle/apb build
$ docker run --rm --privileged -v $PWD:/mnt -v $HOME/.kube:/.kube -v /var/run/docker.sock:/var/run/docker.sock -u $UID docker.io/ansibleplaybookbundle/apb push

Provisioned and Deprovisioned w/o Failure.