File size: 582 Bytes
2a81ac9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | apiVersion: apps/v1
kind: Deployment
metadata:
name: alphageometry-api
spec:
replicas: 2
selector:
matchLabels:
app: alphageometry-api
template:
metadata:
labels:
app: alphageometry-api
spec:
containers:
- name: api
image: yourregistry/alphageometry:latest
ports:
- containerPort: 8000
env:
- name: DEMO_API_TOKEN
valueFrom:
secretKeyRef:
name: alphageometry-secrets
key: demo_token
|