Gluttony-Cluster/api/general-api/general-api-deployment.yaml
Tyler Perkins 99bfb45aae
All checks were successful
continuous-integration/drone/push Build is passing
Add general API
2023-11-01 22:45:22 -04:00

29 lines
524 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: torrenter-apps
spec:
containers:
- name: general-api
image: git.clortox.com/tyler/general-api:latest
env:
- name: ACCESS_KEY
value: "FOO"
- name: SECRET_KEY
value: "FOO"
ports:
- containerPort: 8000