examples-sync.sh 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #!/bin/bash
  2. # Utility script to update the ansible repo with the latest templates and image
  3. # streams from several github repos
  4. #
  5. # This script should be run from openshift-ansible/roles/openshift_examples
  6. XPAAS_VERSION=ose-v1.4.5
  7. ORIGIN_VERSION=${1:-v3.7}
  8. RHAMP_TAG=2.0.0.GA
  9. EXAMPLES_BASE=$(pwd)/files/examples/${ORIGIN_VERSION}
  10. find ${EXAMPLES_BASE} -name '*.json' -delete
  11. TEMP=`mktemp -d`
  12. pushd $TEMP
  13. if [ ! -d "${EXAMPLES_BASE}" ]; then
  14. mkdir -p ${EXAMPLES_BASE}
  15. fi
  16. wget https://github.com/openshift/origin/archive/master.zip -O origin-master.zip
  17. wget https://github.com/jboss-fuse/application-templates/archive/GA.zip -O fis-GA.zip
  18. wget https://github.com/jboss-openshift/application-templates/archive/${XPAAS_VERSION}.zip -O application-templates-master.zip
  19. wget https://github.com/3scale/rhamp-openshift-templates/archive/${RHAMP_TAG}.zip -O amp.zip
  20. unzip origin-master.zip
  21. unzip application-templates-master.zip
  22. unzip fis-GA.zip
  23. unzip amp.zip
  24. mv origin-master/examples/db-templates/* ${EXAMPLES_BASE}/db-templates/
  25. mv origin-master/examples/quickstarts/* ${EXAMPLES_BASE}/quickstart-templates/
  26. mv origin-master/examples/jenkins/jenkins-*template.json ${EXAMPLES_BASE}/quickstart-templates/
  27. mv origin-master/examples/image-streams/* ${EXAMPLES_BASE}/image-streams/
  28. mv application-templates-${XPAAS_VERSION}/jboss-image-streams.json ${EXAMPLES_BASE}/xpaas-streams/
  29. # fis content from jboss-fuse/application-templates-GA would collide with jboss-openshift/application-templates
  30. # as soon as they use the same branch/tag names
  31. mv application-templates-GA/fis-image-streams.json ${EXAMPLES_BASE}/xpaas-streams/fis-image-streams.json
  32. mv application-templates-GA/quickstarts/* ${EXAMPLES_BASE}/xpaas-templates/
  33. find application-templates-${XPAAS_VERSION}/ -name '*.json' ! -wholename '*secret*' ! -wholename '*demo*' -exec mv {} ${EXAMPLES_BASE}/xpaas-templates/ \;
  34. find 3scale-amp-openshift-templates-${RHAMP_TAG}/ -name '*.yml' -exec mv {} ${EXAMPLES_BASE}/quickstart-templates/ \;
  35. popd
  36. wget https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/master/dotnet_imagestreams.json -O ${EXAMPLES_BASE}/image-streams/dotnet_imagestreams.json
  37. wget https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/master/dotnet_imagestreams_centos.json -O ${EXAMPLES_BASE}/image-streams/dotnet_imagestreams_centos.json
  38. wget https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/master/templates/dotnet-example.json -O ${EXAMPLES_BASE}/quickstart-templates/dotnet-example.json
  39. wget https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/master/templates/dotnet-pgsql-persistent.json -O ${EXAMPLES_BASE}/quickstart-templates/dotnet-pgsql-persistent.json
  40. wget https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/master/templates/dotnet-runtime-example.json -O ${EXAMPLES_BASE}/quickstart-templates/dotnet-runtime-example.json
  41. git diff files/examples