Peter Kurfer
0ac1d722a3
All checks were successful
continuous-integration/drone/push Build is passing
32 lines
No EOL
755 B
YAML
32 lines
No EOL
755 B
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: vikunja-ui
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app.kubernetes.io/name: vikunja
|
|
app.kubernetes.io/component: ui
|
|
app.kubernetes.io/part-of: vikunja
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app.kubernetes.io/name: vikunja
|
|
app.kubernetes.io/component: ui
|
|
app.kubernetes.io/part-of: vikunja
|
|
spec:
|
|
containers:
|
|
- name: vikunja-ui
|
|
image: vikunja-ui
|
|
env:
|
|
- name: VIKUNJA_API_URL
|
|
value: https://todo.icb4dc0.de/api/v1
|
|
- name: VIKUNJA_HTTP_PORT
|
|
value: "8080"
|
|
resources:
|
|
limits:
|
|
memory: "128Mi"
|
|
cpu: "50m"
|
|
ports:
|
|
- containerPort: 8080 |