diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2021-12-03 20:45:52 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2021-12-03 20:45:52 +0000 |
commit | a855f8d316ffb09a432ceacc3221528ac9d1a61a (patch) | |
tree | 5c68ce01fd278d6dad7e48e0197fd0aa86a74bbf | |
parent | 6d967922375a6cadf14c2a4e458f542b4f9d848a (diff) | |
parent | ee0a32849ed5df0b96e499559f58cee70b0c9e9b (diff) |
Merge "Switch Docker Namespace from OPNFV to Anuket"
-rw-r--r-- | jjb/releng/opnfv-docker.sh | 14 | ||||
-rw-r--r-- | jjb/releng/opnfv-docker.yaml | 4 |
2 files changed, 9 insertions, 9 deletions
diff --git a/jjb/releng/opnfv-docker.sh b/jjb/releng/opnfv-docker.sh index 40e0ed6e2..50efaada3 100644 --- a/jjb/releng/opnfv-docker.sh +++ b/jjb/releng/opnfv-docker.sh @@ -23,9 +23,9 @@ function remove_containers_images() # # $ docker ps -a # CONTAINER ID IMAGE COMMAND ... - # 6a796ed40b8e opnfv/example-tasks:latest "/bin/bash" ... - # 99fcb59f4787 opnfv/example-tasks-base:latest "/bin/bash" ... - # cc5eee16b995 opnfv/example-tasks-k8s "/bin/bash" ... + # 6a796ed40b8e anuket/example-tasks:latest "/bin/bash" ... + # 99fcb59f4787 anuket/example-tasks-base:latest "/bin/bash" ... + # cc5eee16b995 anuket/example-tasks-k8s "/bin/bash" ... # # Cut image name by leading space and ending space or colon(tag) if [[ -n "$(docker ps -a | grep " $DOCKER_REPO_NAME[ :]")" ]]; then @@ -44,9 +44,9 @@ function remove_containers_images() # # $ docker images # REPOSITORY TAG IMAGE ID ... - # opnfv/example-tasks latest 6501569fd328 ... - # opnfv/example-tasks-base latest 8764fe29c434 ... - # opnfv/example-tasks-k8s latest 61094cac9e65 ... + # anuket/example-tasks latest 6501569fd328 ... + # anuket/example-tasks-base latest 8764fe29c434 ... + # anuket/example-tasks-k8s latest 61094cac9e65 ... # # Cut image name by start of line and ending space if [[ -n "$(docker images | grep "^$DOCKER_REPO_NAME ")" ]]; then @@ -98,7 +98,7 @@ RELEASE_VERSION=${GERRIT_REFNAME/refs\/tags\/} # If we're being triggered by a comment-added job, then extract the tag # from the comment and use that as the release version. -# Expected comment format: retag opnfv-x.y.z +# Expected comment format: retag anuket-x.y.z if [[ "${GERRIT_EVENT_TYPE:-}" == "comment-added" ]]; then RELEASE_VERSION=$(echo "$GERRIT_EVENT_COMMENT_TEXT" | grep 'retag' | awk '{print $2}') fi diff --git a/jjb/releng/opnfv-docker.yaml b/jjb/releng/opnfv-docker.yaml index e565ea7a0..12983dd7a 100644 --- a/jjb/releng/opnfv-docker.yaml +++ b/jjb/releng/opnfv-docker.yaml @@ -50,7 +50,7 @@ extra_build_args: "" # This is the dockerhub repo the image will be pushed to as - # 'opnfv/{dockerrepo}. See: DOCKER_REPO_NAME parameter. + # 'anuket/{dockerrepo}. See: DOCKER_REPO_NAME parameter. # 'project' is the OPNFV repo we expect to contain the Dockerfile # yamllint disable rule:key-duplicates dockerrepo: @@ -379,7 +379,7 @@ description: "To enable/disable pushing the image to Dockerhub." - string: name: DOCKER_REPO_NAME - default: "opnfv/{dockerrepo}" + default: "anuket/{dockerrepo}" description: "Dockerhub repo to be pushed to." - string: name: DOCKER_DIR |