27 lines
565 B
YAML
27 lines
565 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: optima-api
|
|
namespace: optima
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: optima-api
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: optima-api
|
|
spec:
|
|
containers:
|
|
- name: optima-api
|
|
image: ghcr.io/project-optima/ttscm-api:latest
|
|
imagePullPolicy: Always
|
|
envFrom:
|
|
- secretRef:
|
|
name: api-env-secret
|
|
ports:
|
|
- containerPort: 3000
|
|
imagePullSecrets:
|
|
- name: github-container-registry
|