Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Merge pull request #43 from TheNewNormal/v0.2.7
Browse files Browse the repository at this point in the history
v0.2.7
  • Loading branch information
rimusz committed Jun 7, 2016
2 parents 691a60f + a6e46e1 commit 4f94967
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/Kube-Cluster/Kube-Cluster-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.2.6</string>
<string>0.2.7</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>57</string>
<string>61</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key>
Expand Down
Binary file modified src/bin/corectl
Binary file not shown.
Binary file modified src/bin/helmc
Binary file not shown.
12 changes: 6 additions & 6 deletions src/bin/install_deis
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ helmc repo add deis https://github.com/deis/charts
# get the latest version of all Charts from all repos
helmc up
# delete the old folder if such exists
rm -rf ~/.helmc/workspace/charts/workflow-rc1-kube-cluster > /dev/null 2>&1
rm -rf ~/.helmc/workspace/charts/workflow-rc2-kube-cluster > /dev/null 2>&1
# fetch Deis Workflow Chart to your helmc's working directory
helmc fetch deis/workflow-rc1 workflow-rc1-kube-cluster
helmc fetch deis/workflow-rc2 workflow-rc2-kube-cluster
# run helmc generate
helmc generate -x manifests workflow-rc1-kube-cluster
helmc generate -x manifests workflow-rc2-kube-cluster
# pin router to node worker1
echo " nodeSelector:" >> ~/.helmc/workspace/charts/workflow-rc1-kube-cluster/manifests/deis-router-rc.yaml
echo " node: worker1" >> ~/.helmc/workspace/charts/workflow-rc1-kube-cluster/manifests/deis-router-rc.yaml
echo " nodeSelector:" >> ~/.helmc/workspace/charts/workflow-rc2-kube-cluster/manifests/deis-router-rc.yaml
echo " node: worker1" >> ~/.helmc/workspace/charts/workflow-rc2-kube-cluster/manifests/deis-router-rc.yaml
# Install Deis PaaS
helmc install workflow-rc1-kube-cluster
helmc install workflow-rc2-kube-cluster

# Install deis client
current_folder=$(pwd)
Expand Down
4 changes: 3 additions & 1 deletion src/bin/kubectl
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

cmd=($HOME/kube-cluster/kube/kubectl --kubeconfig="$HOME/kube-cluster/kube/kubeconfig" "${@+$@}")
###cmd=($HOME/kube-cluster/kube/kubectl --kubeconfig="$HOME/kube-cluster/kube/kubeconfig" "${@+$@}")

cmd=($HOME/kube-cluster/kube/kubectl --kubeconfig="${KUBE_CONFIG:-$HOME/kube-cluster/kube/kubeconfig}" "${@+$@}")

"${cmd[@]}"

0 comments on commit 4f94967

Please sign in to comment.