summaryrefslogtreecommitdiffstats
path: root/hack
diff options
context:
space:
mode:
authorPep TurrĂ³ Mauri <pep@redhat.com>2017-05-31 18:52:22 +0200
committerPep TurrĂ³ Mauri <pep@redhat.com>2017-06-02 12:31:50 +0200
commit32b7b0aba720502c528d38af74a7b6163d0ec6fa (patch)
tree54b5679a6f1307ce427224147987ab7f83d947c9 /hack
parentd175973070a4dce2055678f9309d2f74517d461e (diff)
downloadopenshift-32b7b0aba720502c528d38af74a7b6163d0ec6fa.tar.gz
openshift-32b7b0aba720502c528d38af74a7b6163d0ec6fa.tar.bz2
openshift-32b7b0aba720502c528d38af74a7b6163d0ec6fa.tar.xz
openshift-32b7b0aba720502c528d38af74a7b6163d0ec6fa.zip
Rename container image to origin-ansible / ose-ansible
As discussed in #4279 the container image is being renamed to openshift/origin-ansible (upstream) and openshift3/ose-ansible (downstream) for the "oc cluster up" use case, and more generally to make it fit the imageConfig.format configuration option. This updates references to the image name accordingly. Also updating references to playbook2image to account for recent moves of the repo/image.
Diffstat (limited to 'hack')
-rwxr-xr-xhack/build-images.sh4
-rwxr-xr-xhack/push-release.sh2
2 files changed, 3 insertions, 3 deletions
diff --git a/hack/build-images.sh b/hack/build-images.sh
index 3e9896caa..ce421178f 100755
--- a/hack/build-images.sh
+++ b/hack/build-images.sh
@@ -7,7 +7,7 @@ set -o pipefail
STARTTIME=$(date +%s)
source_root=$(dirname "${0}")/..
-prefix="openshift/openshift-ansible"
+prefix="openshift/origin-ansible"
version="latest"
verbose=false
options="-f images/installer/Dockerfile"
@@ -44,7 +44,7 @@ if [ "$help" = true ]; then
echo "Options: "
echo " --prefix=PREFIX"
echo " The prefix to use for the image names."
- echo " default: openshift/openshift-ansible"
+ echo " default: openshift/origin-ansible"
echo
echo " --version=VERSION"
echo " The version used to tag the image"
diff --git a/hack/push-release.sh b/hack/push-release.sh
index 8639143af..131ed83ca 100755
--- a/hack/push-release.sh
+++ b/hack/push-release.sh
@@ -12,7 +12,7 @@ set -o pipefail
STARTTIME=$(date +%s)
OS_ROOT=$(dirname "${BASH_SOURCE}")/..
-PREFIX="${PREFIX:-openshift/openshift-ansible}"
+PREFIX="${PREFIX:-openshift/origin-ansible}"
# Go to the top of the tree.
cd "${OS_ROOT}"