Skip to content

Commit

Permalink
fix(k8s): fix install of kubernetes
Browse files Browse the repository at this point in the history
  • Loading branch information
Deavon M. McCaffery committed Apr 11, 2017
1 parent 4977992 commit a3c0e21
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scripts/Darwin/minikube-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ minikube-install() {
brew install docker-machine-driver-xhyve

echo "Setting ownership of docker-machine-driver-xhyve: you will be prompted for your password..."
chown root:wheel $(brew --prefix)/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve
sudo chown root:wheel $(brew --prefix)/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve
sudo chmod u+s $(brew --prefix)/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve

echo "Installing minikube..."
brew install Caskroom/cask/minikube

echo "Configuring minikube to use xhyve..."
minikube config set vm-driver xhvye
minikube config set vm-driver xhyve

if [ ! -f /usr/local/bin/kubectl ]; then
echo "Downloading kubectl..."
Expand Down
3 changes: 3 additions & 0 deletions src/scripts/git-extensions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ git-init() {
# initialize git flow
git flow init -d 1>/dev/null

# create the initial feature
git flow feature start initial

# copy the default gitignore and gitattributes
cp $HOME/.am/prompt/git/gitignore .gitignore 1>/dev/null
cp $HOME/.am/prompt/git/gitattributes .gitattributes 1>/dev/null
Expand Down

0 comments on commit a3c0e21

Please sign in to comment.