Kubernetes Pods
-
When you created a Deployment in Module 2, Kubernetes created a Pod to host your application instance. A Pod is Kubernetes abstraction that represents a group of one or more application containers (such as Docker or rkt), and some shared resources for those containers. Those resources include:
+
When you created a Deployment in Module 2, Kubernetes created a Pod to host your application instance. A Pod is a Kubernetes abstraction that represents a group of one or more application containers (such as Docker or rkt), and some shared resources for those containers. Those resources include:
- Shared storage, as Volumes
- Networking, as a unique cluster IP address
From 2495fb890d6fa5346cfbd6230ba08abf579b80c9 Mon Sep 17 00:00:00 2001
From: Francesc Rosas
Date: Tue, 17 Jan 2017 14:57:48 +0000
Subject: [PATCH 5/7] Fix jsonpath
---
docs/getting-started-guides/minikube.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/getting-started-guides/minikube.md b/docs/getting-started-guides/minikube.md
index 65b7893be5..731ad1c9a4 100644
--- a/docs/getting-started-guides/minikube.md
+++ b/docs/getting-started-guides/minikube.md
@@ -225,7 +225,7 @@ Any services of type `NodePort` can be accessed over that IP address, on the Nod
To determine the NodePort for your service, you can use a `kubectl` command like this:
-`kubectl get service $SERVICE --output='jsonpath="{.spec.ports[0].NodePort}"'`
+`kubectl get service $SERVICE --output='jsonpath="{.spec.ports[0].nodePort}"'`
## Persistent Volumes
Minikube supports [PersistentVolumes](http://kubernetes.io/docs/user-guide/persistent-volumes/) of type `hostPath`.
From 4a33f4f44c2648806ca77e60012c970d9968d607 Mon Sep 17 00:00:00 2001
From: Janet Kuo
Date: Tue, 17 Jan 2017 15:16:27 -0800
Subject: [PATCH 6/7] Fix travis failure by bumping go version to 1.7.3
---
.travis.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.travis.yml b/.travis.yml
index 33db17d9e7..791d289e88 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,6 +1,6 @@
language: go
go:
- - 1.6.2
+ - 1.7.3
# Don't want default ./... here:
install:
From 705f74fad0b6b69ed9dc693ba484e378d50f71c7 Mon Sep 17 00:00:00 2001
From: Michael Mrowetz
Date: Fri, 13 Jan 2017 17:16:16 +0900
Subject: [PATCH 7/7] de-duplicated sentence.
---
docs/admin/salt.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/admin/salt.md b/docs/admin/salt.md
index d2479ffff2..ab495521bd 100644
--- a/docs/admin/salt.md
+++ b/docs/admin/salt.md
@@ -6,7 +6,7 @@ title: Configuring Kubernetes with Salt
The Kubernetes cluster can be configured using Salt.
-The Salt scripts are shared across multiple hosting providers, so it's important to understand some background information prior to making a modification to ensure your changes do not break hosting Kubernetes across multiple environments. Depending on where you host your Kubernetes cluster, you may be using different operating systems and different networking configurations. As a result, it's important to understand some background information before making Salt changes in order to minimize introducing failures for other hosting providers.
+The Salt scripts are shared across multiple hosting providers and depending on where you host your Kubernetes cluster, you may be using different operating systems and different networking configurations. As a result, it's important to understand some background information before making Salt changes in order to minimize introducing failures for other hosting providers.
## Salt cluster setup