This is an automated email from the ASF dual-hosted git repository. adutra pushed a commit to branch remove-chart-maintainers in repository https://gitbox.apache.org/repos/asf/polaris.git
commit 9826bbb40143f032a48fac24b2875a96d9c559b3 Author: Alexandre Dutra <[email protected]> AuthorDate: Tue Feb 17 16:15:28 2026 +0100 Helm chart: remove maintainers section from Chart.yaml The maintainers section currently lists individual contributors, and gets frequently out of date. This change replaces the individual names with a single entry referring to the Apache Polaris PPMC as a whole. --- Makefile | 2 +- helm/polaris/Chart.yaml | 11 ++++------- helm/polaris/helm.md.gotmpl | 2 +- site/content/in-dev/unreleased/helm.md | 2 +- 4 files changed, 7 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 06445d258..81b5a4d5d 100644 --- a/Makefile +++ b/Makefile @@ -233,7 +233,7 @@ helm-lint: DEPENDENCIES := ct yamllint .PHONY: helm-lint helm-lint: check-dependencies ## Run Helm chart lint check @echo "--- Running Helm chart linting ---" - @ct lint --charts helm/polaris + @ct lint --charts helm/polaris --validate-maintainers=false @echo "--- Helm chart linting complete ---" ##@ Minikube diff --git a/helm/polaris/Chart.yaml b/helm/polaris/Chart.yaml index 7db69ab70..341267698 100644 --- a/helm/polaris/Chart.yaml +++ b/helm/polaris/Chart.yaml @@ -30,13 +30,10 @@ sources: keywords: - polaris - iceberg -maintainers: # Maintainers section is kept only to satisfy the Helm Chart Spec and downstream linters. - - name: MonkeyCanCode - - name: adutra - - name: collado-mike - - name: gerrit-k - - name: snazy - - name: flyrain +maintainers: + - name: Apache Polaris PPMC + email: [email protected] + url: https://polaris.apache.org/ annotations: artifacthub.io/links: | - name: Homepage diff --git a/helm/polaris/helm.md.gotmpl b/helm/polaris/helm.md.gotmpl index b5bd48108..0dd19d738 100644 --- a/helm/polaris/helm.md.gotmpl +++ b/helm/polaris/helm.md.gotmpl @@ -240,7 +240,7 @@ helm unittest helm/polaris You can also lint the chart using the Chart Testing tool, with the following command: ```bash -ct lint --charts helm/polaris +ct lint --charts helm/polaris --validate-maintainers=false ``` ### Running the integration tests diff --git a/site/content/in-dev/unreleased/helm.md b/site/content/in-dev/unreleased/helm.md index ebdd1b7ed..15701bcdd 100644 --- a/site/content/in-dev/unreleased/helm.md +++ b/site/content/in-dev/unreleased/helm.md @@ -239,7 +239,7 @@ helm unittest helm/polaris You can also lint the chart using the Chart Testing tool, with the following command: ```bash -ct lint --charts helm/polaris +ct lint --charts helm/polaris --validate-maintainers=false ``` ### Running the integration tests
