From f5a7832fc6e7abfb7875415862e5da47ad0d9e88 Mon Sep 17 00:00:00 2001 From: Xstar97TheNoob <9399967+xstar97@users.noreply.github.com> Date: Tue, 29 Aug 2023 12:47:22 -0400 Subject: [PATCH] feat(dashy) move dashy to stable (#11982) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Move dashy to stable ⚒️ Fixes # **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 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?** **📃 Notes:** **✔️ 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 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._ --- charts/{incubator => stable}/dashy/.helmignore | 0 .../{incubator => stable}/dashy/CHANGELOG.md | 0 charts/{incubator => stable}/dashy/Chart.yaml | 10 +++++----- charts/{incubator => stable}/dashy/README.md | 0 .../dashy/ci/direct-values.yaml | 0 .../dashy/ci/standalone-values.yaml | 0 charts/{incubator => stable}/dashy/icon.png | Bin .../{incubator => stable}/dashy/questions.yaml | 0 charts/stable/dashy/templates/NOTES.txt | 1 + .../dashy/templates/_configmap.tpl | 0 .../dashy/templates/common.yaml | 0 charts/{incubator => stable}/dashy/values.yaml | 17 +++++++++-------- 12 files changed, 15 insertions(+), 13 deletions(-) rename charts/{incubator => stable}/dashy/.helmignore (100%) rename charts/{incubator => stable}/dashy/CHANGELOG.md (100%) rename charts/{incubator => stable}/dashy/Chart.yaml (74%) rename charts/{incubator => stable}/dashy/README.md (100%) rename charts/{incubator => stable}/dashy/ci/direct-values.yaml (100%) rename charts/{incubator => stable}/dashy/ci/standalone-values.yaml (100%) rename charts/{incubator => stable}/dashy/icon.png (100%) rename charts/{incubator => stable}/dashy/questions.yaml (100%) create mode 100644 charts/stable/dashy/templates/NOTES.txt rename charts/{incubator => stable}/dashy/templates/_configmap.tpl (100%) rename charts/{incubator => stable}/dashy/templates/common.yaml (100%) rename charts/{incubator => stable}/dashy/values.yaml (94%) diff --git a/charts/incubator/dashy/.helmignore b/charts/stable/dashy/.helmignore similarity index 100% rename from charts/incubator/dashy/.helmignore rename to charts/stable/dashy/.helmignore diff --git a/charts/incubator/dashy/CHANGELOG.md b/charts/stable/dashy/CHANGELOG.md similarity index 100% rename from charts/incubator/dashy/CHANGELOG.md rename to charts/stable/dashy/CHANGELOG.md diff --git a/charts/incubator/dashy/Chart.yaml b/charts/stable/dashy/Chart.yaml similarity index 74% rename from charts/incubator/dashy/Chart.yaml rename to charts/stable/dashy/Chart.yaml index 1f9ab7a076a..84592b7e1aa 100644 --- a/charts/incubator/dashy/Chart.yaml +++ b/charts/stable/dashy/Chart.yaml @@ -3,9 +3,9 @@ appVersion: "2.1.1" dependencies: - name: common repository: https://library-charts.truecharts.org - version: 13.2.2 + version: 14.0.3 description: Dashy helps you organize your self-hosted services by making them accessible from a single place -home: https://truecharts.org/charts/incubator/dashy +home: https://truecharts.org/charts/stable/dashy icon: https://truecharts.org/img/hotlink-ok/chart-icons/dashy.png keywords: - dashboard @@ -16,9 +16,9 @@ maintainers: url: https://truecharts.org name: dashy sources: - - https://github.com/truecharts/charts/tree/master/charts/incubator/dashy - - https://github.com/airsonic/airsonic -version: 3.0.14 + - https://github.com/truecharts/charts/tree/master/charts/stable/dashy + - https://github.com/Lissy93/dashy +version: 3.0.15 annotations: truecharts.org/catagories: | - dashboard diff --git a/charts/incubator/dashy/README.md b/charts/stable/dashy/README.md similarity index 100% rename from charts/incubator/dashy/README.md rename to charts/stable/dashy/README.md diff --git a/charts/incubator/dashy/ci/direct-values.yaml b/charts/stable/dashy/ci/direct-values.yaml similarity index 100% rename from charts/incubator/dashy/ci/direct-values.yaml rename to charts/stable/dashy/ci/direct-values.yaml diff --git a/charts/incubator/dashy/ci/standalone-values.yaml b/charts/stable/dashy/ci/standalone-values.yaml similarity index 100% rename from charts/incubator/dashy/ci/standalone-values.yaml rename to charts/stable/dashy/ci/standalone-values.yaml diff --git a/charts/incubator/dashy/icon.png b/charts/stable/dashy/icon.png similarity index 100% rename from charts/incubator/dashy/icon.png rename to charts/stable/dashy/icon.png diff --git a/charts/incubator/dashy/questions.yaml b/charts/stable/dashy/questions.yaml similarity index 100% rename from charts/incubator/dashy/questions.yaml rename to charts/stable/dashy/questions.yaml diff --git a/charts/stable/dashy/templates/NOTES.txt b/charts/stable/dashy/templates/NOTES.txt new file mode 100644 index 00000000000..efcb74cb772 --- /dev/null +++ b/charts/stable/dashy/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "tc.v1.common.lib.chart.notes" $ -}} diff --git a/charts/incubator/dashy/templates/_configmap.tpl b/charts/stable/dashy/templates/_configmap.tpl similarity index 100% rename from charts/incubator/dashy/templates/_configmap.tpl rename to charts/stable/dashy/templates/_configmap.tpl diff --git a/charts/incubator/dashy/templates/common.yaml b/charts/stable/dashy/templates/common.yaml similarity index 100% rename from charts/incubator/dashy/templates/common.yaml rename to charts/stable/dashy/templates/common.yaml diff --git a/charts/incubator/dashy/values.yaml b/charts/stable/dashy/values.yaml similarity index 94% rename from charts/incubator/dashy/values.yaml rename to charts/stable/dashy/values.yaml index a5264415d96..d12bb7931ef 100644 --- a/charts/incubator/dashy/values.yaml +++ b/charts/stable/dashy/values.yaml @@ -1,6 +1,6 @@ image: repository: tccr.io/truecharts/dashy - tag: 2.1.1@sha256:ebca6ae03e6b5629c0bba7686cf872b5b5f1da6be88948e984457bf771523b6e + tag: v2.1.1@sha256:3313b127d8ead4276c109e6e210ddc6a2702cb09781308c32b882a51247d071f pullPolicy: IfNotPresent securityContext: @@ -10,6 +10,14 @@ securityContext: runAsUser: 0 runAsGroup: 0 +service: + main: + ports: + main: + port: 10310 + protocol: http + targetPort: 80 + dashy: # Enable config file mount from host path enabled: false @@ -54,13 +62,6 @@ workload: command: - node - /app/services/healthcheck -service: - main: - ports: - main: - port: 10310 - protocol: http - targetPort: 80 persistence: icons: