Skip to content

Commit 29466b1

Browse files
authored
Merge pull request #310 from sophsoph321/main
Update description for release name for extension operator OOM kill issue
2 parents d4d7317 + ac20277 commit 29466b1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/machine-learning/how-to-troubleshoot-kubernetes-extension.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,16 +87,16 @@ To check the Helm history of the Azure ML extension, use the following commands:
8787
helm list -n azureml
8888

8989
# Get helm history
90-
# Note: <release-name> can be retrieved from the output of the previous command
91-
helm history -n azureml <release-name>
90+
# Note: <release-name> should be the name of your azure ml extension and can be retrieved from the output of the previous command
91+
helm history -n <extension-namespace> azureml
9292
```
9393
There is a Helm history limit of 10 revisions, but this limit applies only to revisions in a non-transient state.
9494
If you see multiple revisions in a pending-rollback or pending-upgrade state in the Helm history output, run the script below to clean up the Helm history on the cluster:
9595
```
9696
#!/bin/bash
9797

9898
# Set release name and namespace
99-
RELEASE_NAME=$1 # release_name is the name of the azure ml extension helm release
99+
RELEASE_NAME=$1 # release-name is the name of the azure ml extension helm release
100100
NAMESPACE=$2 # namespace is the azure ml extension's namespace. Default value is azureml
101101

102102
# Validate input
@@ -136,7 +136,7 @@ How to run the script:
136136
```
137137
chmod +x delete_stuck_helm_secrets.sh
138138

139-
./delete_stuck_helm_secrets.sh <release_name> <extension_namespace>
139+
./delete_stuck_helm_secrets.sh <release-name> <extension-namespace>
140140
```
141141
142142
### Error Code of HealthCheck

0 commit comments

Comments
 (0)