Gluttony-Cluster/api/general-api/general-api-deployment.yaml
Tyler Perkins e1c658177c
All checks were successful
continuous-integration/drone/push Build is passing
Fix mistype again
2023-11-03 18:49:12 -04:00

45 lines
937 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: general-api
namespace: api-ns
labels:
app: general-api
spec:
replicas: 1
selector:
matchLabels:
app: api-apps
template:
metadata:
labels:
app: api-apps
spec:
containers:
- name: general-api
image: git.clortox.com/tyler/general-api:latest
env:
- name: ACCESS_KEY
valueFrom:
secretKeyRef:
name: general-api-secret
key: access-key
- name: SECRET_KEY
valueFrom:
secretKeyRef:
name: general-api-secret
key: secret-key
- name: CONFIG
value: "/config.yaml"
ports:
- containerPort: 8000
volumes:
- name: config-volume
configMap:
name: general-api-config-map
items:
- key: config.yaml
path: config.yaml