Skip to content
Snippets Groups Projects
Commit 0cd0aedf authored by 9devops9's avatar 9devops9 🔥
Browse files

Helm-Commands

parent 67412f50
No related branches found
No related tags found
No related merge requests found
...@@ -49,8 +49,12 @@ helm install RELEASE_NAME ./CHART_NAME/ -n NAMESPACE_NAME -f FILE_NAME.yaml --cr ...@@ -49,8 +49,12 @@ helm install RELEASE_NAME ./CHART_NAME/ -n NAMESPACE_NAME -f FILE_NAME.yaml --cr
helm install RELEASE_NAME REPOSITORY_NAME/CHART_NAME helm install RELEASE_NAME REPOSITORY_NAME/CHART_NAME
helm install RELEASE_NAME REPOSITORY_NAME/CHART_NAME -n NAMESPACE_NAME helm install RELEASE_NAME REPOSITORY_NAME/CHART_NAME -n NAMESPACE_NAME
helm install RELEASE_NAME REPOSITORY_NAME/CHART_NAME -n NAMESPACE_NAME --set replicaCount=NO --kube-context=CONTEXT_NAME helm install RELEASE_NAME REPOSITORY_NAME/CHART_NAME -n NAMESPACE_NAME --set replicaCount=NO --kube-context=CONTEXT_NAME
helm install RELEASE_NAME REPOSITORY_NAME/CHART_NAME --namespace NAMESPACE_NAME
helm install RELEASE_NAME REPOSITORY_NAME/CHART_NAME --namespace NAMESPACE_NAME -f FILE_NAME.yaml helm install RELEASE_NAME REPOSITORY_NAME/CHART_NAME --namespace NAMESPACE_NAME -f FILE_NAME.yaml
[Inspect] Helm v2
helm inspect values REPOSITORY_NAME/CHART_NAME
[Lint] # validating [Lint] # validating
helm lint CHART_NAME helm lint CHART_NAME
helm lint ./CHART_NAME helm lint ./CHART_NAME
...@@ -103,12 +107,13 @@ helm search repo CHART_NAME ...@@ -103,12 +107,13 @@ helm search repo CHART_NAME
[Status] [Status]
helm status RELEASE_NAME helm status RELEASE_NAME
[Show] [Show] Helm v3
helm show all CHART_NAME # inspects a chart (directory, file, or URL) and displays all its content (values.yaml, Chart.yaml, README) helm show all CHART_NAME # inspects a chart (directory, file, or URL) and displays all its content (values.yaml, Chart.yaml, README)
helm show chart CHART_NAME # inspects a chart (directory, file, or URL) and displays the contents of the Chart.yaml file helm show chart CHART_NAME # inspects a chart (directory, file, or URL) and displays the contents of the Chart.yaml file
helm show chart REPOSITORY_NAME/CHART_NAME helm show chart REPOSITORY_NAME/CHART_NAME
helm show readme CHART_NAME # inspects a chart (directory, file, or URL) and displays the contents of the README file helm show readme CHART_NAME # inspects a chart (directory, file, or URL) and displays the contents of the README file
helm show values CHART_NAME # inspects a chart (directory, file, or URL) and displays the contents of the values.yaml file helm show values CHART_NAME # inspects a chart (directory, file, or URL) and displays the contents of the values.yaml file
helm show values REPOSITORY_NAME/CHART_NAME
[Template] # validating [Template] # validating
helm template CHART_NAME helm template CHART_NAME
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment