yolo
This commit is contained in:
parent
f69ed577b2
commit
d09c32c1de
40
kustom-webapp/README.md
Normal file
40
kustom-webapp/README.md
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
# Installation
|
||||||
|
```
|
||||||
|
kubectl version
|
||||||
|
```
|
||||||
|
*If you have 1.21 or above of kubectl you will have access to kubectl kustomize which is the recommended method. If you aren't on version 1.21 or above, upgrade kubectl.
|
||||||
|
*You could also download/use the 'kutomize' binary seperatly but the cmds are different.
|
||||||
|
|
||||||
|
|
||||||
|
# Viewing Kustomize Configs - (Using kubectl kustomize integration)
|
||||||
|
```
|
||||||
|
kubectl kustomize .
|
||||||
|
kubectl kustomize overlays/dev/
|
||||||
|
kubectl kustomize overlays/prod/
|
||||||
|
```
|
||||||
|
|
||||||
|
# Applying Kustomize Configs - (Using kubectl kustomize integration)
|
||||||
|
```
|
||||||
|
kubectl apply -k .
|
||||||
|
kubectl apply -k overlays/dev/
|
||||||
|
kubectl apply -k overlays/prod/
|
||||||
|
```
|
||||||
|
Note: if you get field is immutable error, check your configuration and try deleting the resources.
|
||||||
|
|
||||||
|
|
||||||
|
# Creating Namespaces if you dont have them already
|
||||||
|
```
|
||||||
|
kubectl create namespace dev; kubectl create namespace prod;
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
# Accessing the application
|
||||||
|
```
|
||||||
|
minikube service kustom-mywebapp-v1
|
||||||
|
minikube service kustom-mywebapp-v1 -n dev
|
||||||
|
minikube service kustom-mywebapp-v1 -n prod
|
||||||
|
```
|
||||||
|
|
||||||
|
# References:
|
||||||
|
https://github.com/kubernetes-sigs/kustomize/blob/master/README.md
|
||||||
|
https://kubectl.docs.kubernetes.io/guides/config_management/offtheshelf/
|
23
kustom-webapp/base/deployment.yaml
Normal file
23
kustom-webapp/base/deployment.yaml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: mywebapp
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
template:
|
||||||
|
spec: # Pod spec
|
||||||
|
containers:
|
||||||
|
- name: mycontainer
|
||||||
|
image: "devopsjourney1/mywebapp:latest"
|
||||||
|
ports:
|
||||||
|
- containerPort: 80
|
||||||
|
envFrom:
|
||||||
|
- configMapRef:
|
||||||
|
name: mykustom-map
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
memory: "16Mi"
|
||||||
|
cpu: "50m" # 500milliCPUs (1/2 CPU)
|
||||||
|
limits:
|
||||||
|
memory: "128Mi"
|
||||||
|
cpu: "100m"
|
15
kustom-webapp/base/kustomization.yaml
Normal file
15
kustom-webapp/base/kustomization.yaml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
resources:
|
||||||
|
- deployment.yaml
|
||||||
|
- service.yaml
|
||||||
|
|
||||||
|
commonLabels:
|
||||||
|
app: kustomwebapp
|
||||||
|
|
||||||
|
commonAnnotations:
|
||||||
|
app: mykustom-annontations
|
||||||
|
|
||||||
|
namePrefix:
|
||||||
|
kustom-
|
||||||
|
|
||||||
|
nameSuffix:
|
||||||
|
-v1
|
10
kustom-webapp/base/service.yaml
Normal file
10
kustom-webapp/base/service.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: mywebapp
|
||||||
|
spec:
|
||||||
|
ports:
|
||||||
|
- port: 80
|
||||||
|
protocol: TCP
|
||||||
|
name: flask
|
||||||
|
type: NodePort
|
3
kustom-webapp/overlays/dev/config.properties
Normal file
3
kustom-webapp/overlays/dev/config.properties
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
BG_COLOR=#12181b
|
||||||
|
FONT_COLOR=#FFFFFF
|
||||||
|
CUSTOM_HEADER=Welcome to the DEV environment
|
9
kustom-webapp/overlays/dev/kustomization.yaml
Normal file
9
kustom-webapp/overlays/dev/kustomization.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
bases:
|
||||||
|
- ../../base
|
||||||
|
|
||||||
|
patches:
|
||||||
|
- replicas.yaml
|
||||||
|
|
||||||
|
configMapGenerator:
|
||||||
|
- name: mykustom-map
|
||||||
|
env: config.properties
|
6
kustom-webapp/overlays/dev/replicas.yaml
Normal file
6
kustom-webapp/overlays/dev/replicas.yaml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: mywebapp
|
||||||
|
spec:
|
||||||
|
replicas: 2
|
3
kustom-webapp/overlays/prod/config.properties
Normal file
3
kustom-webapp/overlays/prod/config.properties
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
BG_COLOR=#12181b
|
||||||
|
FONT_COLOR=#FFFFFF
|
||||||
|
CUSTOM_HEADER=Welcome to the PROD environment
|
9
kustom-webapp/overlays/prod/kustomization.yaml
Normal file
9
kustom-webapp/overlays/prod/kustomization.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
bases:
|
||||||
|
- ../../base
|
||||||
|
|
||||||
|
patches:
|
||||||
|
- replicas.yaml
|
||||||
|
|
||||||
|
configMapGenerator:
|
||||||
|
- name: mykustom-map
|
||||||
|
env: config.properties
|
6
kustom-webapp/overlays/prod/replicas.yaml
Normal file
6
kustom-webapp/overlays/prod/replicas.yaml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: mywebapp
|
||||||
|
spec:
|
||||||
|
replicas: 5
|
Loading…
Reference in New Issue
Block a user