apiVersion: apps/v1 kind: Deployment metadata: name: oligo-tools namespace: olallalab labels: app: oligo-tools spec: replicas: 2 selector: matchLabels: app: oligo-tools template: metadata: labels: app: oligo-tools spec: imagePullSecrets: - name: ghcr-pull-secret containers: - name: oligo-tools image: ghcr.io/alexandrev/oligo-tools:20260705 ports: - containerPort: 8080 name: http resources: requests: cpu: 100m memory: 128Mi limits: cpu: 1000m memory: 512Mi startupProbe: httpGet: path: / port: 8080 periodSeconds: 5 timeoutSeconds: 3 failureThreshold: 12 livenessProbe: httpGet: path: / port: 8080 initialDelaySeconds: 10 periodSeconds: 20 timeoutSeconds: 5 failureThreshold: 3 readinessProbe: httpGet: path: / port: 8080 initialDelaySeconds: 5 periodSeconds: 10 timeoutSeconds: 3 failureThreshold: 3