From 19ab3689322b77ca8c76d1669fe6b136229bc9d4 Mon Sep 17 00:00:00 2001 From: Antonin Filippi Date: Mon, 21 Apr 2025 18:56:06 +0000 Subject: [PATCH] Supprimer z2/deployment.yaml --- z2/deployment.yaml | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 z2/deployment.yaml diff --git a/z2/deployment.yaml b/z2/deployment.yaml deleted file mode 100644 index 37e92df..0000000 --- a/z2/deployment.yaml +++ /dev/null @@ -1,40 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: web-app-deployment - namespace: my-app -spec: - replicas: 2 - selector: - matchLabels: - app: web-app - template: - metadata: - labels: - app: web-app - spec: - containers: - - name: web-app-container - image: antonin193/simple-web-app:latest - imagePullPolicy: Always - ports: - - containerPort: 5000 - resources: - requests: - memory: "64Mi" - cpu: "100m" - limits: - memory: "128Mi" - cpu: "200m" - readinessProbe: - httpGet: - path: / - port: 5000 - initialDelaySeconds: 5 - periodSeconds: 10 - livenessProbe: - httpGet: - path: / - port: 5000 - initialDelaySeconds: 10 - periodSeconds: 20