Skip to content

Commit

Permalink
apiVersion -> version
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeJeffrey committed Nov 19, 2014
1 parent 4e29068 commit 74ede76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/walkthrough/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ See [pods](../../docs/pods.md) for more details.
Trivially, a single container might be a pod. For example, you can express a simple web server as a pod:

```yaml
apiVersion: v1beta1
version: v1beta1
id: www
desiredState:
manifest:
Expand All @@ -30,7 +30,7 @@ See the [design document](../../DESIGN.md) for more details.
Now that's great for a static web server, but what about persistent storage? We know that the container file system only lives as long as the container does, so we need more persistent storage. To do this, you also declare a ```volume``` as part of your pod, and mount it into a container:

```yaml
apiVersion: v1beta1
version: v1beta1
id: storage
desiredState:
manifest:
Expand Down Expand Up @@ -87,7 +87,7 @@ The examples below are syntactically correct, but some of the images (e.g. kuber
However, often you want to have two different containers that work together. An example of this would be a web server, and a helper job that polls a git repository for new updates:

```yaml
apiVersion: v1beta1
version: v1beta1
id: www
desiredState:
manifest:
Expand Down

0 comments on commit 74ede76

Please sign in to comment.