--- apiVersion: apps/v1 kind: Deployment metadata: name: notification-provider namespace: default labels: tier: notification-provider environment: dev spec: replicas: 1 selector: matchLabels: app: notification-provider tier: notification-provider strategy: rollingUpdate: maxSurge: 1 maxUnavailable: 0 type: RollingUpdate template: metadata: labels: app: notification-provider tier: notification-provider spec: volumes: - name: notification-provider-app-configmap0-dev configMap: defaultMode: 0664 name: notification-provider-app-configmap0-dev containers: - name: app image: gitlab-registry.fedy95.com:5002/dev/notification-provider:test resources: requests: cpu: "125m" memory: "64Mi" limits: cpu: "250m" memory: "128Mi" volumeMounts: - name: notification-provider-app-configmap0-dev mountPath: /var/www/localhost/.env subPath: .env restartPolicy: Always imagePullSecrets: - name: gitlab-docker ...