This commit is contained in:
parent
33e238bb95
commit
c7bcf09371
20
big-agi/big-agi-deployment.yaml
Normal file
20
big-agi/big-agi-deployment.yaml
Normal 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
|
12
big-agi/big-agi-service.yaml
Normal file
12
big-agi/big-agi-service.yaml
Normal 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
|
Loading…
Reference in New Issue
Block a user