Skip to content

Commit

Permalink
This project avoids scripting through addons ...
Browse files Browse the repository at this point in the history
which means we need some scripting to define the production setup.
  • Loading branch information
solsson committed Jul 28, 2017
1 parent 51c3097 commit c481cba
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions prod-yolean.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash
# Combines addons into what we 'kubectl apply -f' to production
set -ex

git fetch
git checkout origin/kafka-011
git checkout -b prod-yolean-$(date +"%Y%m%dT%H%M%S")

for BRANCH in addon-rest addon-kube-events-topic
do
git merge --no-ff $BRANCH -m "prod-yolean merge $BRANCH"
done

0 comments on commit c481cba

Please sign in to comment.