-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
613ed69
commit 0d94c2d
Showing
32 changed files
with
1,651 additions
and
1,625 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,9 +7,25 @@ pre-commit install --install-hooks | |
TEMP_COMPLETION_FOLDER="${HOME}/bash_completion.d" | ||
COMPLETION_FOLDER="/etc/bash_completion.d" | ||
mkdir -p ${TEMP_COMPLETION_FOLDER} | ||
BINARIES=("ct") | ||
BINARIES=("ct" "minikube") | ||
for binary in "${BINARIES[@]}" | ||
do | ||
$binary completion bash > ${TEMP_COMPLETION_FOLDER}/$binary | ||
sudo mv ${TEMP_COMPLETION_FOLDER}/$binary ${COMPLETION_FOLDER}/$binary | ||
done | ||
|
||
# install helm plugins | ||
|
||
## helm-unittest | ||
helm plugin install https://github.com/helm-unittest/helm-unittest.git | ||
|
||
## helm-schema-gen | ||
helm plugin install https://github.com/KnechtionsCoding/helm-schema-gen.git | ||
|
||
# start minikube | ||
minikube start --addons=ingress --cpus=4 --memory=8g --profile=helm-charts-development | ||
minikube profile helm-charts-development | ||
|
||
# configure git | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "christianhuth" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.