Merge branch 'new-content-sep-2018' of github.com:jpetazzo/container.training into new-content-sep-2018

This commit is contained in:
Jerome Petazzoni
2018-09-08 07:16:56 -05:00
3 changed files with 9 additions and 9 deletions

View File

@@ -22,7 +22,7 @@
- These resources have a perfect YAML representation
- All we do is manpulating these YAML representations
- All we do is manipulating these YAML representations
(`kubectl run` generates a YAML file that gets applied)
@@ -148,7 +148,7 @@
- Gitkube is a git server (or "git remote")
- After making changes to the repository, we push to GitKube
- After making changes to the repository, we push to Gitkube
- Gitkube applies the resources to the cluster
@@ -234,6 +234,6 @@
(see the [documentation](https://github.com/hasura/gitkube/blob/master/docs/remote.md) for more details)
- Gitkube can also deploy a Helm Charts
- Gitkube can also deploy Helm Charts
(instead of raw YAML files)

View File

@@ -46,7 +46,7 @@
(look at [jpetazzo/aiguillage](https://github.com/jpetazzo/aiguillage) for a minimal reverse proxy configuration using NGINX)
- Most of these options require to update/edit configuration files after each change
- Most of these options require us to update/edit configuration files after each change
- Some of them can pick up virtual hosts and backends from a configuration store
@@ -176,7 +176,7 @@
- We are going to use a Daemon Set so that each node can accept connections
- We will do two minor changes to the [YAML provided my Traefik](https://github.com/containous/traefik/blob/master/examples/k8s/traefik-ds.yaml):
- We will do two minor changes to the [YAML provided by Traefik](https://github.com/containous/traefik/blob/master/examples/k8s/traefik-ds.yaml):
- enable `hostNetwork`
@@ -503,7 +503,7 @@ spec:
- Annotations can encode special features
(rate-limiting, A/B testing, session stickyness, etc.)
(rate-limiting, A/B testing, session stickiness, etc.)
---

View File

@@ -212,7 +212,7 @@ If you want to use an external key/value store, add one of the following:
- It is also possible to mark a Storage Class as "default"
(it will be used if a `volumeClaimTeamplate` doesn't specify one)
(it will be used if a `volumeClaimTemplate` doesn't specify one)
---
@@ -235,7 +235,7 @@ parameters:
- It says "use Portworx to create volumes"
- It tells to Portworx "keep 2 replicas of these volumes"
- It tells Portworx to "keep 2 replicas of these volumes"
- It marks the Storage Class as being the default one
@@ -497,7 +497,7 @@ By "disrupt" we mean: "disconnect it from the network".
.exercise[
- Look on which node the pod is now running
- Look at which node the pod is now running on
```bash
kubectl get pod postgres-0 -o wide
```