Template demo

This commit is contained in:
John Mulhausen
2016-05-27 17:35:16 -07:00
parent 8345e86658
commit b8f93f63b0
5 changed files with 217 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
---
---
{% include templates/concept-overview.md %}
+32
View File
@@ -0,0 +1,32 @@
---
---
{% assign concept="Replication Controller" %}
{% capture what_is %}
A Replication Controller does x and y and z...(etc, etc, text goes on)
{% endcapture %}
{% capture when_to_use %}
You should use Replication Controller when...
{% endcapture %}
{% capture when_not_to_use %}
You should not use Replication Controller if...
{% endcapture %}
{% capture status %}
The current status of Replication Controllers is...
{% endcapture %}
{% capture required_fields %}
* `kind`: Always `Pod`.
* `apiVersion`: Currently `v1`.
* `metadata`: An object containing:
* `name`: Required if `generateName` is not specified. The name of this pod.
It must be an
[RFC1035](https://www.ietf.org/rfc/rfc1035.txt) compatible value and be
unique within the namespace.
{% endcapture %}
{% include templates/concept-overview.md %}
+6
View File
@@ -0,0 +1,6 @@
---
---
- [Blank page that is trying to use template](blank/)
- [Partially filled out page](partial/)
- [Completely filled out page](filledout/)
+6
View File
@@ -0,0 +1,6 @@
---
---
{% assign concept="Replication Controller" %}
{% include templates/concept-overview.md %}