From db202d75786ab49e62dcf226c776ba4165fce3a6 Mon Sep 17 00:00:00 2001 From: Boemeltrein <130394941+Boemeltrein@users.noreply.github.com> Date: Sat, 27 Sep 2025 22:45:33 +0200 Subject: [PATCH] feat(app-template): add dependencies (#40101) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** To test and deploy charts added some depencies so you can use those with app-template when needed. ⚒️ Fixes # **⚙️ Type of change** - [x] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code - [ ] 📜 Documentation Changes **🧪 How Has This Been Tested?** **📃 Notes:** **✔️ 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 changes to the documentation - [ ] 🧪 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 - [x] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or `fix(docs):` **➕ 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._ --- charts/premium/app-template/Chart.yaml | 23 ++++++++++++++++++++++- charts/premium/app-template/values.yaml | 7 +++++++ 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/charts/premium/app-template/Chart.yaml b/charts/premium/app-template/Chart.yaml index 75b4d6852c9..beb62aa8c29 100644 --- a/charts/premium/app-template/Chart.yaml +++ b/charts/premium/app-template/Chart.yaml @@ -20,6 +20,27 @@ dependencies: alias: "" tags: [] import-values: [] + - name: mariadb + version: 17.4.2 + repository: oci://tccr.io/truecharts + condition: mariadb.enabled + alias: "" + tags: [] + import-values: [] + - name: redis + version: 17.8.2 + repository: oci://tccr.io/truecharts + condition: redis.enabled + alias: "" + tags: [] + import-values: [] + - name: mongodb + version: 16.7.2 + repository: oci://tccr.io/truecharts + condition: mongodb.enabled + alias: "" + tags: [] + import-values: [] deprecated: false description: Advanced Template to create your own TrueCharts-based Charts home: https://truecharts.org/charts/premium/app-template @@ -37,5 +58,5 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/premium/app-template - https://github.com/trueforge-org/truecharts/tree/master/charts/premium/app-template type: application -version: 15.8.6 +version: 15.9.0 diff --git a/charts/premium/app-template/values.yaml b/charts/premium/app-template/values.yaml index b60c5a242a3..66fb5e873dd 100644 --- a/charts/premium/app-template/values.yaml +++ b/charts/premium/app-template/values.yaml @@ -15,3 +15,10 @@ workload: type: tcp startup: type: tcp + +redis: + enabled: false +mariadb: + enabled: false +mongodb: + enabled: false