apiVersion: apps/v1 kind: Deployment metadata: name: medicine-svc namespace: gooseek labels: app: medicine-svc app.kubernetes.io/name: medicine-svc app.kubernetes.io/part-of: gooseek spec: replicas: 2 selector: matchLabels: app: medicine-svc template: metadata: labels: app: medicine-svc spec: containers: - name: medicine-svc image: gooseek/backend:latest env: - name: SERVICE value: "medicine-svc" - name: PORT value: "3037" - name: LLM_PROVIDER value: "timeweb" envFrom: - configMapRef: name: gooseek-config - secretRef: name: gooseek-secrets ports: - containerPort: 3037 name: http livenessProbe: httpGet: path: /health port: 3037 initialDelaySeconds: 10 periodSeconds: 20 readinessProbe: httpGet: path: /health port: 3037 initialDelaySeconds: 5 periodSeconds: 15 resources: requests: cpu: 150m memory: 192Mi limits: cpu: 700m memory: 512Mi --- apiVersion: v1 kind: Service metadata: name: medicine-svc namespace: gooseek spec: type: ClusterIP selector: app: medicine-svc ports: - port: 3037 targetPort: 3037 name: http