diff --git a/versioned_docs/version-2.7/integrations-in-rancher/cloud-marketplace/aws-marketplace-payg-integration/troubleshooting.md b/versioned_docs/version-2.7/integrations-in-rancher/cloud-marketplace/aws-marketplace-payg-integration/troubleshooting.md index b06b08d755a..441e193eda1 100644 --- a/versioned_docs/version-2.7/integrations-in-rancher/cloud-marketplace/aws-marketplace-payg-integration/troubleshooting.md +++ b/versioned_docs/version-2.7/integrations-in-rancher/cloud-marketplace/aws-marketplace-payg-integration/troubleshooting.md @@ -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 -n ` -- Pod container logs: `kubectl logs -n ` -- Describe job: `kubectl describe job -n ` -- Logs from the containers of pods of the job: `kubectl logs -l job-name= -n ` +- 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 diff --git a/versioned_docs/version-2.7/integrations-in-rancher/cloud-marketplace/azure-marketplace-payg-integration/troubleshooting.md b/versioned_docs/version-2.7/integrations-in-rancher/cloud-marketplace/azure-marketplace-payg-integration/troubleshooting.md index 6f27894b08d..882193656c9 100644 --- a/versioned_docs/version-2.7/integrations-in-rancher/cloud-marketplace/azure-marketplace-payg-integration/troubleshooting.md +++ b/versioned_docs/version-2.7/integrations-in-rancher/cloud-marketplace/azure-marketplace-payg-integration/troubleshooting.md @@ -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 -n ` -- Pod container logs: `kubectl logs -n ` -- Describe job: `kubectl describe job -n ` -- Logs from the containers of pods of the job: `kubectl logs -l job-name= -n ` +- 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 diff --git a/versioned_docs/version-2.7/integrations-in-rancher/cloud-marketplace/azure-marketplace-payg-integration/upgrading-rancher-payg-cluster.md b/versioned_docs/version-2.7/integrations-in-rancher/cloud-marketplace/azure-marketplace-payg-integration/upgrading-rancher-payg-cluster.md index d71f1ff83f4..68f4a113461 100644 --- a/versioned_docs/version-2.7/integrations-in-rancher/cloud-marketplace/azure-marketplace-payg-integration/upgrading-rancher-payg-cluster.md +++ b/versioned_docs/version-2.7/integrations-in-rancher/cloud-marketplace/azure-marketplace-payg-integration/upgrading-rancher-payg-cluster.md @@ -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-name --resource-group --cluster-type managedClusters --version +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