Files
truecharts/charts/stable/send/values.yaml
Xstar97TheNoob 30e0ac7d47 fix(send) add redis, gui housekeeping, and update env (#17530)
**Description**
add the redis sidecar, gui housekeeping, and update env section.
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [X] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [X] 🔃 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:**

- [X] ⚖️ My code follows the style guidelines of this project
- [X] 👀 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
- [X] ⬆️ 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 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._

---------

Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2024-01-27 00:22:34 +02:00

56 lines
1.3 KiB
YAML

image:
pullPolicy: IfNotPresent
repository: registry.gitlab.com/timvisee/send
tag: latest@sha256:1ee495161f176946e6e4077e17be2b8f8634c2d502172cc530a8cd5affd7078f
securityContext:
container:
readOnlyRootFilesystem: false
runAsGroup: 0
runAsUser: 0
service:
main:
ports:
main:
protocol: http
port: 1443
workload:
main:
podSpec:
containers:
main:
env:
FILE_DIR: "{{ .Values.persistence.uploadpath.mountPath}}"
PORT: "{{ .Values.service.main.ports.main.port }}"
BASE_URL: http://192.168.0.100:1443
MAX_DOWNLOADS: "100"
MAX_EXPIRE_SECONDS: "604800"
MAX_FILE_SIZE: "2147483648"
NODE_ENV: production
REDIS_HOST:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
key: plainhost
REDIS_PASSWORD:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
key: redis-password
REDIS_USER: "{{ .Values.redis.redisUsername }}"
REDIS_PORT: "6379"
persistence:
uploadpath:
enabled: true
mountPath: /uploads
redis:
enabled: true
portal:
open:
enabled: true