FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
stackrox/dev-tools/debug-helm-chart.sh at master · stackrox/stackrox · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
stackrox
/
stackrox
Public
Notifications
You must be signed in to change notification settings
Fork
190
Star
1.3k
Code
Issues
54
Pull requests
604
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
stackrox
/
dev-tools
/
debug-helm-chart.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
18 lines (13 loc) · 836 Bytes
Breadcrumbs
stackrox
/
dev-tools
/
debug-helm-chart.sh
Copy path
File metadata and controls
executable file
·
18 lines (13 loc) · 836 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!
/usr/bin/env bash
set
-eo pipefail
#
Wrapper around helm to sweeten the development experience by rendering both Helm charts before executing Helm
#
Example testing central-services-chart:
#
./debug-helm-chart.sh upgrade --install --dry-run stackrox-central-services ./stackrox-central-services-chart -n stackrox --set imagePullSecrets.allowNone=true
#
#
Usage: ./debug-helm-chart.sh [NAME] [CHART] [flags]
DIR=
"
$(
cd
"
$(
dirname
"
${BASH_SOURCE[0]}
"
)
"
&&
pwd
)
"
#
Set $IMAGE_DEFAULTS to change the image defaults. Use opensource to use the stackrox-io images.
image_defaults=
${IMAGE_DEFAULTS
:-
"
development_build
"
}
"
$DIR
/roxctl.sh
"
helm output central-services --image-defaults=
"
$image_defaults
"
--remove --debug
"
$DIR
/roxctl.sh
"
helm output secured-cluster-services --image-defaults=
"
$image_defaults
"
--remove --debug
helm
"
$@
"
Back
|
FazBrowse Home
|
New Git URL