You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
445 B
9 lines
445 B
#!/bin/bash
|
|
|
|
#
|
|
# This script gets the original 3scale template, converts it to JSON,
|
|
# scales down the DeploymentConfig's replicas to 0 and disable triggers.
|
|
#
|
|
|
|
curl -s -o amp.yml https://raw.githubusercontent.com/3scale/3scale-amp-openshift-templates/2.0.0.GA/amp/amp.yml
|
|
yaml2json amp.yml |jq '(.objects[]|select(.kind== "DeploymentConfig").spec.replicas) |= 0 | (.objects[]|select(.kind== "DeploymentConfig").spec.triggers) |= []' > amp.json
|
|
|