Files
library-charts/library/common-test/ci/persistence-values.yaml
Kjeld Schouten-Lebbing e1ff472f74 feat(common): restructure common refactor and add multi-pod support (#318)
**Description**
While current refactor is already a huge upgrade, we want to restructure
so multi-pod can be supported from the start as well.

**⚙️ Type of change**

- [X] ⚙️ Feature/App addition
- [X] 🪛 Bugfix
- [X] ⚠️ 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:**

- [ ] ⚖️ 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._

---------

Co-authored-by: Stavros kois <s.kois@outlook.com>
2023-02-18 18:37:02 +01:00

108 lines
2.0 KiB
YAML

image:
repository: tccr.io/truecharts/whoami
pullPolicy: IfNotPresent
tag: 1.8.7@sha256:8c61f0ca92fd806fcb4ed1465cb793c05443f37951554b105b0f2dc686a95772
service:
main:
enabled: true
primary: true
ports:
main:
enabled: true
primary: true
port: 8080
workload:
main:
enabled: true
primary: true
type: Deployment
podSpec:
containers:
main:
enabled: true
primary: true
args:
- --port
- "8080"
probes:
liveness:
enabled: true
type: http
port: "{{ .Values.service.main.ports.main.port }}"
readiness:
enabled: true
type: http
port: "{{ .Values.service.main.ports.main.port }}"
startup:
enabled: true
type: http
port: "{{ .Values.service.main.ports.main.port }}"
persistence:
pvc-stock:
enabled: true
type: pvc
mountPath: /pvcstock
pvc-size:
enabled: true
type: pvc
mountPath: /pvcsize
size: 1Gi
pvc-readonly:
enabled: true
type: pvc
mountPath: /pvcro
readOnly: true
pvc-labeled:
enabled: true
labels:
labelexample1: labelvalue2
type: pvc
mountPath: /pvclabeled
pvc-sc-empty:
enabled: true
type: pvc
mountPath: /pvcscempty
readOnly: false
storageClass: ""
emptydir:
enabled: true
type: emptyDir
mountPath: /emptydir
emptydir-mem:
enabled: true
type: emptyDir
mountPath: /emptydirmem
medium: Memory
emptydir-size:
enabled: true
type: emptyDir
mountPath: /emptydirsize
size: 1Gi
emptydir-memsize:
enabled: true
type: emptyDir
mountPath: /emptydirmemsize
medium: Memory
size: 1Gi
hostpath-stock:
enabled: true
type: hostPath
hostPath: /usr
mountPath: /hptest
hostPathType: ""
manifestManager:
enabled: false