39 lines
1.0 KiB
YAML
39 lines
1.0 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: whiteboard
|
|
labels:
|
|
app: whiteboard
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: whiteboard
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: whiteboard
|
|
spec:
|
|
containers:
|
|
- name: whiteboard-ws
|
|
### Maintained by flux - Image Update Automation
|
|
image: ghcr.io/nextcloud-releases/whiteboard:stable@sha256:b60b7633f90d106ac6922f9bc27e1a1ca2442488b740fefdae4c812f34e9cebc # {"$imagepolicy": "cloud-limbosolutions-com:whiteboard"}
|
|
###
|
|
ports:
|
|
- containerPort: 3002
|
|
env:
|
|
- name: NEXTCLOUD_URL
|
|
value: https://cloud.limbosolutions.com
|
|
- name: JWT_SECRET_KEY
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: nextcloud-whiteboard
|
|
key: JWT_SECRET_KEY
|
|
resources:
|
|
limits:
|
|
memory: "256Mi"
|
|
cpu: "200m"
|
|
requests:
|
|
memory: "64Mi"
|
|
cpu: "50m"
|