sync-templates.sh 1005 B

123456789101112131415161718192021
  1. #!/bin/bash
  2. # Utility script to update the ansible repo with the latest templates for
  3. # metrics and logging
  4. #
  5. # This script should be run from
  6. # openshift-ansible/roles/openshift_hosted_templates
  7. ORIGIN_VERSION=v1.4
  8. EXAMPLES_BASE=$(pwd)/files/${ORIGIN_VERSION}
  9. find ${EXAMPLES_BASE} -name '*.json' -delete
  10. TEMP=`mktemp -d`
  11. pushd $TEMP
  12. wget https://raw.githubusercontent.com/openshift/origin-metrics/master/metrics.yaml -O ${EXAMPLES_BASE}/origin/metrics-deployer.yaml
  13. wget https://raw.githubusercontent.com/openshift/origin-metrics/enterprise/metrics.yaml -O ${EXAMPLES_BASE}/enterprise/metrics-deployer.yaml
  14. wget https://raw.githubusercontent.com/openshift/origin-aggregated-logging/master/deployer/deployer.yaml -O ${EXAMPLES_BASE}/origin/logging-deployer.yaml
  15. wget https://raw.githubusercontent.com/openshift/origin-aggregated-logging/enterprise/deployment/deployer.yaml -O ${EXAMPLES_BASE}/enterprise/logging-deployer.yaml
  16. popd
  17. git diff files