ci(global): go through and make sure all related files are working and good to go

This commit is contained in:
2026-04-08 03:04:58 +00:00
parent 546bf65b8b
commit e88d21fa35
13 changed files with 584 additions and 145 deletions
+34
View File
@@ -0,0 +1,34 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: optima-worker
namespace: optima
spec:
selector:
matchLabels:
app: optima-worker
replicas: 1
template:
metadata:
labels:
app: optima-worker
spec:
containers:
- name: optima-worker
image: ghcr.io/horizonstacksoftware/optima-worker:latest
imagePullPolicy: Always
env:
- name: MANAGER_SOCKET_URL
value: "http://optima-api.optima.svc.cluster.local:8671"
envFrom:
- secretRef:
name: api-env-secret
resources:
requests:
memory: "128Mi"
cpu: "100m"
limits:
memory: "512Mi"
cpu: "1000m"
imagePullSecrets:
- name: github-container-registry