Removed unwanted spaces in "configure-projected-volume-storage" file to keep it alligned with other docs (#14228)

This commit is contained in:
Prankul
2019-05-09 00:36:35 +05:30
committed by Kubernetes Prow Robot
parent 36c09f10cb
commit 78b93d7709
@@ -31,37 +31,42 @@ Here is the configuration file for the Pod:
{{< codenew file="pods/storage/projected.yaml" >}} {{< codenew file="pods/storage/projected.yaml" >}}
1. Create the Secrets: 1. Create the Secrets:
```shell
```shell
# Create files containing the username and password: # Create files containing the username and password:
echo -n "admin" > ./username.txt echo -n "admin" > ./username.txt
echo -n "1f2d1e2e67df" > ./password.txt echo -n "1f2d1e2e67df" > ./password.txt
# Package these files into secrets: # Package these files into secrets:
kubectl create secret generic user --from-file=./username.txt kubectl create secret generic user --from-file=./username.txt
kubectl create secret generic pass --from-file=./password.txt kubectl create secret generic pass --from-file=./password.txt
``` ```
1. Create the Pod: 1. Create the Pod:
```shell
kubectl apply -f https://k8s.io/examples/pods/storage/projected.yaml ```shell
``` kubectl apply -f https://k8s.io/examples/pods/storage/projected.yaml
```
1. Verify that the Pod's Container is running, and then watch for changes to 1. Verify that the Pod's Container is running, and then watch for changes to
the Pod: the Pod:
```shell
kubectl get --watch pod test-projected-volume ```shell
``` kubectl get --watch pod test-projected-volume
```
The output looks like this: The output looks like this:
```shell ```shell
NAME READY STATUS RESTARTS AGE NAME READY STATUS RESTARTS AGE
test-projected-volume 1/1 Running 0 14s test-projected-volume 1/1 Running 0 14s
``` ```
1. In another terminal, get a shell to the running Container: 1. In another terminal, get a shell to the running Container:
```shell
kubectl exec -it test-projected-volume -- /bin/sh ```shell
``` kubectl exec -it test-projected-volume -- /bin/sh
```
1. In your shell, verify that the `projected-volume` directory contains your projected sources: 1. In your shell, verify that the `projected-volume` directory contains your projected sources:
```shell
ls /projected-volume/ ```shell
``` ls /projected-volume/
```
{{% /capture %}} {{% /capture %}}
{{% capture whatsnext %}} {{% capture whatsnext %}}