Widget for code includes + sass

This commit is contained in:
johndmulhausen
2016-03-01 18:17:31 -08:00
parent 49e40dd65e
commit 1b6a08e693
5 changed files with 26 additions and 40 deletions
+1 -21
View File
@@ -102,27 +102,7 @@ volumeMounts:
Example Redis pod definition with a persistent storage volume ([pod-redis.yaml](/docs/user-guide/walkthrough/pod-redis.yaml)):
<!-- BEGIN MUNGE: EXAMPLE pod-redis.yaml -->
```yaml
apiVersion: v1
kind: Pod
metadata:
name: redis
spec:
containers:
- name: redis
image: redis
volumeMounts:
- name: redis-persistent-storage
mountPath: /data/redis
volumes:
- name: redis-persistent-storage
emptyDir: {}
```
[Download example](/docs/user-guide/walkthrough/pod-redis.yaml)
<!-- END MUNGE: EXAMPLE pod-redis.yaml -->
{% include code.html language="yaml" file="pod-redis.yaml" ghlink="https://github.com/kubernetes/kubernetes.github.io/blob/master/docs/user-guide/walkthrough/pod-redis.yaml" %}
Notes: