chore(osx): Added OSX container

This commit is contained in:
Daniël Groothuis
2026-02-02 11:39:46 +01:00
parent bbfc8bbb27
commit 797dc958d2
27 changed files with 210 additions and 419 deletions

View File

@@ -0,0 +1,39 @@
# api-deployment.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: kaneo-api
spec:
replicas: 1
selector:
matchLabels:
app: kaneo-api
template:
metadata:
labels:
app: kaneo-api
spec:
containers:
- name: api
image: ghcr.io/usekaneo/api:latest
ports:
- containerPort: 1337
envFrom:
- configMapRef:
name: kaneo-env
# If your API uses POSTGRES_HOST, point it to the postgres Service:
# env:
# - name: POSTGRES_HOST
# value: "postgres"
---
apiVersion: v1
kind: Service
metadata:
name: kaneo-api
spec:
type: ClusterIP
selector:
app: kaneo-api
ports:
- port: 1337
targetPort: 1337