diff --git a/apps/nginx/deployment.yaml b/apps/nginx/deployment.yaml deleted file mode 100644 index a2ae103..0000000 --- a/apps/nginx/deployment.yaml +++ /dev/null @@ -1,48 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: nginx - namespace: nginx - labels: - app: nginx -spec: - replicas: 2 - selector: - matchLabels: - app: nginx - template: - metadata: - labels: - app: nginx - spec: - containers: - - name: nginx - image: nginx:1.25-alpine - ports: - - containerPort: 80 - resources: - requests: - cpu: 50m - memory: 64Mi - limits: - cpu: 200m - memory: 128Mi - livenessProbe: - httpGet: - path: / - port: 80 - initialDelaySeconds: 10 - periodSeconds: 30 - readinessProbe: - httpGet: - path: / - port: 80 - initialDelaySeconds: 5 - periodSeconds: 10 - volumeMounts: - - name: nginx-config - mountPath: /etc/nginx/conf.d - volumes: - - name: nginx-config - configMap: - name: nginx-config