apiVersion: apps/v1 kind: Deployment metadata: name: bluecap-website namespace: bluecap-strategies spec: replicas: 2 selector: matchLabels: app: bluecap-website template: metadata: labels: app: bluecap-website spec: containers: - name: website image: ghcr.io/your-org/bluecap-strategies-website:latest imagePullPolicy: IfNotPresent ports: - name: http containerPort: 80 readinessProbe: httpGet: path: /healthz port: http initialDelaySeconds: 5 periodSeconds: 10 livenessProbe: httpGet: path: /healthz port: http initialDelaySeconds: 15 periodSeconds: 20 resources: requests: cpu: 25m memory: 64Mi limits: cpu: 250m memory: 128Mi