From bcc207b11fb321459fd18dc0511a59003e58371f Mon Sep 17 00:00:00 2001 From: Michael Cade Date: Wed, 23 Feb 2022 21:44:12 +0000 Subject: [PATCH] update readme --- Days/day55.md | 24 ++++++++++++++++++++---- README.md | 4 ++-- 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/Days/day55.md b/Days/day55.md index 9873230..9117127 100644 --- a/Days/day55.md +++ b/Days/day55.md @@ -1,8 +1,24 @@ +## State and Ingress in Kubernetes +In this closing section of Kubernetes, we are going to take a look at State and ingress. + +Everything we have said so far is about stateless, stateless is really where our applications do not care which network it is using and does not need any permanent storage. Whereas stateful apps, databases for example for such an application to function correctly, you’ll need to ensure that pods can reach each other through a unique identity that does not change (hostnames, IPs...etc.). Examples of stateful applications include MySQL clusters, Redis, Kafka, MongoDB and others. Basically though any application that stores data. + +### Stateful Application + +StatefulSets represent a set of Pods with unique, persistent identities and stable hostnames that Kubernetes maintains regardless of where they are scheduled. The state information and other resilient data for any given StatefulSet Pod is maintained in persistent disk storage associated with the StatefulSet. -Stateful Application -Persistant Volumes | Claims -LAMP Stack > Drupal -Ingress explained + +`kubectl port-forward svc/pacman 9090:80 -n pacman` + + +### Persistant Volumes | Claims + + +### Ingress explained + + +### LAMP Stack > Drupal + diff --git a/README.md b/README.md index 1b959e5..e076014 100644 --- a/README.md +++ b/README.md @@ -87,8 +87,8 @@ This will not cover all things DevOps but it will cover the areas that I feel wi - [✔️] ☸ 51 > [Deploying your first Kubernetes Cluster](Days/day51.md) - [✔️] ☸ 52 > [Setting up a multinode Kubernetes Cluster](Days/day52.md) - [✔️] ☸ 53 > [Rancher Overview - Hands On](Days/day53.md) -- [🚧] ☸ 54 > [Kubernetes Application Deployment](Days/day54.md) -- [] ☸ 55 > [](Days/day55.md) +- [✔️] ☸ 54 > [Kubernetes Application Deployment](Days/day54.md) +- [🚧] ☸ 55 > [](Days/day55.md) ### Learn Infrastructure as Code