chore: reorder the sections

pull/13/head
Rémy-Christophe Schermesser 5 years ago
parent baeb323ee2
commit 89af75173a

@ -18,7 +18,7 @@ data:
You can apply the file:
```bash
$ kubectl apply -f 11-secrets/01-secrets.
$ kubectl apply -f 10-secrets/01-secrets.yml
secret "mysecret" created
```

@ -0,0 +1,32 @@
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: web
spec:
selector:
matchLabels:
app: nginx # has to match .spec.template.metadata.labels
serviceName: "nginx"
replicas: 3
template:
metadata:
labels:
app: nginx # has to match .spec.selector.matchLabels
spec:
containers:
- name: nginx
image: k8s.gcr.io/nginx-slim:0.8
ports:
- containerPort: 80
name: web
volumeMounts:
- name: www
mountPath: /usr/share/nginx/html
volumeClaimTemplates:
- metadata:
name: www
spec:
accessModes: [ "ReadWriteOnce" ]
resources:
requests:
storage: 1Gi

@ -0,0 +1,100 @@
# Other topics
## Introduction
In this section you will get an overview of others k8s useful features, in order of complexity.
## Namespace
`Namespaces` is the way to support multiple virtual clusters in k8s.
They are intended for use in environments with many users spread across multiple teams, or projects. For clusters with a few to tens of users, you should not need to create or think about `namespaces` at all. Start using `namespaces` when you need the features they provide.
By default, all objects are in the `default` namespace. There is a "hidden" `namespace` where k8s runs services for itself.
Try:
```bash
$ kubectl get namespace
NAME STATUS AGE
default Active 56d
kube-public Active 56d
kube-system Active 56d
```
```bash
$ kubectl get all --namespace=kube-system
[lot of stuff]
```
## `kubeval`
It is a tool to validate your k8s YAML files: <https://github.com/garethr/kubeval>
The easiest integration is with `docker run`, if you files are in the directory `kubernetes`
```bash
docker run -it -v `pwd`/kubernetes:/kubernetes garethr/kubeval kubernetes/**/*
```
## Helm
It is a package manager for k8s: <https://helm.sh/>.
It contains multiple, ready to use, k8s manifest for projects, for example [mysql](https://github.com/helm/charts/tree/master/stable/mysql)
## Stateful Set
Like a `Deployment`, a `StatefulSet` manages Pods that are based on an identical container spec. Unlike a `Deployment`, a `StatefulSet` maintains a sticky identity for each of their Pods. These pods are created from the same spec, but are not interchangeable: each has a persistent identifier that it maintains across any rescheduling.
`StatefulSets` are valuable for applications that require one or more of the following.
* Stable, unique network identifiers, ex: distributed system, like ElasticSearch
* Stable, persistent storage, ex: MySQL
* Ordered, graceful deployment and scaling
* Ordered, automated rolling updates, ex: MySQL Master+Slave
```yaml
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: web
spec:
selector:
matchLabels:
app: nginx # has to match .spec.template.metadata.labels
serviceName: "nginx"
replicas: 3 # by default is 1
template:
metadata:
labels:
app: nginx # has to match .spec.selector.matchLabels
spec:
containers:
- name: nginx
image: k8s.gcr.io/nginx-slim:0.8
ports:
- containerPort: 80
name: web
volumeMounts:
- name: www
mountPath: /usr/share/nginx/html
volumeClaimTemplates:
- metadata:
name: www
spec:
accessModes: [ "ReadWriteOnce" ]
resources:
requests:
storage: 1Gi
```
## Exercises
1. Install `helm`, and use it to install [`redis`](https://github.com/helm/charts/tree/master/stable/redis) in your minikube
2. Configure a stateful set for nginx with a HPA at 1% CPU, in a namespace `staging`
## Clean up
```bash
kubectl delete statefulset,deployment,service,pod --all
```

@ -9,13 +9,15 @@
1. [Deploying my first application: deployment](#deploying-my-first-application-deployment)
1. [Accessing my first application: service](#accessing-my-first-application-service)
1. [Running a background process: cronjob](#running-a-background-process-cronjob)
1. [Running a stateful application: volumes](#running-a-stateful-application-volumes)
1. [Secrets](#secrets)
1. [Liveness and readiness probes, and how it impacts your pods](#liveness-and-readiness-probes,-and-how-it-impacts-your-pods)
1. [Resources, and how it impacts the scheduling](#resources,-and-how-it-impacts-the-scheduling)
1. [HPA, VPA](#hpa-vpa)
1. [Affinity and anti-affinity](#affinity-and-anti-affinity)
1. [Improve the availability of your application: affinity and anti-affinity](#affinity-and-anti-affinity)
1. [Improve the availability of your application: pod disruptions budget](#pdb)
1. [Improve the elasticiy of your applications: HPA, VPA](#hpa-vpa)
1. [Sidecar containers: what, why, and how](#sidecar-containers-what,-why,-and-how)
1. [Running a stateful application: volumes](#running-a-stateful-application-volumes)
1. [Running a stateful application: stateful-sets](#running-a-stateful-application-stateful-sets)
1. [Controllers: what, why, and how](#controllers-what,-why,-and-how)
1. [Operators and CRDs: what, why, and how](#operators-and-crds-what,-why,-and-how)
1. [RBAC](#rbac)
@ -200,53 +202,57 @@ See the dedicated [README](08-service).
See the dedicated [README](09-cronjob).
## Running a stateful application: `volumes`
See the dedicated [README](10-volumes).
## Secrets
See the dedicated [README](11-secrets).
See the dedicated [README](10-secrets).
## Liveness and readiness probes, and how it impacts your pods
See the dedicated [README](12-probes).
See the dedicated [README](11-probes).
## Resources, and how it impacts the scheduling
See the dedicated [README](13-resources).
See the dedicated [README](12-resources).
## Affinity and anti-affinity
See the dedicated [README](14-affinity-anti-affinity).
See the dedicated [README](13-affinity-anti-affinity).
## PDB
See the dedicated [README](15-pdb).
See the dedicated [README](14-pdb).
## HPA, VPA
See the dedicated [README](16-hpa-vpa).
See the dedicated [README](15-hpa-vpa).
## Sidecar containers: what, why, and how
See the dedicated [README](17-sidecar-containers).
See the dedicated [README](16-sidecar-containers).
## Running a stateful application: `volumes`
See the dedicated [README](17-volumes).
## Running a stateful application: `stateful sets`
See the dedicated [README](18-stateful-sets).
## Controllers: what, why, and how
See the dedicated [README](18-controllers).
See the dedicated [README](19-controllers).
## Operators and CRDs: what, why, and how
See the dedicated [README](19-operators).
See the dedicated [README](20-operators).
## RBAC
See the dedicated [README](20-rbac).
See the dedicated [README](21-rbac).
## Good practices
See the dedicated [README](21-good-practices).
See the dedicated [README](99-good-practices).
## Links

Loading…
Cancel
Save