-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c87bb25
commit 2c6ec45
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -351,6 +351,13 @@ subjects: | |
namespace: kube-system | ||
``` | ||
After a moment, you should see the cloud controller manager pod was successfully deployed. | ||
Check failure on line 354 in docs/src/snap/howto/storage/cloud.md GitHub Actions / markdown-lintLine length
Check failure on line 354 in docs/src/snap/howto/storage/cloud.md GitHub Actions / markdown-lintLine length
|
||
``` | ||
NAME READY STATUS RESTARTS AGE | ||
aws-cloud-controller-manager-ndbtq 1/1 Running 1 (3h51m ago) 9h | ||
``` | ||
## Deploy the EBS CSI Driver | ||
Now that the cloud controller manager is deployed and can communicate with AWS, | ||
|
@@ -396,6 +403,13 @@ Once the command completes, you can verify the pods are successfully deployed: | |
kubectl get pods -n kube-system -l app.kubernetes.io/name=aws-ebs-csi-driver | ||
``` | ||
``` | ||
NAME READY STATUS RESTARTS AGE | ||
ebs-csi-controller-78bcd46cf8-5zk8q 5/5 Running 2 (3h48m ago) 8h | ||
ebs-csi-controller-78bcd46cf8-g7l5h 5/5 Running 1 (3h48m ago) 8h | ||
ebs-csi-node-nx6rg 3/3 Running 0 9h | ||
``` | ||
The status of all pods should be "Running". | ||
<!-- LINKS --> | ||
|