From cf721270a5df5f7cabcef27c92358e2781dcd45a Mon Sep 17 00:00:00 2001 From: David CM Date: Sat, 1 Jul 2023 15:25:50 +0200 Subject: [PATCH] feat(ghostfolio): Add ghostfolio (#9476) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** add [ghostfolio](https://github.com/ghostfolio/ghostfolio) submitting in draft so people can add comments ⚒️ Fixes # https://github.com/truecharts/charts/issues/7364 https://github.com/truecharts/charts/issues/8117 **⚙️ 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 **🧪 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 - [ ] ⬆️ 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. - [x] 🪞 I have opened a PR on [truecharts/containers](https://github.com/truecharts/containers) adding the container to TrueCharts mirror repo. - [x] 🖼️ 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._ --------- Signed-off-by: TrueCharts-Bot Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Signed-off-by: Kjeld Schouten Signed-off-by: David CM Co-authored-by: TrueCharts Bot Co-authored-by: Kjeld Schouten-Lebbing Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Co-authored-by: StevenMcElligott <89483932+StevenMcElligott@users.noreply.github.com> --- charts/incubator/ghostfolio/.helmignore | 30 ++++++ charts/incubator/ghostfolio/CHANGELOG.md | 1 + charts/incubator/ghostfolio/Chart.yaml | 32 ++++++ charts/incubator/ghostfolio/README.md | 1 + charts/incubator/ghostfolio/icon.png | Bin 0 -> 3028 bytes charts/incubator/ghostfolio/questions.yaml | 97 ++++++++++++++++++ .../incubator/ghostfolio/templates/NOTES.txt | 1 + .../ghostfolio/templates/_secrets.tpl | 20 ++++ .../ghostfolio/templates/common.yaml | 11 ++ charts/incubator/ghostfolio/values.yaml | 73 +++++++++++++ 10 files changed, 266 insertions(+) create mode 100644 charts/incubator/ghostfolio/.helmignore create mode 100644 charts/incubator/ghostfolio/CHANGELOG.md create mode 100644 charts/incubator/ghostfolio/Chart.yaml create mode 100644 charts/incubator/ghostfolio/README.md create mode 100644 charts/incubator/ghostfolio/icon.png create mode 100644 charts/incubator/ghostfolio/questions.yaml create mode 100644 charts/incubator/ghostfolio/templates/NOTES.txt create mode 100644 charts/incubator/ghostfolio/templates/_secrets.tpl create mode 100644 charts/incubator/ghostfolio/templates/common.yaml create mode 100644 charts/incubator/ghostfolio/values.yaml diff --git a/charts/incubator/ghostfolio/.helmignore b/charts/incubator/ghostfolio/.helmignore new file mode 100644 index 00000000000..77ca5567b26 --- /dev/null +++ b/charts/incubator/ghostfolio/.helmignore @@ -0,0 +1,30 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ +# OWNERS file for Kubernetes +OWNERS +# helm-docs templates +*.gotmpl +# docs folder +/docs +# icon +icon.png diff --git a/charts/incubator/ghostfolio/CHANGELOG.md b/charts/incubator/ghostfolio/CHANGELOG.md new file mode 100644 index 00000000000..825c32f0d03 --- /dev/null +++ b/charts/incubator/ghostfolio/CHANGELOG.md @@ -0,0 +1 @@ +# Changelog diff --git a/charts/incubator/ghostfolio/Chart.yaml b/charts/incubator/ghostfolio/Chart.yaml new file mode 100644 index 00000000000..b80dafe92df --- /dev/null +++ b/charts/incubator/ghostfolio/Chart.yaml @@ -0,0 +1,32 @@ +apiVersion: v2 +appVersion: "1.277.0" +dependencies: + - name: common + repository: https://library-charts.truecharts.org + version: 12.14.6 + - name: redis + repository: https://deps.truecharts.org + version: 6.0.58 +deprecated: false +description: Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. +home: https://truecharts.org/charts/incubator/ghostfolio +icon: https://truecharts.org/img/hotlink-ok/chart-icons/ghostfolio.png +keywords: + - ghostfolio + - finance +kubeVersion: ">=1.16.0-0" +maintainers: + - email: info@truecharts.org + name: TrueCharts + url: https://truecharts.org +name: ghostfolio +sources: + - https://github.com/truecharts/charts/tree/master/charts/incubator/ghostfolio + - https://github.com/ghostfolio/ghostfolio + - https://ghostfol.io/ +type: application +version: 0.0.1 +annotations: + truecharts.org/catagories: | + - finance + truecharts.org/SCALE-support: "true" diff --git a/charts/incubator/ghostfolio/README.md b/charts/incubator/ghostfolio/README.md new file mode 100644 index 00000000000..7e59600739c --- /dev/null +++ b/charts/incubator/ghostfolio/README.md @@ -0,0 +1 @@ +# README diff --git a/charts/incubator/ghostfolio/icon.png b/charts/incubator/ghostfolio/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3f3ce881e29c4e3a593df1d46aff032cddb91da7 GIT binary patch literal 3028 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