Deploy Admin UI
To finally deploy the Admin UI, run the following command.
kubectl apply -f cloud-proxy-ui-deployment.yaml --validate
To see the status of the deployment run kubectl get deployments
, the output should indicate the cloud-proxy-ui
deployment was successful (ready 1/1).
# kubectl get deployments
NAME READY UP-TO-DATE AVAILABLE AGE
cloud-proxy-ui 1/1 1 1 2m38s
Also check the status of the created pods.
# kubectl get pods
NAME READY STATUS RESTARTS AGE
cloud-proxy-ui-7947857874-f4bnp 5/5 Running 0 2m56s
Note our persistent storage has now become claimed (bound).
# kubectl get pvc
NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE
cloud-proxy-ui Bound pvc-13b65f10-dcc6-4f32-a695-2d7a77348c65 10Gi RWO default 5m39s
The persistent volume it is bound to is shown by the following command.
# kubectl get pv
NAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS CLAIM STORAGECLASS REASON AGE
pvc-13b65f10-dcc6-4f32-a695-2d7a77348c65 10Gi RWO Delete Bound default/cloud-proxy-ui default 2m17s