apiVersion: apps/v1 kind: Deployment metadata: name: web-landing namespace: irc-josie-cloud spec: replicas: 1 selector: matchLabels: app: web-landing template: metadata: labels: app: web-landing spec: containers: - name: web-landing image: image-registry.openshift-image-registry.svc:5000/irc-josie-cloud/web-landing:latest ports: - containerPort: 8080 name: http readinessProbe: httpGet: path: / port: 8080 initialDelaySeconds: 3 resources: requests: memory: 32Mi cpu: 25m limits: memory: 128Mi cpu: 250m