diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-11-04 11:04:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-04 11:04:44 -0400 |
commit | 35db78f391f41e962903dbe9174efc7052948a15 (patch) | |
tree | 976232541e2735250a8eb70aed366352ec4087c1 /roles/openshift_examples/examples-sync.sh | |
parent | 3f3b757c0e3ff81b3777f01a98302ee8392ec289 (diff) | |
parent | 47a31c4d692479242eefaa5ec64ddf27d2775b0f (diff) | |
download | openshift-35db78f391f41e962903dbe9174efc7052948a15.tar.gz openshift-35db78f391f41e962903dbe9174efc7052948a15.tar.bz2 openshift-35db78f391f41e962903dbe9174efc7052948a15.tar.xz openshift-35db78f391f41e962903dbe9174efc7052948a15.zip |
Merge pull request #2721 from sdodson/image-stream-sync
Image stream sync
Diffstat (limited to 'roles/openshift_examples/examples-sync.sh')
-rwxr-xr-x | roles/openshift_examples/examples-sync.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/roles/openshift_examples/examples-sync.sh b/roles/openshift_examples/examples-sync.sh index b176ce440..d8c45dbc6 100755 --- a/roles/openshift_examples/examples-sync.sh +++ b/roles/openshift_examples/examples-sync.sh @@ -9,7 +9,6 @@ XPAAS_VERSION=ose-v1.3.3 ORIGIN_VERSION=${1:-v1.4} EXAMPLES_BASE=$(pwd)/files/examples/${ORIGIN_VERSION} find ${EXAMPLES_BASE} -name '*.json' -delete -find ${EXAMPLES_BASE} -name '*.yaml' -delete -exclude registry-console.json TEMP=`mktemp -d` pushd $TEMP @@ -23,7 +22,7 @@ cp origin-master/examples/jenkins/jenkins-*template.json ${EXAMPLES_BASE}/quicks cp origin-master/examples/image-streams/* ${EXAMPLES_BASE}/image-streams/ mv application-templates-${XPAAS_VERSION}/jboss-image-streams.json ${EXAMPLES_BASE}/xpaas-streams/ find application-templates-${XPAAS_VERSION}/ -name '*.json' ! -wholename '*secret*' ! -wholename '*demo*' -exec mv {} ${EXAMPLES_BASE}/xpaas-templates/ \; -wget https://raw.githubusercontent.com/jboss-fuse/application-templates/master/fis-image-streams.json -O ${EXAMPLES_BASE}/xpaas-streams/fis-image-streams.json +wget https://raw.githubusercontent.com/jboss-fuse/application-templates/GA/fis-image-streams.json -O ${EXAMPLES_BASE}/xpaas-streams/fis-image-streams.json wget https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/master/dotnet_imagestreams.json -O ${EXAMPLES_BASE}/image-streams/dotnet_imagestreams.json wget https://raw.githubusercontent.com/openshift/origin-metrics/master/metrics.yaml -O ${EXAMPLES_BASE}/infrastructure-templates/origin/metrics-deployer.yaml wget https://raw.githubusercontent.com/openshift/origin-metrics/enterprise/metrics.yaml -O ${EXAMPLES_BASE}/infrastructure-templates/enterprise/metrics-deployer.yaml |