Contains necessary scripts for the toolchain to deploy the app in Bluemix. Requirements are having a Bluemix account, deployed Cluster in Bluemix container service, and a Github account.
The script for Travis. It runs build and checks if the build has passed or failed.
The script for modifying the yaml files in the core folder and setup.yaml.
- Usage:
replace_ip_<your-os>.sh
- replaces every instance of
169.47.241.213in the yaml files inside your core folder and setup.yaml to the IP of your cluster (found by executingkubectl get nodes).
replace_ip_<your-os>.sh <IP-ADDRESS>
- replaces every instance of
<IP-ADDRESS>to the IP of your cluster (found by executingkubectl get nodes). - Ex:
replace_ip_OSX.sh 169.47.241.213replaces every169.47.241.213in the files mentioned above.
replace_ip_<your-os>.sh <ip-to-be-replaced> <IP-ADDRESS>
- replaces every instance of
<ip-to-be-replaced>to<IP-ADDRESS> - Ex:
replace_ip_OSX.sh 169.47.241.213 192.168.99.100replaces every169.47.241.213to192.168.99.100