apiVersion: apps/v1 kind: Deployment metadata: name: oligo-tools namespace: olallalab labels: app: oligo-tools spec: replicas: 1 selector: matchLabels: app: oligo-tools template: metadata: labels: app: oligo-tools spec: containers: - name: oligo-tools image: alexandrev/oligo-tools:20231223 ports: - containerPort: 8080 name: http resources: limits: cpu: 1000m memory: 512Mi livenessProbe: httpGet: path: / port: 8080 initialDelaySeconds: 10 periodSeconds: 20 readinessProbe: httpGet: path: / port: 8080 initialDelaySeconds: 5 periodSeconds: 10 startupProbe: tcpSocket: port: 8080 failureThreshold: 1 periodSeconds: 240 timeoutSeconds: 240