Updated placeholder values with $FOO_FOO

This commit is contained in:
LucasSaintarbor
2024-01-09 14:45:17 -08:00
parent 044dd0b8e9
commit fa71d3a9be
3 changed files with 9 additions and 9 deletions
@@ -14,10 +14,10 @@ kubectl get pods --all-namespaces
If a pod is not in a `Running` state, you can attempt to find the root cause with the following commands:
- Describe pod: `kubectl describe pod <pod name> -n <namespaces>`
- Pod container logs: `kubectl logs <pod name> -n <namespaces>`
- Describe job: `kubectl describe job <job name> -n <namespaces>`
- Logs from the containers of pods of the job: `kubectl logs -l job-name=<job name> -n <namespaces>`
- Describe pod: `kubectl describe pod $POD_NAME -n $NAMESPACE`
- Pod container logs: `kubectl logs $POD_NAME -n $NAMESPACE`
- Describe job: `kubectl describe job $JOB_NAME -n $NAMESPACE`
- Logs from the containers of pods of the job: `kubectl logs -l job-name=$JOB_NAME -n $NAMESPACE`
## Recovering from Failed Pods
@@ -44,10 +44,10 @@ kubectl get pods --all-namespaces
If a pod is not in Running state, you can attempt to find the root cause with the following commands:
- Describe pod: `kubectl describe pod <pod name> -n <namespaces>`
- Pod container logs: `kubectl logs <pod name> -n <namespaces>`
- Describe job: `kubectl describe job <job name> -n <namespaces>`
- Logs from the containers of pods of the job: `kubectl logs -l job-name=<job name> -n <namespaces>`
- Describe pod: `kubectl describe pod $POD_NAME -n $NAMESPACE`
- Pod container logs: `kubectl logs $POD_NAME -n $NAMESPACE`
- Describe job: `kubectl describe job $JOB_NAME -n $NAMESPACE`
- Logs from the containers of pods of the job: `kubectl logs -l job-name=$JOB_NAME -n $NAMESPACE`
## Rancher Usage Record Not found
@@ -7,7 +7,7 @@ The Azure Marketplace PAYG offering is periodically updated as a new version of
To update to the latest version of the Rancher Prime PAYG offering supported in the marketplace listing, run the following command in the cluster Cloud Shell:
```shell
az k8s-extension update --name <cluster extension resource name> --cluster-name <cluster name> --resource-group <resource group> --cluster-type managedClusters --version <version to be upgraded>
az k8s-extension update --name $CLUSTER_EXTENSION_RESOURCE_NAME --cluster-name $CLUSTER_NAME --resource-group $RESOURCE_GROUP --cluster-type managedClusters --version $VERSION_TO_BE_UPGRADED
```
:::note