Files
truecharts/charts/stable/backuppc/values.yaml
T
Kjeld Schouten 5bded42f49 chore: move new-common incubator stuff to stable (#15646)
**Description**
Applications that are currently on new common in incubator are either
working or unstable.
We should act on that and filter accordingly

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [x] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🪞 I have opened a PR on
[truecharts/containers](https://github.com/truecharts/containers) adding
the container to TrueCharts mirror repo.
- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2023-12-03 22:49:05 +01:00

77 lines
2.0 KiB
YAML

image:
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/backuppc
tag: v6.0.2@sha256:80fe126415f0b530dd7d2645da23c8409f62f184a018c52a3ec1d8c5237d30ff
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