diff --git a/.github/workflows/cd-pipeline.yml b/.github/workflows/cd-pipeline.yml index 8d8bda015d..f45800b59c 100644 --- a/.github/workflows/cd-pipeline.yml +++ b/.github/workflows/cd-pipeline.yml @@ -109,7 +109,7 @@ jobs: helm plugin add https://github.com/zoobab/helm_file_repo - 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 }} @@ -164,6 +164,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 diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 1c296be1ab..aa6ff33ede 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: @@ -109,6 +109,40 @@ jobs: 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 + 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 diff --git a/.github/workflows/markdown-linter.yml b/.github/workflows/markdown-linter.yml index feb15366b4..64cbdd08fa 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: diff --git a/bitnami/airflow/.helmignore b/bitnami/airflow/.helmignore index fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 6ce0230155..e64182bf28 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 6ce0230155..e64182bf28 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 7c7c21d659..d0e10845d2 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 7c7c21d659..d0e10845d2 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 fb56657ab4..207983f368 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 6ce0230155..e64182bf28 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 100644 --- a/bitnami/jaeger/.helmignore +++ b/bitnami/jaeger/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/janusgraph/.helmignore b/bitnami/janusgraph/.helmignore index f0c1319444..a0a332a53c 100644 --- a/bitnami/janusgraph/.helmignore +++ b/bitnami/janusgraph/.helmignore @@ -19,3 +19,5 @@ .project .idea/ *.tmproj +# Changelog +CHANGELOG.md diff --git a/bitnami/jenkins/.helmignore b/bitnami/jenkins/.helmignore index fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 46d67d5b77..34d55e3e79 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 fb56657ab4..207983f368 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 7c7c21d659..d0e10845d2 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 5f171f33ad..2d40343dbe 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 7c7c21d659..d0e10845d2 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 f0c1319444..a0a332a53c 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 6ce0230155..e64182bf28 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 100644 --- a/bitnami/tomcat/.helmignore +++ b/bitnami/tomcat/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/valkey/.helmignore b/bitnami/valkey/.helmignore index fb56657ab4..207983f368 100644 --- a/bitnami/valkey/.helmignore +++ b/bitnami/valkey/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md diff --git a/bitnami/vault/.helmignore b/bitnami/vault/.helmignore index fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 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 fb56657ab4..207983f368 100644 --- a/template/.helmignore +++ b/template/.helmignore @@ -21,3 +21,5 @@ *.tmproj # img folder img/ +# Changelog +CHANGELOG.md