updated Darwin support
parent
6132bd2ff5
commit
5ed36c45d6
|
@ -2,5 +2,5 @@
|
|||
|
||||
# Get the aliases and functions
|
||||
if [ -f ~/.bashrc ]; then
|
||||
. ~/.bashrc
|
||||
. ~/.bashrc
|
||||
fi
|
||||
|
|
1
.bashrc
1
.bashrc
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/bash
|
||||
export KUBECONFIG=~/.kube/config:~/.kube/config.preprod
|
|
@ -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"
|
Reference in New Issue