Add 'frontend/' from commit 'babef04f9ab6e81ed6153681e3e771bb614744be'

git-subtree-dir: frontend
git-subtree-mainline: bfc1a360b6
git-subtree-split: babef04f9a
This commit is contained in:
2026-09-03 14:03:29 +02:00
57 changed files with 11319 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
labels:
app: aplication_front_portefolio
spec:
replicas: 1
selector:
matchLabels:
app: aplication_front_portefolio
template:
metadata:
labels:
app: aplication_front_portefolio
spec:
containers:
- name: nginx
image: front_portefolio:latest
ports:
- name: http
containerPort: 80
protocol: TCP
- name: https
containerPort: 443
protocol: TCP
...
apiVersion: v1
kind: Service
metadata:
name: serveur-portefolio-service
spec:
selector:
app: aplication_front_portefolio
ports:
- name: http
protocol: TCP
port: 80
targetPort: 80
- name: https
protocol: TCP
port: 443
targetPort: 443
type: LoadBalancer
...