feat: tp5, pas fini (7.4 commencé)

This commit is contained in:
Emi BOUCLY 2025-11-12 16:51:07 +01:00
parent 1fef95a37f
commit 83775e9dc0
18 changed files with 466 additions and 0 deletions

15
tp5/web_service.yaml Normal file
View file

@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
name: app
namespace: {{ .Values.namespace }}
spec:
selector:
app: web
ports:
- name: http-app
protocol: TCP
port: {{ .Values.web.port }}
targetPort: 5000
nodePort: {{ .Values.web.nodePort }}
type: {{ .Values.web.serviceType | default "ClusterIP" }}