From 783f6c68806d015e197a0d5af14a20ed0d94ef02 Mon Sep 17 00:00:00 2001 From: sdimovv <36302090+sdimovv@users.noreply.github.com> Date: Mon, 30 Oct 2023 10:22:23 +0000 Subject: [PATCH] breaking(kubernetes-reflector): Move to enterprise train (#14111) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** ⚒️ Fixes #8634 **⚙️ Type of change** - [ ] ⚙️ 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?** **📃 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 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._ --- .../kubernetes-reflector/.helmignore | 0 .../kubernetes-reflector/Chart.yaml | 2 +- .../kubernetes-reflector/README.md | 0 .../kubernetes-reflector/icon.png | Bin .../kubernetes-reflector/questions.yaml | 0 .../kubernetes-reflector/templates/common.yaml | 0 .../kubernetes-reflector/values.yaml | 0 7 files changed, 1 insertion(+), 1 deletion(-) rename charts/{incubator => enterprise}/kubernetes-reflector/.helmignore (100%) rename charts/{incubator => enterprise}/kubernetes-reflector/Chart.yaml (98%) rename charts/{incubator => enterprise}/kubernetes-reflector/README.md (100%) rename charts/{incubator => enterprise}/kubernetes-reflector/icon.png (100%) rename charts/{incubator => enterprise}/kubernetes-reflector/questions.yaml (100%) rename charts/{incubator => enterprise}/kubernetes-reflector/templates/common.yaml (100%) rename charts/{incubator => enterprise}/kubernetes-reflector/values.yaml (100%) diff --git a/charts/incubator/kubernetes-reflector/.helmignore b/charts/enterprise/kubernetes-reflector/.helmignore similarity index 100% rename from charts/incubator/kubernetes-reflector/.helmignore rename to charts/enterprise/kubernetes-reflector/.helmignore diff --git a/charts/incubator/kubernetes-reflector/Chart.yaml b/charts/enterprise/kubernetes-reflector/Chart.yaml similarity index 98% rename from charts/incubator/kubernetes-reflector/Chart.yaml rename to charts/enterprise/kubernetes-reflector/Chart.yaml index 7901f04ee50..a3950f97f56 100644 --- a/charts/incubator/kubernetes-reflector/Chart.yaml +++ b/charts/enterprise/kubernetes-reflector/Chart.yaml @@ -24,7 +24,7 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/incubator/kubernetes-reflector - https://github.com/emberstack/kubernetes-reflector type: application -version: 0.1.3 +version: 1.0.0 annotations: truecharts.org/category: operators truecharts.org/SCALE-support: "true" diff --git a/charts/incubator/kubernetes-reflector/README.md b/charts/enterprise/kubernetes-reflector/README.md similarity index 100% rename from charts/incubator/kubernetes-reflector/README.md rename to charts/enterprise/kubernetes-reflector/README.md diff --git a/charts/incubator/kubernetes-reflector/icon.png b/charts/enterprise/kubernetes-reflector/icon.png similarity index 100% rename from charts/incubator/kubernetes-reflector/icon.png rename to charts/enterprise/kubernetes-reflector/icon.png diff --git a/charts/incubator/kubernetes-reflector/questions.yaml b/charts/enterprise/kubernetes-reflector/questions.yaml similarity index 100% rename from charts/incubator/kubernetes-reflector/questions.yaml rename to charts/enterprise/kubernetes-reflector/questions.yaml diff --git a/charts/incubator/kubernetes-reflector/templates/common.yaml b/charts/enterprise/kubernetes-reflector/templates/common.yaml similarity index 100% rename from charts/incubator/kubernetes-reflector/templates/common.yaml rename to charts/enterprise/kubernetes-reflector/templates/common.yaml diff --git a/charts/incubator/kubernetes-reflector/values.yaml b/charts/enterprise/kubernetes-reflector/values.yaml similarity index 100% rename from charts/incubator/kubernetes-reflector/values.yaml rename to charts/enterprise/kubernetes-reflector/values.yaml