diff --git a/big-agi/big-agi-deployment.yaml b/big-agi/big-agi-deployment.yaml new file mode 100644 index 0000000..39e0e1f --- /dev/null +++ b/big-agi/big-agi-deployment.yaml @@ -0,0 +1,20 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: big-agi-deployment + namespace: big-agi-ns +spec: + replicas: 1 + selector: + matchLabels: + app: big-agi + template: + metadata: + labels: + app: big-agi + spec: + containers: + - name: big-agi-container + image: ghcr.io/enricoros/big-agi + ports: + - containerPort: 3000 diff --git a/big-agi/big-agi-service.yaml b/big-agi/big-agi-service.yaml new file mode 100644 index 0000000..dc1021c --- /dev/null +++ b/big-agi/big-agi-service.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: Service +metadata: + name: big-agi-service + namespace: big-agi-ns +spec: + type: LoadBalancer + ports: + - port: 3000 + targetPort: 3000 + selector: + app: big-agi