From fbe18e1668f2255b3b1987e7a08246f281b8fb8b Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Mon, 29 May 2023 10:44:38 +0200 Subject: [PATCH] feat(metallb): add our own metallb operator (#9099) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** This adds our first chart for the `operators` train: metallb. It also includes some fixes to get said train to work. **⚙️ Type of change** - [x] ⚙️ 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:** This should not be used yet by end users. **✔️ Checklist:** - [x] ⚖️ My code follows the style guidelines of this project - [x] 👀 I have performed a self-review of my own code - [x] #️⃣ I have commented my code, particularly in hard-to-understand areas - [x] 📄 I have made corresponding changes to the documentation - [x] ⚠️ My changes generate no new warnings - [x] 🧪 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. - [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._ --- .github/ct-install.yaml | 1 + .github/ct-lint.yaml | 1 + .github/workflows/daily.yaml | 2 +- .github/workflows/renovate-bump.yaml | 2 + charts/operators/metallb/.helmignore | 30 + charts/operators/metallb/Chart.yaml | 30 + charts/operators/metallb/LICENSE | 106 ++ charts/operators/metallb/README.md | 27 + charts/operators/metallb/icon.png | Bin 0 -> 9249 bytes charts/operators/metallb/questions.yaml | 3 + charts/operators/metallb/templates/NOTES.txt | 1 + .../operators/metallb/templates/_webhooks.tpl | 181 +++ .../operators/metallb/templates/common.yaml | 7 + charts/operators/metallb/templates/crds.yaml | 1233 +++++++++++++++++ charts/operators/metallb/values.yaml | 347 +++++ 15 files changed, 1970 insertions(+), 1 deletion(-) create mode 100644 charts/operators/metallb/.helmignore create mode 100644 charts/operators/metallb/Chart.yaml create mode 100644 charts/operators/metallb/LICENSE create mode 100644 charts/operators/metallb/README.md create mode 100644 charts/operators/metallb/icon.png create mode 100644 charts/operators/metallb/questions.yaml create mode 100644 charts/operators/metallb/templates/NOTES.txt create mode 100644 charts/operators/metallb/templates/_webhooks.tpl create mode 100644 charts/operators/metallb/templates/common.yaml create mode 100644 charts/operators/metallb/templates/crds.yaml create mode 100644 charts/operators/metallb/values.yaml diff --git a/.github/ct-install.yaml b/.github/ct-install.yaml index e5b38211d9b..41203803320 100644 --- a/.github/ct-install.yaml +++ b/.github/ct-install.yaml @@ -8,6 +8,7 @@ chart-dirs: - charts/dependency - charts/dev - charts/enterprise + - charts/operators excluded-charts: - charts/dependency/subchart - charts/incubator/frigate diff --git a/.github/ct-lint.yaml b/.github/ct-lint.yaml index acfcabd5637..573c7a43207 100644 --- a/.github/ct-lint.yaml +++ b/.github/ct-lint.yaml @@ -8,6 +8,7 @@ chart-dirs: - charts/dependency - charts/dev - charts/enterprise + - charts/operators excluded-charts: [] chart-repos: - truecharts=https://charts.truecharts.org diff --git a/.github/workflows/daily.yaml b/.github/workflows/daily.yaml index 780ccc8511f..736d52f067e 100644 --- a/.github/workflows/daily.yaml +++ b/.github/workflows/daily.yaml @@ -203,7 +203,7 @@ jobs: sync_tag "charts/${train}/${chart}" "${chart}" "${train}" done done - + - name: Fix Fixable Pre-Commit issues shell: bash if: inputs.chartChangesDetected == 'true' diff --git a/.github/workflows/renovate-bump.yaml b/.github/workflows/renovate-bump.yaml index 44c2093ffde..5265c39d2b8 100644 --- a/.github/workflows/renovate-bump.yaml +++ b/.github/workflows/renovate-bump.yaml @@ -117,6 +117,8 @@ jobs: train="games" elif test -f "./charts/enterprise/${chart}/Chart.yaml"; then train="enterprise" + elif test -f "./charts/operators/${chart}/Chart.yaml"; then + train="operators" else train="incubator" fi diff --git a/charts/operators/metallb/.helmignore b/charts/operators/metallb/.helmignore new file mode 100644 index 00000000000..77ca5567b26 --- /dev/null +++ b/charts/operators/metallb/.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/operators/metallb/Chart.yaml b/charts/operators/metallb/Chart.yaml new file mode 100644 index 00000000000..1721d73e1bf --- /dev/null +++ b/charts/operators/metallb/Chart.yaml @@ -0,0 +1,30 @@ +apiVersion: v2 +appVersion: "latest" +deprecated: false +description: A network load-balancer implementation for Kubernetes using standard routing protocols +home: https://truecharts.org/charts/enterprise/metallb +icon: https://truecharts.org/img/hotlink-ok/chart-icons/metallb.png +keywords: + - metallb + - loadbalancer +dependencies: + - name: common + repository: https://library-charts.truecharts.org + version: 12.10.8 +kubeVersion: ">=1.16.0-0" +maintainers: + - email: info@truecharts.org + name: TrueCharts + url: https://truecharts.org +name: metallb +sources: + - https://github.com/truecharts/charts/tree/master/charts/enterprise/metallb + - https://github.com/metallb/metallb + - https://metallb.universe.tf +type: application +version: 9.0.0 +annotations: + truecharts.org/catagories: | + - operators + truecharts.org/SCALE-support: "true" + truecharts.org/grade: U diff --git a/charts/operators/metallb/LICENSE b/charts/operators/metallb/LICENSE new file mode 100644 index 00000000000..4dfe12ac30e --- /dev/null +++ b/charts/operators/metallb/LICENSE @@ -0,0 +1,106 @@ +Business Source License 1.1 + +Parameters + +Licensor: The TrueCharts Project, it's owner and it's contributors +Licensed Work: The TrueCharts "MetalLB" Helm Chart +Additional Use Grant: You may use the licensed work in production, as long + as it is directly sourced from a TrueCharts provided + official repository, catalog or source. You may also make private + modification to the directly sourced licenced work, + when used in production. + + The following cases are, due to their nature, also + defined as 'production use' and explicitly prohibited: + - Bundling, including or displaying the licensed work + with(in) another work intended for production use, + with the apparent intend of facilitating and/or + promoting production use by third parties in + violation of this license. + +Change Date: 2050-01-01 + +Change License: 3-clause BSD license + +For information about alternative licensing arrangements for the Software, +please contact: legal@truecharts.org + +Notice + +The Business Source License (this document, or the “License”) is not an Open +Source license. However, the Licensed Work will eventually be made available +under an Open Source License, as stated in this License. + +License text copyright (c) 2017 MariaDB Corporation Ab, All Rights Reserved. +“Business Source License” is a trademark of MariaDB Corporation Ab. + +----------------------------------------------------------------------------- + +Business Source License 1.1 + +Terms + +The Licensor hereby grants you the right to copy, modify, create derivative +works, redistribute, and make non-production use of the Licensed Work. The +Licensor may make an Additional Use Grant, above, permitting limited +production use. + +Effective on the Change Date, or the fourth anniversary of the first publicly +available distribution of a specific version of the Licensed Work under this +License, whichever comes first, the Licensor hereby grants you rights under +the terms of the Change License, and the rights granted in the paragraph +above terminate. + +If your use of the Licensed Work does not comply with the requirements +currently in effect as described in this License, you must purchase a +commercial license from the Licensor, its affiliated entities, or authorized +resellers, or you must refrain from using the Licensed Work. + +All copies of the original and modified Licensed Work, and derivative works +of the Licensed Work, are subject to this License. This License applies +separately for each version of the Licensed Work and the Change Date may vary +for each version of the Licensed Work released by Licensor. + +You must conspicuously display this License on each original or modified copy +of the Licensed Work. If you receive the Licensed Work in original or +modified form from a third party, the terms and conditions set forth in this +License apply to your use of that work. + +Any use of the Licensed Work in violation of this License will automatically +terminate your rights under this License for the current and all other +versions of the Licensed Work. + +This License does not grant you any right in any trademark or logo of +Licensor or its affiliates (provided that you may use a trademark or logo of +Licensor as expressly required by this License). + +TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON +AN “AS IS” BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, +EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND +TITLE. + +MariaDB hereby grants you permission to use this License’s text to license +your works, and to refer to it using the trademark “Business Source License”, +as long as you comply with the Covenants of Licensor below. + +Covenants of Licensor + +In consideration of the right to use this License’s text and the “Business +Source License” name and trademark, Licensor covenants to MariaDB, and to all +other recipients of the licensed work to be provided by Licensor: + +1. To specify as the Change License the GPL Version 2.0 or any later version, + or a license that is compatible with GPL Version 2.0 or a later version, + where “compatible” means that software provided under the Change License can + be included in a program with software provided under GPL Version 2.0 or a + later version. Licensor may specify additional Change Licenses without + limitation. + +2. To either: (a) specify an additional grant of rights to use that does not + impose any additional restriction on the right granted in this License, as + the Additional Use Grant; or (b) insert the text “None”. + +3. To specify a Change Date. + +4. Not to modify this License in any other way. diff --git a/charts/operators/metallb/README.md b/charts/operators/metallb/README.md new file mode 100644 index 00000000000..de60b9ed65c --- /dev/null +++ b/charts/operators/metallb/README.md @@ -0,0 +1,27 @@ +# README + +## General Info + +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/enterprise/) + +**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)** + + +## Support + +- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE%20Apps/Important-MUST-READ). +- See the [Website](https://truecharts.org) +- Check our [Discord](https://discord.gg/tVsPTHWTtr) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) + +--- + +## Sponsor TrueCharts + +TrueCharts can only exist due to the incredible effort of our staff. +Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can! + +*All Rights Reserved - The TrueCharts Project* diff --git a/charts/operators/metallb/icon.png b/charts/operators/metallb/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..e9def3cc32d3a9161b950dcdb601ff80fd3fe7a1 GIT binary patch literal 9249 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