From 74f80841af28d7184d5de3248820abf33e44c952 Mon Sep 17 00:00:00 2001 From: Chris Negus Date: Tue, 5 Dec 2017 14:24:36 -0600 Subject: [PATCH 1/2] Created glossary term for image. --- _data/glossary/image.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 _data/glossary/image.yaml diff --git a/_data/glossary/image.yaml b/_data/glossary/image.yaml new file mode 100644 index 0000000000..d6ed55e004 --- /dev/null +++ b/_data/glossary/image.yaml @@ -0,0 +1,9 @@ +id: image +name: Image +tags: +- fundamental +short-description: > + Stored instance of a container that holds a set of software needed to run an application. +long-description: > + A way of packaging software that allows it to be stored in a container registry, pulled to a local system, and run as an application. Meta data is included in the image that can indicate what executable to run, who built it, and other information. + From 33bf8f8a0b317b4d5ac8ad1395da627e07b75dd3 Mon Sep 17 00:00:00 2001 From: Chris Negus Date: Tue, 5 Dec 2017 15:06:50 -0600 Subject: [PATCH 2/2] Added glossary definition: Replication Controller. --- _data/glossary/replication-controller.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 _data/glossary/replication-controller.yaml diff --git a/_data/glossary/replication-controller.yaml b/_data/glossary/replication-controller.yaml new file mode 100644 index 0000000000..6009b49c8b --- /dev/null +++ b/_data/glossary/replication-controller.yaml @@ -0,0 +1,9 @@ +id: replication-controller +name: Replication Controller +tags: +- fundamental +short-description: > + Kubernetes service that ensures a specific number of instances of a pod are always running. +long-description: > + Will automatically add or remove running instances of a pod, based on a set value for that pod. Allows the pod to return to the defined number of instances if pods are deleted or if too many are started by mistake. +