Publish Kali container 17/70017/1
authorCédric Ollivier <cedric.ollivier@orange.com>
Tue, 28 Apr 2020 09:39:08 +0000 (11:39 +0200)
committerCédric Ollivier <cedric.ollivier@orange.com>
Tue, 28 Apr 2020 09:40:07 +0000 (11:40 +0200)
It should be noted that OpenStack has not released U's
upper-constaints.txt yet.

Change-Id: I05de1981cec34da1dcbc4b192d8a0510fddc84a1
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
.gitreview
.travis.yml
ansible/site.yml
build.sh
docker/Dockerfile

index 8db5dfe..bdb6124 100644 (file)
@@ -2,4 +2,4 @@
 host=gerrit.opnfv.org
 port=29418
 project=functest-xtesting.git
-
+defaultbranch=stable/kali
index 402ac29..d92a5cb 100644 (file)
@@ -41,5 +41,5 @@ jobs:
       script: >
         sudo manifest-tool push from-args \
           --platforms linux/amd64,linux/arm,linux/arm64 \
-          --template ${DOCKER_USERNAME}/xtesting:ARCH-latest \
-          --target ${DOCKER_USERNAME}/xtesting:latest
+          --template ${DOCKER_USERNAME}/xtesting:ARCH-kali \
+          --target ${DOCKER_USERNAME}/xtesting:kali
index b042d57..b27ea7f 100644 (file)
@@ -2,6 +2,9 @@
 - hosts: 127.0.0.1
   roles:
     - role: collivier.xtesting
+      docker_tags:
+        - kali:
+            branch: stable/kali
       builds:
         dependencies:
           - repo: _
index b7e5672..322b60c 100644 (file)
--- a/build.sh
+++ b/build.sh
@@ -8,7 +8,7 @@
 set -xe
 
 repo=${REPO:-opnfv}
-tag=${BRANCH:-latest}
+tag=${BRANCH:-kali}
 arch=${arch-"\
 amd64 \
 arm64 \
index 7b908cd..83a3b13 100644 (file)
@@ -1,6 +1,6 @@
 FROM alpine:3.11
 
-ARG BRANCH=master
+ARG BRANCH=stable/kali
 ARG OPENSTACK_TAG=master
 
 RUN apk --no-cache add --update python3 bash git mailcap && \