Skip to content

Commit

Permalink
2022-10-11 (#66)
Browse files Browse the repository at this point in the history
* release 2022-10-01

* backup

* build.sh

* safe

* backup

* backup

* safe

* readme

* safe

* fixes

* readme

* readme

* readme

* readme

* readme

* readme

* readme

* readme

* readme

* readme

* readme

* readme

* readme

* readme

* readme

* backup

* fixed script

* script

* finalization

* removed todos

* moved run script to latest tag

* readme
  • Loading branch information
ksandermann authored Oct 11, 2022
1 parent 0b3105b commit d0720ec
Show file tree
Hide file tree
Showing 8 changed files with 529 additions and 232 deletions.
24 changes: 16 additions & 8 deletions .bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,22 @@
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
. /etc/bash_completion
fi
source <(kubectl completion bash)
echo "kubectl bash completion installed!"
source <(helm completion bash)
echo "helm bash completion installed!"
source <(oc completion bash)
echo "oc bash completion installed!"
terraform -install-autocomplete
echo "terraform bash completion installed!"
if [ -f /usr/local/bin/kubectl ] ; then
source <(kubectl completion bash)
echo "kubectl bash completion installed!"
fi
if [ -f /usr/local/bin/helm ] ; then
source <(helm completion bash)
echo "helm bash completion installed!"
fi
if [ -f /usr/local/bin/oc ] ; then
source <(oc completion bash)
echo "oc bash completion installed!"
fi
if [ -f /usr/local/bin/terraform ] ; then
terraform -install-autocomplete
echo "terraform bash completion installed!"
fi

######################################################## SOURCE ########################################################
sleep 1
Expand Down
Loading

0 comments on commit d0720ec

Please sign in to comment.