adding in metallb configuration and sample app with auto load balancer working

This commit is contained in:
Arjun Patel
2023-11-16 17:14:20 -08:00
parent 96bd735824
commit be881e0918
5 changed files with 1250 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: sample-app-deployment
spec:
replicas: 3
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: public.ecr.aws/nginx/nginx:1.23
ports:
- name: tcp
containerPort: 80