All checks were successful
Deploy / deploy (push) Successful in 46s
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/library/redis](https://hub.docker.com/_/redis) ([source](https://github.com/redis/docker-library-redis)) | pinDigest | → `0a0558e` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My41LjQiLCJ1cGRhdGVkSW5WZXIiOiI0My41LjQiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcHMiLCJrOHMiXX0=--> Reviewed-on: #4 Reviewed-by: t.behrendt <t.behrendt@noreply.localhost> Co-authored-by: Renovate Bot <renovate@t00n.de> Co-committed-by: Renovate Bot <renovate@t00n.de>
35 lines
807 B
YAML
35 lines
807 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: broker
|
|
namespace: paperless
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: broker
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: broker
|
|
spec:
|
|
nodeSelector:
|
|
kubernetes.io/hostname: k3sh0
|
|
containers:
|
|
- name: redis
|
|
image: docker.io/library/redis:7@sha256:0a0558e3113e98807c863440c8ccbdeac25d5b946f322043b293882e35ebf524
|
|
volumeMounts:
|
|
- name: data
|
|
mountPath: /data
|
|
ports:
|
|
- containerPort: 6379
|
|
resources:
|
|
limits:
|
|
cpu: 250m
|
|
memory: 512Mi
|
|
volumes:
|
|
- name: data
|
|
hostPath:
|
|
path: /mnt/longhorn1/svc/paperless/main/broker/data
|
|
type: Directory
|