mirror of
https://github.com/truecharts/library-charts.git
synced 2026-07-03 12:05:50 -03:00
**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** - [x] ⚙️ 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 - [ ] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):` or `chore(chart-name):` **➕ 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._ --------- Co-authored-by: Stavros kois <s.kois@outlook.com>
77 lines
2.5 KiB
Smarty
77 lines
2.5 KiB
Smarty
{{/* Loads all spawners */}}
|
|
{{- define "tc.v1.common.loader.apply" -}}
|
|
|
|
{{/* Inject custom tpl files, as defined in values.yaml */}}
|
|
{{- include "tc.v1.common.spawner.extraTpl" . | nindent 0 -}}
|
|
|
|
{{/* Ensure automatic permissions containers are injected */}}
|
|
{{- include "tc.v1.common.lib.util.autoperms.job" $ -}}
|
|
|
|
{{/* Make sure there are not any YAML errors */}}
|
|
{{- include "tc.v1.common.values.validate" .Values -}}
|
|
|
|
{{/* Render ConfigMap(s) */}}
|
|
{{- include "tc.v1.common.spawner.configmap" . | nindent 0 -}}
|
|
|
|
{{/* Render priorityclass(s) */}}
|
|
{{- include "tc.v1.common.spawner.priorityclass" . | nindent 0 -}}
|
|
|
|
{{/* Render Secret(s) */}}
|
|
{{- include "tc.v1.common.spawner.secret" . | nindent 0 -}}
|
|
|
|
{{/* Render Image Pull Secrets(s) */}}
|
|
{{- include "tc.v1.common.spawner.imagePullSecret" . | nindent 0 -}}
|
|
|
|
{{/* Render Service Accounts(s) */}}
|
|
{{- include "tc.v1.common.spawner.serviceAccount" . | nindent 0 -}}
|
|
|
|
{{/* Render RBAC(s) */}}
|
|
{{- include "tc.v1.common.spawner.rbac" . | nindent 0 -}}
|
|
|
|
{{/* Render Workload(s) */}}
|
|
{{- include "tc.v1.common.spawner.workload" . | nindent 0 -}}
|
|
|
|
{{/* Render Services(s) */}}
|
|
{{- include "tc.v1.common.spawner.service" . | nindent 0 -}}
|
|
|
|
{{/* Render storageClass(s) */}}
|
|
{{- include "tc.v1.common.spawner.storageclass" . | nindent 0 -}}
|
|
|
|
{{/* Render PVC(s) */}}
|
|
{{- include "tc.v1.common.spawner.pvc" . | nindent 0 -}}
|
|
|
|
{{/* Render volumeSnapshot(s) */}}
|
|
{{- include "tc.v1.common.spawner.volumesnapshot" . | nindent 0 -}}
|
|
|
|
{{/* Render volumeSnapshotClass(s) */}}
|
|
{{- include "tc.v1.common.spawner.volumesnapshotclass" . | nindent 0 -}}
|
|
|
|
{{/* Render ingress(s) */}}
|
|
{{- include "tc.v1.common.spawner.ingress" . | nindent 0 -}}
|
|
|
|
{{/* Render Gateway API Route(s) */}}
|
|
{{- include "tc.v1.common.spawner.routes" . | nindent 0 -}}
|
|
|
|
{{/* Render Horizontal Pod Autoscalers(s) */}}
|
|
{{- include "tc.v1.common.spawner.hpa" . | nindent 0 -}}
|
|
|
|
{{/* Render Networkpolicy(s) */}}
|
|
{{- include "tc.v1.common.spawner.networkpolicy" . | nindent 0 -}}
|
|
|
|
{{/* Render podDisruptionBudget(s) */}}
|
|
{{- include "tc.v1.common.spawner.podDisruptionBudget" . | nindent 0 -}}
|
|
|
|
{{/* Render webhook(s) */}}
|
|
{{- include "tc.v1.common.spawner.webhook" . | nindent 0 -}}
|
|
|
|
{{/* Render Prometheus Metrics(s) */}}
|
|
{{- include "tc.v1.common.spawner.metrics" . | nindent 0 -}}
|
|
|
|
{{/* Render Cert-Manager Certificates(s) */}}
|
|
{{- include "tc.v1.common.spawner.certificate" . | nindent 0 -}}
|
|
|
|
{{/* Render portals */}}
|
|
{{- include "tc.v1.common.spawner.portal" . | nindent 0 -}}
|
|
|
|
{{- end -}}
|