From 28a120356f70679a707d02e8c3cac0750387d913 Mon Sep 17 00:00:00 2001 From: Javier Salmeron Garcia Date: Wed, 24 Apr 2024 13:31:19 +0200 Subject: [PATCH 1/5] [bitnami/*] chore: :construction_worker: Add tag and changelog support Signed-off-by: Javier Salmeron Garcia --- .github/workflows/cd-pipeline.yml | 18 +++++++++++++++++- .github/workflows/ci-pipeline.yml | 31 ++++++++++++++++++++++++++++++- 2 files changed, 47 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd-pipeline.yml b/.github/workflows/cd-pipeline.yml index 3268670c9da5ba..8bceb0891aa26b 100644 --- a/.github/workflows/cd-pipeline.yml +++ b/.github/workflows/cd-pipeline.yml @@ -25,6 +25,7 @@ jobs: with: path: charts fetch-depth: 2 # to be able to obtain files changed in the latest commit + token: ${{ secrets.BITNAMI_BOT_TOKEN }} - id: get-chart name: 'Get modified charts' run: | @@ -59,6 +60,21 @@ jobs: with: script: | core.setFailed('${{ steps.get-chart.outputs.error }}') + - id: push-tag + name: 'Push tag' + if: ${{ steps.get-chart.outputs.result == 'ok' }} + env: + CHART: ${{ steps.get-chart.outputs.chart }} + run: | + cd charts + # Get chart version and list of tags + chart_version="$(yq e '.version' bitnami/${CHART}/Chart.yaml)" + git fetch --tags + # If the tag does not exist, create and push it (this allows re-executing the job) + if ! git tag | grep ${CHART}/${chart_version}; then + git tag ${CHART}/${chart_version} + git push --tags + fi vib-publish: runs-on: ubuntu-latest needs: get-chart @@ -107,7 +123,7 @@ jobs: curl -SsLfO "https://get.helm.sh/${HELM_TARBALL}" && sudo tar xf "$HELM_TARBALL" --strip-components 1 -C /usr/local/bin - id: update-index name: Fetch chart and update index - env: + env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_PUBLISH_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_PUBLISH_SECRET_ACCESS_KEY }} AWS_ASSUME_ROLE_ARN: ${{ secrets.AWS_PUBLISH_ROLE_ARN }} diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index de2c3da441d031..8573cf621a5c7b 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -92,7 +92,7 @@ jobs: update-pr: runs-on: ubuntu-latest needs: [get-chart] - name: Automatically update README and CRDs + name: Automatically update README, CRDs and CHANGELOG permissions: contents: write outputs: @@ -105,10 +105,39 @@ jobs: ref: ${{github.event.pull_request.head.ref}} repository: ${{github.event.pull_request.head.repo.full_name}} token: ${{ secrets.BITNAMI_BOT_TOKEN }} + # We need to perform a full clone to re-generate the changelog + fetch-depth: 0 - name: Setup git configuration run: | git config user.name "Bitnami Containers" git config user.email "bitnami-bot@vmware.com" + - name: Install conventional-changelog-cli + run: npm install -g conventional-changelog-cli + - id: generate-changelog + name: Generate changelog + env: + CHART: ${{ needs.get-chart.outputs.chart }} + run: | + # The generator needs the file to exist + chart_version="$(yq e '.version' bitnami/${CHART}/Chart.yaml)" + changelog_file="bitnami/${CHART}/CHANGELOG.md" + changelog_tmp="bitnami/${CHART}/CHANGELOG.md.tmp" + touch "$changelog_file" + npx conventional-changelog-cli -i ${changelog_file} -s -t ${CHART}/ -r 0 --commit-path bitnami/${CHART} + # Remove unreleased section (includes all intermediate commits in the branch) and create future entry based on PR title + # The unreleased section looks like this "## (YYYY-MM-DD)" whereas a released section looks like this "## 0.0.1 (YYYY-MM-DD)" + # So we only need to find a released section to start printing in the awk script below + awk '/^##[^(]*[0-9]/ {flag=1} flag {print}' ${changelog_file} > ${changelog_tmp} + # Remove extra newlines so the changelog file passes the markdown linter + sed -i -E -e '/^$/d' ${changelog_tmp} && sed -i -E -e 's/(##.*)/\n\1\n/g' ${changelog_tmp} + # Include h1 heading and add entry for the current version. There is no tag for the current version (this will be created once merged), so we need to manually add it. + # We know the final squashed commit title, which will be the PR title. We cannot add a link to the commit in the main branch because it has not been + # merged yet (this will be corrected once a new version regenerates the changelog). Instead, we add the PR url which contains the exact same information. + echo -e -n "# Changelog\n\n## $chart_version ($(date +'%Y-%m-%d'))\n\n* ${{ github.event.pull_request.title }} ([#${{ github.event.number }}](${{ github.server_url }}/${{ github.repository }}/pulls/${{ github.event.number }}))\n" > ${changelog_file} + mv ${changelog_tmp} ${changelog_file} + if git status -s | grep "bitnami/${CHART}/CHANGELOG.md"; then + git add "bitnami/${CHART}/CHANGELOG.md" && git commit -m "Update CHANGELOG.md" --signoff + fi - name: Install readme-generator-for-helm if: needs.get-chart.outputs.values-updated == 'true' run: npm install -g @bitnami/readme-generator-for-helm From 9553899df619d0bb8bb7e22b435101dea07aa4b0 Mon Sep 17 00:00:00 2001 From: Javier Salmeron Garcia Date: Mon, 29 Apr 2024 16:18:01 +0200 Subject: [PATCH 2/5] perf: :zap: Avoid fetching the index branch Signed-off-by: Javier Salmeron Garcia --- .github/workflows/ci-pipeline.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 8573cf621a5c7b..2b3e4912eea8ca 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -105,12 +105,17 @@ jobs: ref: ${{github.event.pull_request.head.ref}} repository: ${{github.event.pull_request.head.repo.full_name}} token: ${{ secrets.BITNAMI_BOT_TOKEN }} - # We need to perform a full clone to re-generate the changelog - fetch-depth: 0 - name: Setup git configuration run: | git config user.name "Bitnami Containers" git config user.email "bitnami-bot@vmware.com" + # In order to avoid doing a full clone (which would fetch the index branch), we + # unshallow the clone only using the main branch. We need to get the tags to + # regenerate the changelog too + - name: Unshallow main branch and get tags + run: | + git fetch origin main --unshallow + git fetch --tags - name: Install conventional-changelog-cli run: npm install -g conventional-changelog-cli - id: generate-changelog From f4a3cb47a88ba31021cffe6de55a306695020f2d Mon Sep 17 00:00:00 2001 From: Javier Salmeron Garcia Date: Mon, 29 Apr 2024 16:36:21 +0200 Subject: [PATCH 3/5] chore: :wrench: Do not scan CHANGELOG.md files Signed-off-by: Javier Salmeron Garcia --- .github/workflows/markdown-linter.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/markdown-linter.yml b/.github/workflows/markdown-linter.yml index db55a9b60a7b76..e12e454d258ea2 100644 --- a/.github/workflows/markdown-linter.yml +++ b/.github/workflows/markdown-linter.yml @@ -8,6 +8,7 @@ on: - main paths: - '**.md' + - '!**/CHANGELOG.md' # Remove all permissions by default permissions: {} jobs: From e472bfe4297c34d11fbe659680433e4df3b002cf Mon Sep 17 00:00:00 2001 From: Javier Salmeron Garcia Date: Thu, 16 May 2024 15:35:41 +0200 Subject: [PATCH 4/5] chore: :see_no_evil: Update .helmignore files Signed-off-by: Javier Salmeron Garcia --- bitnami/airflow/.helmignore | 2 ++ bitnami/apache/.helmignore | 2 ++ bitnami/apisix/.helmignore | 2 ++ bitnami/appsmith/.helmignore | 2 ++ bitnami/argo-cd/.helmignore | 2 ++ bitnami/argo-workflows/.helmignore | 2 ++ bitnami/aspnet-core/.helmignore | 2 ++ bitnami/cassandra/.helmignore | 2 ++ bitnami/cert-manager/.helmignore | 2 ++ bitnami/clickhouse/.helmignore | 2 ++ bitnami/common/.helmignore | 2 ++ bitnami/concourse/.helmignore | 2 ++ bitnami/consul/.helmignore | 2 ++ bitnami/contour/.helmignore | 2 ++ bitnami/deepspeed/.helmignore | 2 ++ bitnami/discourse/.helmignore | 2 ++ bitnami/dokuwiki/.helmignore | 2 ++ bitnami/drupal/.helmignore | 2 ++ bitnami/ejbca/.helmignore | 2 ++ bitnami/elasticsearch/.helmignore | 2 ++ bitnami/etcd/.helmignore | 2 ++ bitnami/external-dns/.helmignore | 2 ++ bitnami/flink/.helmignore | 2 ++ bitnami/fluent-bit/.helmignore | 2 ++ bitnami/fluentd/.helmignore | 2 ++ bitnami/flux/.helmignore | 2 ++ bitnami/ghost/.helmignore | 2 ++ bitnami/gitea/.helmignore | 2 ++ bitnami/grafana-loki/.helmignore | 2 ++ bitnami/grafana-mimir/.helmignore | 2 ++ bitnami/grafana-operator/.helmignore | 2 ++ bitnami/grafana-tempo/.helmignore | 2 ++ bitnami/grafana/.helmignore | 2 ++ bitnami/haproxy/.helmignore | 2 ++ bitnami/harbor/.helmignore | 2 ++ bitnami/influxdb/.helmignore | 2 ++ bitnami/jaeger/.helmignore | 2 ++ bitnami/jenkins/.helmignore | 2 ++ bitnami/joomla/.helmignore | 2 ++ bitnami/jupyterhub/.helmignore | 2 ++ bitnami/kafka/.helmignore | 2 ++ bitnami/keycloak/.helmignore | 2 ++ bitnami/kiam/.helmignore | 2 ++ bitnami/kibana/.helmignore | 2 ++ bitnami/kong/.helmignore | 2 ++ bitnami/kube-prometheus/.helmignore | 2 ++ bitnami/kube-state-metrics/.helmignore | 2 ++ bitnami/kubeapps/.helmignore | 2 ++ bitnami/kuberay/.helmignore | 2 ++ bitnami/kubernetes-event-exporter/.helmignore | 2 ++ bitnami/logstash/.helmignore | 2 ++ bitnami/magento/.helmignore | 2 ++ bitnami/mariadb-galera/.helmignore | 2 ++ bitnami/mariadb/.helmignore | 2 ++ bitnami/mastodon/.helmignore | 2 ++ bitnami/matomo/.helmignore | 2 ++ bitnami/mediawiki/.helmignore | 2 ++ bitnami/memcached/.helmignore | 2 ++ bitnami/metallb/.helmignore | 2 ++ bitnami/metrics-server/.helmignore | 2 ++ bitnami/milvus/.helmignore | 2 ++ bitnami/minio/.helmignore | 2 ++ bitnami/mlflow/.helmignore | 2 ++ bitnami/mongodb-sharded/.helmignore | 2 ++ bitnami/mongodb/.helmignore | 2 ++ bitnami/moodle/.helmignore | 2 ++ bitnami/multus-cni/.helmignore | 2 ++ bitnami/mysql/.helmignore | 2 ++ bitnami/nats/.helmignore | 2 ++ bitnami/nginx-ingress-controller/.helmignore | 2 ++ bitnami/nginx/.helmignore | 2 ++ bitnami/node-exporter/.helmignore | 2 ++ bitnami/oauth2-proxy/.helmignore | 2 ++ bitnami/odoo/.helmignore | 2 ++ bitnami/opencart/.helmignore | 2 ++ bitnami/opensearch/.helmignore | 2 ++ bitnami/parse/.helmignore | 2 ++ bitnami/phpbb/.helmignore | 2 ++ bitnami/phpmyadmin/.helmignore | 2 ++ bitnami/pinniped/.helmignore | 2 ++ bitnami/postgresql-ha/.helmignore | 2 ++ bitnami/postgresql/.helmignore | 2 ++ bitnami/prestashop/.helmignore | 2 ++ bitnami/prometheus/.helmignore | 2 ++ bitnami/pytorch/.helmignore | 2 ++ bitnami/rabbitmq-cluster-operator/.helmignore | 2 ++ bitnami/rabbitmq/.helmignore | 2 ++ bitnami/redis-cluster/.helmignore | 2 ++ bitnami/redis/.helmignore | 2 ++ bitnami/redmine/.helmignore | 2 ++ bitnami/schema-registry/.helmignore | 2 ++ bitnami/sealed-secrets/.helmignore | 2 ++ bitnami/seaweedfs/.helmignore | 2 ++ bitnami/solr/.helmignore | 2 ++ bitnami/sonarqube/.helmignore | 2 ++ bitnami/spark/.helmignore | 2 ++ bitnami/spring-cloud-dataflow/.helmignore | 2 ++ bitnami/supabase/.helmignore | 2 ++ bitnami/tensorflow-resnet/.helmignore | 2 ++ bitnami/thanos/.helmignore | 2 ++ bitnami/tomcat/.helmignore | 2 ++ bitnami/vault/.helmignore | 2 ++ bitnami/whereabouts/.helmignore | 2 ++ bitnami/wildfly/.helmignore | 2 ++ bitnami/wordpress/.helmignore | 2 ++ bitnami/zookeeper/.helmignore | 2 ++ template/.helmignore | 2 ++ 107 files changed, 214 insertions(+) diff --git a/bitnami/airflow/.helmignore b/bitnami/airflow/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/airflow/.helmignore +++ b/bitnami/airflow/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/apache/.helmignore b/bitnami/apache/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/apache/.helmignore +++ b/bitnami/apache/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/apisix/.helmignore b/bitnami/apisix/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/apisix/.helmignore +++ b/bitnami/apisix/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/appsmith/.helmignore b/bitnami/appsmith/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/appsmith/.helmignore +++ b/bitnami/appsmith/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/argo-cd/.helmignore b/bitnami/argo-cd/.helmignore index 6ce02301551809..e64182bf28880d 100644 --- a/bitnami/argo-cd/.helmignore +++ b/bitnami/argo-cd/.helmignore @@ -23,3 +23,5 @@ .vscode/ # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/argo-workflows/.helmignore b/bitnami/argo-workflows/.helmignore index 6ce02301551809..e64182bf28880d 100644 --- a/bitnami/argo-workflows/.helmignore +++ b/bitnami/argo-workflows/.helmignore @@ -23,3 +23,5 @@ .vscode/ # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/aspnet-core/.helmignore b/bitnami/aspnet-core/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/aspnet-core/.helmignore +++ b/bitnami/aspnet-core/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/cassandra/.helmignore b/bitnami/cassandra/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/cassandra/.helmignore +++ b/bitnami/cassandra/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/cert-manager/.helmignore b/bitnami/cert-manager/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/cert-manager/.helmignore +++ b/bitnami/cert-manager/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/clickhouse/.helmignore b/bitnami/clickhouse/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/clickhouse/.helmignore +++ b/bitnami/clickhouse/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/common/.helmignore b/bitnami/common/.helmignore index 7c7c21d6596bcd..d0e10845d26315 100644 --- a/bitnami/common/.helmignore +++ b/bitnami/common/.helmignore @@ -22,3 +22,5 @@ .vscode/ # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/concourse/.helmignore b/bitnami/concourse/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/concourse/.helmignore +++ b/bitnami/concourse/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/consul/.helmignore b/bitnami/consul/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/consul/.helmignore +++ b/bitnami/consul/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/contour/.helmignore b/bitnami/contour/.helmignore index 7c7c21d6596bcd..d0e10845d26315 100644 --- a/bitnami/contour/.helmignore +++ b/bitnami/contour/.helmignore @@ -22,3 +22,5 @@ .vscode/ # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/deepspeed/.helmignore b/bitnami/deepspeed/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/deepspeed/.helmignore +++ b/bitnami/deepspeed/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/discourse/.helmignore b/bitnami/discourse/.helmignore index 6ce02301551809..e64182bf28880d 100644 --- a/bitnami/discourse/.helmignore +++ b/bitnami/discourse/.helmignore @@ -23,3 +23,5 @@ .vscode/ # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/dokuwiki/.helmignore b/bitnami/dokuwiki/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/dokuwiki/.helmignore +++ b/bitnami/dokuwiki/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/drupal/.helmignore b/bitnami/drupal/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/drupal/.helmignore +++ b/bitnami/drupal/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/ejbca/.helmignore b/bitnami/ejbca/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/ejbca/.helmignore +++ b/bitnami/ejbca/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/elasticsearch/.helmignore b/bitnami/elasticsearch/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/elasticsearch/.helmignore +++ b/bitnami/elasticsearch/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/etcd/.helmignore b/bitnami/etcd/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/etcd/.helmignore +++ b/bitnami/etcd/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/external-dns/.helmignore b/bitnami/external-dns/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/external-dns/.helmignore +++ b/bitnami/external-dns/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/flink/.helmignore b/bitnami/flink/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/flink/.helmignore +++ b/bitnami/flink/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/fluent-bit/.helmignore b/bitnami/fluent-bit/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/fluent-bit/.helmignore +++ b/bitnami/fluent-bit/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/fluentd/.helmignore b/bitnami/fluentd/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/fluentd/.helmignore +++ b/bitnami/fluentd/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/flux/.helmignore b/bitnami/flux/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/flux/.helmignore +++ b/bitnami/flux/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/ghost/.helmignore b/bitnami/ghost/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/ghost/.helmignore +++ b/bitnami/ghost/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/gitea/.helmignore b/bitnami/gitea/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/gitea/.helmignore +++ b/bitnami/gitea/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/grafana-loki/.helmignore b/bitnami/grafana-loki/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/grafana-loki/.helmignore +++ b/bitnami/grafana-loki/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/grafana-mimir/.helmignore b/bitnami/grafana-mimir/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/grafana-mimir/.helmignore +++ b/bitnami/grafana-mimir/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/grafana-operator/.helmignore b/bitnami/grafana-operator/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/grafana-operator/.helmignore +++ b/bitnami/grafana-operator/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/grafana-tempo/.helmignore b/bitnami/grafana-tempo/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/grafana-tempo/.helmignore +++ b/bitnami/grafana-tempo/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/grafana/.helmignore b/bitnami/grafana/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/grafana/.helmignore +++ b/bitnami/grafana/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/haproxy/.helmignore b/bitnami/haproxy/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/haproxy/.helmignore +++ b/bitnami/haproxy/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/harbor/.helmignore b/bitnami/harbor/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/harbor/.helmignore +++ b/bitnami/harbor/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/influxdb/.helmignore b/bitnami/influxdb/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/influxdb/.helmignore +++ b/bitnami/influxdb/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/jaeger/.helmignore b/bitnami/jaeger/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/jaeger/.helmignore +++ b/bitnami/jaeger/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/jenkins/.helmignore b/bitnami/jenkins/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/jenkins/.helmignore +++ b/bitnami/jenkins/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/joomla/.helmignore b/bitnami/joomla/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/joomla/.helmignore +++ b/bitnami/joomla/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/jupyterhub/.helmignore b/bitnami/jupyterhub/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/jupyterhub/.helmignore +++ b/bitnami/jupyterhub/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/kafka/.helmignore b/bitnami/kafka/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/kafka/.helmignore +++ b/bitnami/kafka/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/keycloak/.helmignore b/bitnami/keycloak/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/keycloak/.helmignore +++ b/bitnami/keycloak/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/kiam/.helmignore b/bitnami/kiam/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/kiam/.helmignore +++ b/bitnami/kiam/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/kibana/.helmignore b/bitnami/kibana/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/kibana/.helmignore +++ b/bitnami/kibana/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/kong/.helmignore b/bitnami/kong/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/kong/.helmignore +++ b/bitnami/kong/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/kube-prometheus/.helmignore b/bitnami/kube-prometheus/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/kube-prometheus/.helmignore +++ b/bitnami/kube-prometheus/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/kube-state-metrics/.helmignore b/bitnami/kube-state-metrics/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/kube-state-metrics/.helmignore +++ b/bitnami/kube-state-metrics/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/kubeapps/.helmignore b/bitnami/kubeapps/.helmignore index 46d67d5b770de5..34d55e3e796208 100644 --- a/bitnami/kubeapps/.helmignore +++ b/bitnami/kubeapps/.helmignore @@ -24,3 +24,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/kuberay/.helmignore b/bitnami/kuberay/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/kuberay/.helmignore +++ b/bitnami/kuberay/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/kubernetes-event-exporter/.helmignore b/bitnami/kubernetes-event-exporter/.helmignore index 7c7c21d6596bcd..d0e10845d26315 100644 --- a/bitnami/kubernetes-event-exporter/.helmignore +++ b/bitnami/kubernetes-event-exporter/.helmignore @@ -22,3 +22,5 @@ .vscode/ # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/logstash/.helmignore b/bitnami/logstash/.helmignore index 5f171f33ad5e0a..2d40343dbe3122 100644 --- a/bitnami/logstash/.helmignore +++ b/bitnami/logstash/.helmignore @@ -21,3 +21,5 @@ *.tmproj files/conf/README.md# img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/magento/.helmignore b/bitnami/magento/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/magento/.helmignore +++ b/bitnami/magento/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/mariadb-galera/.helmignore b/bitnami/mariadb-galera/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/mariadb-galera/.helmignore +++ b/bitnami/mariadb-galera/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/mariadb/.helmignore b/bitnami/mariadb/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/mariadb/.helmignore +++ b/bitnami/mariadb/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/mastodon/.helmignore b/bitnami/mastodon/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/mastodon/.helmignore +++ b/bitnami/mastodon/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/matomo/.helmignore b/bitnami/matomo/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/matomo/.helmignore +++ b/bitnami/matomo/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/mediawiki/.helmignore b/bitnami/mediawiki/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/mediawiki/.helmignore +++ b/bitnami/mediawiki/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/memcached/.helmignore b/bitnami/memcached/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/memcached/.helmignore +++ b/bitnami/memcached/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/metallb/.helmignore b/bitnami/metallb/.helmignore index 7c7c21d6596bcd..d0e10845d26315 100644 --- a/bitnami/metallb/.helmignore +++ b/bitnami/metallb/.helmignore @@ -22,3 +22,5 @@ .vscode/ # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/metrics-server/.helmignore b/bitnami/metrics-server/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/metrics-server/.helmignore +++ b/bitnami/metrics-server/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/milvus/.helmignore b/bitnami/milvus/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/milvus/.helmignore +++ b/bitnami/milvus/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/minio/.helmignore b/bitnami/minio/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/minio/.helmignore +++ b/bitnami/minio/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/mlflow/.helmignore b/bitnami/mlflow/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/mlflow/.helmignore +++ b/bitnami/mlflow/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/mongodb-sharded/.helmignore b/bitnami/mongodb-sharded/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/mongodb-sharded/.helmignore +++ b/bitnami/mongodb-sharded/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/mongodb/.helmignore b/bitnami/mongodb/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/mongodb/.helmignore +++ b/bitnami/mongodb/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/moodle/.helmignore b/bitnami/moodle/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/moodle/.helmignore +++ b/bitnami/moodle/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/multus-cni/.helmignore b/bitnami/multus-cni/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/multus-cni/.helmignore +++ b/bitnami/multus-cni/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/mysql/.helmignore b/bitnami/mysql/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/mysql/.helmignore +++ b/bitnami/mysql/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/nats/.helmignore b/bitnami/nats/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/nats/.helmignore +++ b/bitnami/nats/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/nginx-ingress-controller/.helmignore b/bitnami/nginx-ingress-controller/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/nginx-ingress-controller/.helmignore +++ b/bitnami/nginx-ingress-controller/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/nginx/.helmignore b/bitnami/nginx/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/nginx/.helmignore +++ b/bitnami/nginx/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/node-exporter/.helmignore b/bitnami/node-exporter/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/node-exporter/.helmignore +++ b/bitnami/node-exporter/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/oauth2-proxy/.helmignore b/bitnami/oauth2-proxy/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/oauth2-proxy/.helmignore +++ b/bitnami/oauth2-proxy/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/odoo/.helmignore b/bitnami/odoo/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/odoo/.helmignore +++ b/bitnami/odoo/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/opencart/.helmignore b/bitnami/opencart/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/opencart/.helmignore +++ b/bitnami/opencart/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/opensearch/.helmignore b/bitnami/opensearch/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/opensearch/.helmignore +++ b/bitnami/opensearch/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/parse/.helmignore b/bitnami/parse/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/parse/.helmignore +++ b/bitnami/parse/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/phpbb/.helmignore b/bitnami/phpbb/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/phpbb/.helmignore +++ b/bitnami/phpbb/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/phpmyadmin/.helmignore b/bitnami/phpmyadmin/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/phpmyadmin/.helmignore +++ b/bitnami/phpmyadmin/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/pinniped/.helmignore b/bitnami/pinniped/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/pinniped/.helmignore +++ b/bitnami/pinniped/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/postgresql-ha/.helmignore b/bitnami/postgresql-ha/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/postgresql-ha/.helmignore +++ b/bitnami/postgresql-ha/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/postgresql/.helmignore b/bitnami/postgresql/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/postgresql/.helmignore +++ b/bitnami/postgresql/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/prestashop/.helmignore b/bitnami/prestashop/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/prestashop/.helmignore +++ b/bitnami/prestashop/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/prometheus/.helmignore b/bitnami/prometheus/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/prometheus/.helmignore +++ b/bitnami/prometheus/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/pytorch/.helmignore b/bitnami/pytorch/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/pytorch/.helmignore +++ b/bitnami/pytorch/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/rabbitmq-cluster-operator/.helmignore b/bitnami/rabbitmq-cluster-operator/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/rabbitmq-cluster-operator/.helmignore +++ b/bitnami/rabbitmq-cluster-operator/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/rabbitmq/.helmignore b/bitnami/rabbitmq/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/rabbitmq/.helmignore +++ b/bitnami/rabbitmq/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/redis-cluster/.helmignore b/bitnami/redis-cluster/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/redis-cluster/.helmignore +++ b/bitnami/redis-cluster/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/redis/.helmignore b/bitnami/redis/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/redis/.helmignore +++ b/bitnami/redis/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/redmine/.helmignore b/bitnami/redmine/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/redmine/.helmignore +++ b/bitnami/redmine/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/schema-registry/.helmignore b/bitnami/schema-registry/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/schema-registry/.helmignore +++ b/bitnami/schema-registry/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/sealed-secrets/.helmignore b/bitnami/sealed-secrets/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/sealed-secrets/.helmignore +++ b/bitnami/sealed-secrets/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/seaweedfs/.helmignore b/bitnami/seaweedfs/.helmignore index f0c13194444163..a0a332a53c8243 100644 --- a/bitnami/seaweedfs/.helmignore +++ b/bitnami/seaweedfs/.helmignore @@ -19,3 +19,5 @@ .project .idea/ *.tmproj +# Changelog +CHANGELOG.md diff --git a/bitnami/solr/.helmignore b/bitnami/solr/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/solr/.helmignore +++ b/bitnami/solr/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/sonarqube/.helmignore b/bitnami/sonarqube/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/sonarqube/.helmignore +++ b/bitnami/sonarqube/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/spark/.helmignore b/bitnami/spark/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/spark/.helmignore +++ b/bitnami/spark/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/spring-cloud-dataflow/.helmignore b/bitnami/spring-cloud-dataflow/.helmignore index 6ce02301551809..e64182bf28880d 100644 --- a/bitnami/spring-cloud-dataflow/.helmignore +++ b/bitnami/spring-cloud-dataflow/.helmignore @@ -23,3 +23,5 @@ .vscode/ # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/supabase/.helmignore b/bitnami/supabase/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/supabase/.helmignore +++ b/bitnami/supabase/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/tensorflow-resnet/.helmignore b/bitnami/tensorflow-resnet/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/tensorflow-resnet/.helmignore +++ b/bitnami/tensorflow-resnet/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/thanos/.helmignore b/bitnami/thanos/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/thanos/.helmignore +++ b/bitnami/thanos/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/tomcat/.helmignore b/bitnami/tomcat/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/tomcat/.helmignore +++ b/bitnami/tomcat/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/vault/.helmignore b/bitnami/vault/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/vault/.helmignore +++ b/bitnami/vault/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/whereabouts/.helmignore b/bitnami/whereabouts/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/whereabouts/.helmignore +++ b/bitnami/whereabouts/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/wildfly/.helmignore b/bitnami/wildfly/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/wildfly/.helmignore +++ b/bitnami/wildfly/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/wordpress/.helmignore b/bitnami/wordpress/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/wordpress/.helmignore +++ b/bitnami/wordpress/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/zookeeper/.helmignore b/bitnami/zookeeper/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/bitnami/zookeeper/.helmignore +++ b/bitnami/zookeeper/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/template/.helmignore b/template/.helmignore index fb56657ab4a7df..207983f36871b5 100644 --- a/template/.helmignore +++ b/template/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md From 9d7b2bed1f36fae957118ad843917acd2ceadcf2 Mon Sep 17 00:00:00 2001 From: Javier Salmeron Garcia Date: Tue, 21 May 2024 10:18:06 +0200 Subject: [PATCH 5/5] refactor: :recycle: Separate push-tag section Signed-off-by: Javier Salmeron Garcia --- .github/workflows/cd-pipeline.yml | 40 ++++++++++++++++++------------- 1 file changed, 24 insertions(+), 16 deletions(-) diff --git a/.github/workflows/cd-pipeline.yml b/.github/workflows/cd-pipeline.yml index 8f4bec1b430c08..9cdc16d8051b1f 100644 --- a/.github/workflows/cd-pipeline.yml +++ b/.github/workflows/cd-pipeline.yml @@ -25,7 +25,6 @@ jobs: with: path: charts fetch-depth: 2 # to be able to obtain files changed in the latest commit - token: ${{ secrets.BITNAMI_BOT_TOKEN }} - id: get-chart name: 'Get modified charts' run: | @@ -60,21 +59,6 @@ jobs: with: script: | core.setFailed('${{ steps.get-chart.outputs.error }}') - - id: push-tag - name: 'Push tag' - if: ${{ steps.get-chart.outputs.result == 'ok' }} - env: - CHART: ${{ steps.get-chart.outputs.chart }} - run: | - cd charts - # Get chart version and list of tags - chart_version="$(yq e '.version' bitnami/${CHART}/Chart.yaml)" - git fetch --tags - # If the tag does not exist, create and push it (this allows re-executing the job) - if ! git tag | grep ${CHART}/${chart_version}; then - git tag ${CHART}/${chart_version} - git push --tags - fi vib-publish: runs-on: ubuntu-latest needs: get-chart @@ -172,6 +156,30 @@ jobs: echo "Could not update the index after $max_attempts attempts" exit 1 fi + push-tag: + runs-on: ubuntu-latest + permissions: + contents: write + needs: + - get-chart + - vib-publish + name: Push tag + if: ${{ needs.get-chart.outputs.result == 'ok' }} + steps: + - id: push-tag + name: 'Push tag' + env: + CHART: ${{ needs.get-chart.outputs.chart }} + run: | + cd charts + # Get chart version and list of tags + chart_version="$(yq e '.version' bitnami/${CHART}/Chart.yaml)" + git fetch --tags + # If the tag does not exist, create and push it (this allows re-executing the job) + if ! git tag | grep ${CHART}/${chart_version}; then + git tag ${CHART}/${chart_version} + git push --tags + fi # If the CD Pipeline does not succeed we should notify the interested agents slack-notif: runs-on: ubuntu-latest