Skip to content

Commit c481cba

Browse files
committed
This project avoids scripting through addons ...
which means we need some scripting to define the production setup.
1 parent 51c3097 commit c481cba

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

prod-yolean.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
# Combines addons into what we 'kubectl apply -f' to production
3+
set -ex
4+
5+
git fetch
6+
git checkout origin/kafka-011
7+
git checkout -b prod-yolean-$(date +"%Y%m%dT%H%M%S")
8+
9+
for BRANCH in addon-rest addon-kube-events-topic
10+
do
11+
git merge --no-ff $BRANCH -m "prod-yolean merge $BRANCH"
12+
done

0 commit comments

Comments
 (0)