Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
k8s-bootstrap
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
c1244665
authored
2022-03-31 10:41:31 -0500
by
Adam Heath
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Add helm plugins before running helmfile.
1 parent
58a85832
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
k8s-bootstrap.yaml
k8s-bootstrap.yaml
View file @
c124466
...
...
@@ -33,10 +33,19 @@ data:
check-mode
:
|
#!/bin/sh
set -ex
if [ $(cat /tmp/git-storage/repo-type) = $1 ]; then
wanted_type="$1"
if [ $(cat /tmp/git-storage/repo-type) = $wanted_type ]; then
shift
"$@"
/tmp/k8s-bootstrap-scripts/run-$wanted_type
"$@"
fi
run-helmfile
:
|
#!/bin/sh
set -ex
helm plugin install https://github.com/mumoshu/helm-x
helm plugin install https://github.com/databus23/helm-diff
helm plugin install https://github.com/aslafy-z/helm-git.git
"$@"
---
apiVersion
:
batch/v1
kind
:
Job
...
...
Please
register
or
sign in
to post a comment