From a68e24cf2f6373b35018ad5f4beead35a8b8e866 Mon Sep 17 00:00:00 2001 From: Alec Fenichel Date: Tue, 6 Jun 2023 03:11:54 -0400 Subject: [PATCH] chore(cloudflared) move to stable (#9425) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** ⚒️ Fixes # cloudflared ported to new common (v5.0.2) is working as expected both in CI and the actual chart. **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [x] ⚠️ 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 - [x] ⚠️ 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._ --------- Signed-off-by: Kjeld Schouten Co-authored-by: Kjeld Schouten --- .../{incubator => stable}/cloudflared/.helmignore | 0 .../{incubator => stable}/cloudflared/CHANGELOG.md | 0 charts/{incubator => stable}/cloudflared/Chart.yaml | 6 +++--- charts/{incubator => stable}/cloudflared/README.md | 2 +- .../cloudflared/ci/test-values.yaml | 0 .../cloudflared/docs/imgs/cf-tunnel-access.png | Bin .../cloudflared/docs/imgs/cf-tunnel-create.png | Bin .../cloudflared/docs/imgs/cf-tunnel-hostname.png | Bin .../docs/imgs/cf-tunnel-priv-network.png | Bin .../cloudflared/docs/imgs/cf-tunnel-token.png | Bin .../cloudflared/docs/installation_notes.md | 0 charts/{incubator => stable}/cloudflared/icon.png | Bin .../cloudflared/questions.yaml | 0 .../cloudflared/templates/common.yaml | 0 .../{incubator => stable}/cloudflared/values.yaml | 3 --- 15 files changed, 4 insertions(+), 7 deletions(-) rename charts/{incubator => stable}/cloudflared/.helmignore (100%) rename charts/{incubator => stable}/cloudflared/CHANGELOG.md (100%) rename charts/{incubator => stable}/cloudflared/Chart.yaml (81%) rename charts/{incubator => stable}/cloudflared/README.md (93%) rename charts/{incubator => stable}/cloudflared/ci/test-values.yaml (100%) rename charts/{incubator => stable}/cloudflared/docs/imgs/cf-tunnel-access.png (100%) rename charts/{incubator => stable}/cloudflared/docs/imgs/cf-tunnel-create.png (100%) rename charts/{incubator => stable}/cloudflared/docs/imgs/cf-tunnel-hostname.png (100%) rename charts/{incubator => stable}/cloudflared/docs/imgs/cf-tunnel-priv-network.png (100%) rename charts/{incubator => stable}/cloudflared/docs/imgs/cf-tunnel-token.png (100%) rename charts/{incubator => stable}/cloudflared/docs/installation_notes.md (100%) rename charts/{incubator => stable}/cloudflared/icon.png (100%) rename charts/{incubator => stable}/cloudflared/questions.yaml (100%) rename charts/{incubator => stable}/cloudflared/templates/common.yaml (100%) rename charts/{incubator => stable}/cloudflared/values.yaml (96%) diff --git a/charts/incubator/cloudflared/.helmignore b/charts/stable/cloudflared/.helmignore similarity index 100% rename from charts/incubator/cloudflared/.helmignore rename to charts/stable/cloudflared/.helmignore diff --git a/charts/incubator/cloudflared/CHANGELOG.md b/charts/stable/cloudflared/CHANGELOG.md similarity index 100% rename from charts/incubator/cloudflared/CHANGELOG.md rename to charts/stable/cloudflared/CHANGELOG.md diff --git a/charts/incubator/cloudflared/Chart.yaml b/charts/stable/cloudflared/Chart.yaml similarity index 81% rename from charts/incubator/cloudflared/Chart.yaml rename to charts/stable/cloudflared/Chart.yaml index 29bd9279f4b..815762a6953 100644 --- a/charts/incubator/cloudflared/Chart.yaml +++ b/charts/stable/cloudflared/Chart.yaml @@ -6,7 +6,7 @@ dependencies: version: 12.10.4 deprecated: false description: Client for Cloudflare Tunnel, a daemon that exposes private services through the Cloudflare edge. -home: https://truecharts.org/charts/incubator/cloudflared +home: https://truecharts.org/charts/stable/cloudflared icon: https://truecharts.org/img/hotlink-ok/chart-icons/cloudflared.png keywords: - cloudflared @@ -18,9 +18,9 @@ maintainers: url: https://truecharts.org name: cloudflared sources: - - https://github.com/truecharts/charts/tree/master/charts/incubator/cloudflared + - https://github.com/truecharts/charts/tree/master/charts/stable/cloudflared type: application -version: 5.0.2 +version: 5.0.3 annotations: truecharts.org/catagories: | - network diff --git a/charts/incubator/cloudflared/README.md b/charts/stable/cloudflared/README.md similarity index 93% rename from charts/incubator/cloudflared/README.md rename to charts/stable/cloudflared/README.md index 63d5d2c8fdc..701942c352f 100644 --- a/charts/incubator/cloudflared/README.md +++ b/charts/stable/cloudflared/README.md @@ -5,7 +5,7 @@ TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE. However only installations using the TrueNAS SCALE Apps system are supported. -For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/incubator/) +For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/stable/) **This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)** diff --git a/charts/incubator/cloudflared/ci/test-values.yaml b/charts/stable/cloudflared/ci/test-values.yaml similarity index 100% rename from charts/incubator/cloudflared/ci/test-values.yaml rename to charts/stable/cloudflared/ci/test-values.yaml diff --git a/charts/incubator/cloudflared/docs/imgs/cf-tunnel-access.png b/charts/stable/cloudflared/docs/imgs/cf-tunnel-access.png similarity index 100% rename from charts/incubator/cloudflared/docs/imgs/cf-tunnel-access.png rename to charts/stable/cloudflared/docs/imgs/cf-tunnel-access.png diff --git a/charts/incubator/cloudflared/docs/imgs/cf-tunnel-create.png b/charts/stable/cloudflared/docs/imgs/cf-tunnel-create.png similarity index 100% rename from charts/incubator/cloudflared/docs/imgs/cf-tunnel-create.png rename to charts/stable/cloudflared/docs/imgs/cf-tunnel-create.png diff --git a/charts/incubator/cloudflared/docs/imgs/cf-tunnel-hostname.png b/charts/stable/cloudflared/docs/imgs/cf-tunnel-hostname.png similarity index 100% rename from charts/incubator/cloudflared/docs/imgs/cf-tunnel-hostname.png rename to charts/stable/cloudflared/docs/imgs/cf-tunnel-hostname.png diff --git a/charts/incubator/cloudflared/docs/imgs/cf-tunnel-priv-network.png b/charts/stable/cloudflared/docs/imgs/cf-tunnel-priv-network.png similarity index 100% rename from charts/incubator/cloudflared/docs/imgs/cf-tunnel-priv-network.png rename to charts/stable/cloudflared/docs/imgs/cf-tunnel-priv-network.png diff --git a/charts/incubator/cloudflared/docs/imgs/cf-tunnel-token.png b/charts/stable/cloudflared/docs/imgs/cf-tunnel-token.png similarity index 100% rename from charts/incubator/cloudflared/docs/imgs/cf-tunnel-token.png rename to charts/stable/cloudflared/docs/imgs/cf-tunnel-token.png diff --git a/charts/incubator/cloudflared/docs/installation_notes.md b/charts/stable/cloudflared/docs/installation_notes.md similarity index 100% rename from charts/incubator/cloudflared/docs/installation_notes.md rename to charts/stable/cloudflared/docs/installation_notes.md diff --git a/charts/incubator/cloudflared/icon.png b/charts/stable/cloudflared/icon.png similarity index 100% rename from charts/incubator/cloudflared/icon.png rename to charts/stable/cloudflared/icon.png diff --git a/charts/incubator/cloudflared/questions.yaml b/charts/stable/cloudflared/questions.yaml similarity index 100% rename from charts/incubator/cloudflared/questions.yaml rename to charts/stable/cloudflared/questions.yaml diff --git a/charts/incubator/cloudflared/templates/common.yaml b/charts/stable/cloudflared/templates/common.yaml similarity index 100% rename from charts/incubator/cloudflared/templates/common.yaml rename to charts/stable/cloudflared/templates/common.yaml diff --git a/charts/incubator/cloudflared/values.yaml b/charts/stable/cloudflared/values.yaml similarity index 96% rename from charts/incubator/cloudflared/values.yaml rename to charts/stable/cloudflared/values.yaml index 1d96b95a421..ae25d21ed0c 100644 --- a/charts/incubator/cloudflared/values.yaml +++ b/charts/stable/cloudflared/values.yaml @@ -3,9 +3,6 @@ image: pullPolicy: IfNotPresent tag: v2023.5.1@sha256:2136a26cb736c3219c523c3dfdfa53efd5834a82cfefcb2b991b47237c0e149f -cloudflared: - token: "" - workload: main: podSpec: