Files
library-charts/library/common-test/ci/persistence-values.yaml
Stavros Kois 1d0225643a chore(service): add test case and also account for tpl on validation (#715)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ 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
- [x] ⚠️ My changes generate no new warnings
- [x] 🧪 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._
2024-02-29 15:41:40 +02:00

100 lines
1.8 KiB
YAML

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: ""