Add big-agi
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Tyler Perkins 2024-04-06 21:48:12 -04:00
parent 33e238bb95
commit c7bcf09371
Signed by: tyler
GPG Key ID: 03B27509E17EFDC8
2 changed files with 32 additions and 0 deletions

View File

@ -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

View File

@ -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