Skip to content

Commit

Permalink
Add stateless workload description
Browse files Browse the repository at this point in the history
  • Loading branch information
rosehgal committed Sep 26, 2020
1 parent 5fafa53 commit 84e6883
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,9 @@ This is not exclusive guide to learn Kubernetes from scratch, rahter this is jus
- [Replicaset](#replicasets)
- [Services](#services)
- [LoadBalancer Service](#loadbalancer-service)
- [Namespaces](#namespaces)
- [Context](#context)
- [Config](#config)
1. **Kubernetes network manager**
1. [**Kubernetes network manager**](#kubernetes-network-manager)
- I will pick up the plugin called [Flannel](https://github.com/coreos/flannel#flannel).
1. **Stateless Workload**
1. [**Stateless Workload**](#stateless-workloads)
- Replicasets & Deployments
1. **Stateful Workloads**
- Persistent Volumes
Expand All @@ -33,10 +30,10 @@ This is not exclusive guide to learn Kubernetes from scratch, rahter this is jus
- Java app deployment with Mysql PV & PVC.
- Setting up LB service to connect to Springboot application.
- A short discussion about Cloud Config Manager(CCM)
1. **Understanding**:
- Namespaces
- Context
- Config
1. [**Understanding** advance kubernetes resources](#advance-kubernetes-resources):
- [Namespaces](#namespaces)
- [Context](#context)
- [Config](#config)
1. **Next steps**


Expand Down Expand Up @@ -523,4 +520,10 @@ root@vagrant:/home/vagrant/kubedata#
| +------> NGINX | |
| +---------+ |
+---------------------------------------------+
```
```

## Stateless workloads
- Deployments and Replicasets that we had deployed so far are stateless workloads.
- There is no state related information stored at Pods/Service, so request from kube-proxy via serivce resource can be routed to any of the Pod in the cluster.
- This constitutes stateless workload.
- Next section is to create a Stateful workload.

0 comments on commit 84e6883

Please sign in to comment.