updated Darwin support

master
Andrew Coleman 2020-01-03 14:32:19 -05:00
parent 6132bd2ff5
commit 5ed36c45d6
5 changed files with 11 additions and 2 deletions

View File

@ -2,5 +2,5 @@
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
. ~/.bashrc
fi

View File

@ -1,5 +1,6 @@
test -f /etc/bashrc && . /etc/bashrc || true
test -f /etc/bash_completion && . /etc/bash_completion || true
test -f /usr/local/etc/bash_completion && . "/usr/local/etc/bash_completion" || true
test -f $HOME/.bash_aliases && . $HOME/.bash_aliases || true
export MINIKUBE_WANTUPDATENOTIFICATION=true

View File

@ -1,2 +1,4 @@
#!/bin/bash
docker images -q -f dangling=true | xargs --no-run-if-empty --delim='\n' docker rmi
for i in $(docker images -q -f dangling=true) ; do
docker rmi $i
done

2
bin/kubeconfig.bash Normal file
View File

@ -0,0 +1,2 @@
#!/bin/bash
export KUBECONFIG=~/.kube/config:~/.kube/config.preprod

View File

@ -0,0 +1,4 @@
#!/bin/bash
export PATH="/usr/local/opt/openssl@1.1/bin:$PATH"
export LDFLAGS="-L/usr/local/opt/openssl@1.1/lib"
export CPPFLAGS="-I/usr/local/opt/openssl@1.1/include"