apiVersion: apps/v1 kind: Deployment metadata: name: labd spec: replicas: 1 selector: matchLabels: app: labd template: metadata: labels: app: labd spec: containers: - name: labd image: mysources.co.uk/michal/lab/labd:latest imagePullPolicy: Always ports: - containerPort: 3100 envFrom: - configMapRef: name: labd-config - secretRef: name: labd-secrets livenessProbe: httpGet: path: /health/live port: 3100 initialDelaySeconds: 10 periodSeconds: 15 readinessProbe: httpGet: path: /health/ready port: 3100 initialDelaySeconds: 5 periodSeconds: 10 resources: requests: cpu: 100m memory: 128Mi limits: cpu: 500m memory: 512Mi