Skip to content

Commit

Permalink
Fixing a single quote (#7785)
Browse files Browse the repository at this point in the history
Major contribution here. There was a rogue ‘ that should be a '.
  • Loading branch information
raykrueger authored Mar 6, 2024
1 parent c1972a2 commit b50f3b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ Follow these steps if you want to use your initial cluster to create and manage
* If your workload cluster was created with GitOps or Terraform, the kubeconfig for your new cluster is stored as a secret on the management cluster.
You can get credentials and run the test application as follows:
```bash
kubectl get secret -n eksa-system w01-kubeconfig -o jsonpath={.data.value}' | base64 —decode > w01.kubeconfig
kubectl get secret -n eksa-system w01-kubeconfig -o jsonpath='{.data.value}' | base64 —decode > w01.kubeconfig
export KUBECONFIG=w01.kubeconfig
kubectl apply -f "https://anywhere.eks.amazonaws.com/manifests/hello-eks-a.yaml"
```
Expand Down

0 comments on commit b50f3b5

Please sign in to comment.