Files
truecharts/charts/stable/backuppc/values.yaml
T
TrueCharts BotandGitHub fac1ce75b6 chore(deps): update container image tiredofit/backuppc to 6.0.2@d99dee4 by renovate (#16798)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [tiredofit/backuppc](https://togithub.com/tiredofit/docker-backuppc) |
digest | `7f4d7c8` -> `d99dee4` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Configuration

📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMTYuMCIsInVwZGF0ZWRJblZlciI6IjM3LjExNi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
2024-01-03 09:20:59 +01:00

77 lines
2.0 KiB
YAML

image:
repository: tiredofit/backuppc
tag: 6.0.2@sha256:d99dee4cb4c8d533cd1e29c3fff73e9e23554754c97954854962924240027bac
pullPolicy: IfNotPresent
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
protocol: http
targetPort: 80
port: 8000
backuppc:
smtp:
auto_from: false
host: postfix-relay
port: 25
domain: docker
maildomain: local
auth: none
user: ""
pass: ""
tls: false
starttls: false
tlscertcheck: false
workload:
main:
podSpec:
containers:
main:
env:
USER_BACKUPPC: "{{ .Values.securityContext.container.PUID }}"
GROUP_BACKUPPC: "{{ .Values.securityContext.pod.fsGroup }}"
CONFIG_PATH: "{{ .Values.persistence.config.mountPath }}"
LOG_PATH: "{{ .Values.persistence.logs.mountPath }}"
SSH_KEYS_PATH: "{{ .Values.persistence.ssh.mountPath }}"
DATA_PATH: "{{ .Values.persistence.data.mountPath }}"
# SMTP
SMTP_AUTO_FROM: "{{ .Values.backuppc.smtp.auto_from }}"
SMTP_HOST: "{{ .Values.backuppc.smtp.host }}"
SMTP_PORT: "{{ .Values.backuppc.smtp.port }}"
SMTP_DOMAIN: "{{ .Values.backuppc.smtp.domain }}"
SMTP_MAILDOMAIN: "{{ .Values.backuppc.smtp.maildomain }}"
SMTP_AUTHENTICATION: "{{ .Values.backuppc.smtp.auth }}"
SMTP_USER: "{{ .Values.backuppc.smtp.user }}"
SMTP_PASS: "{{ .Values.backuppc.smtp.pass }}"
SMTP_TLS: "{{ .Values.backuppc.smtp.tls }}"
SMTP_STARTTLS: "{{ .Values.backuppc.smtp.starttls }}"
SMTP_TLSCERTCHECK: "{{ .Values.backuppc.smtp.tlscertcheck }}"
persistence:
config:
enabled: true
mountPath: /config
ssh:
enabled: true
mountPath: /.ssh
logs:
enabled: true
mountPath: /logs
data:
enabled: true
mountPath: /data
portal:
open:
enabled: true