diff --git a/charts/ntfy/Chart.yaml b/charts/ntfy/Chart.yaml index ec8fa63..ddcb58e 100644 --- a/charts/ntfy/Chart.yaml +++ b/charts/ntfy/Chart.yaml @@ -15,10 +15,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.5-alpha +version: 0.1.6-alpha # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "v2.21.0" +appVersion: "v2.26.0" diff --git a/charts/ntfy/README.md b/charts/ntfy/README.md index 5ff077e..3a9bb19 100644 --- a/charts/ntfy/README.md +++ b/charts/ntfy/README.md @@ -5,7 +5,7 @@ Custom Helm-Chart for NTFY > [!IMPORTANT] > Only configured for Traefik-Ingress, since **IngressRoute** is being used. -![Version: 0.1.5-alpha](https://img.shields.io/badge/Version-0.1.5--alpha-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.21.0](https://img.shields.io/badge/AppVersion-v2.21.0-informational?style=flat-square) +![Version: 0.1.6-alpha](https://img.shields.io/badge/Version-0.1.6--alpha-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.26.0](https://img.shields.io/badge/AppVersion-v2.26.0-informational?style=flat-square) ## Values @@ -93,7 +93,7 @@ Custom Helm-Chart for NTFY | containers.ntfy.additionalVolumeMounts | object | `{}` | Additional Volume-Mounts for Container | | containers.ntfy.image.pullPolicy | string | `"IfNotPresent"` | Container-Image pull-policy | | containers.ntfy.image.repository | string | `"docker.io/binwiederhier/ntfy"` | Container-Image-Repository | -| containers.ntfy.image.tag | string | `"v2.21.0"` | Container-Image-Tag (by default `.Chart.AppVersion` will be used) | +| containers.ntfy.image.tag | string | `"v2.26.0"` | Container-Image-Tag (by default `.Chart.AppVersion` will be used) | | containers.ntfy.resources | object | `{}` | Container Resources | | containers.ntfy.securityContext | object | `{"allowPrivilegeEscalation":false,"privileged":false,"runAsGroup":10000,"runAsNonRoot":true,"runAsUser":10000}` | Container Security Context | | containers.ntfy.service.type | string | `"ClusterIP"` | Service Type | @@ -121,7 +121,7 @@ Custom Helm-Chart for NTFY |-----|------|---------|-------------| | ingressRoute.certResolver | string | `""` | Name of the Certificate Resolver to use to generate automatic TLS certificates. https://doc.traefik.io/traefik/reference/install-configuration/tls/certificate-resolvers/overview/ | | ingressRoute.enabled | bool | `false` | Whether to enable the IngressRoute for NTFY | -| ingressRoute.entryPoints | list | `["websecure"]` | Listening for Incoming Connections/Requests https://doc.traefik.io/traefik/reference/install-configuration/entrypoints/ | +| ingressRoute.entryPoints | list | `["websecure"]` | Traefik EntryPoints https://doc.traefik.io/traefik/reference/install-configuration/entrypoints/ | | ingressRoute.host | string | `""` | Hostname | ### NTFY-Persistence specifications diff --git a/charts/ntfy/values.yaml b/charts/ntfy/values.yaml index ba4fe86..006095b 100644 --- a/charts/ntfy/values.yaml +++ b/charts/ntfy/values.yaml @@ -67,7 +67,7 @@ containers: # # -- Container-Image-Tag (by default `.Chart.AppVersion` will be used) # @section -- NTFY-Container specifications - tag: "v2.21.0" + tag: "v2.26.0" # # -- Container-Image pull-policy # @section -- NTFY-Container specifications @@ -503,7 +503,7 @@ ingressRoute: # @section -- IngressRoute specifications enabled: false # - # -- Listening for Incoming Connections/Requests + # -- Traefik EntryPoints # https://doc.traefik.io/traefik/reference/install-configuration/entrypoints/ # @section -- IngressRoute specifications entryPoints: diff --git a/scripts/pre-commit.sh b/scripts/pre-commit.sh index 5396dd5..cf5d70c 100755 --- a/scripts/pre-commit.sh +++ b/scripts/pre-commit.sh @@ -53,6 +53,12 @@ for f in "${chart_changes[@]}"; do if printf '%s\n' "${checked_charts[@]}" | grep -qx "$chart_dir"; then continue fi + # + # Skip version-comparison between HEAD and STAGED when current branch is not 'main' + if [[ $(git branch --show-current) != "main" ]]; then + echo "INFO: Skip since current branch is not 'main'" + continue + fi echo "[*] chart_dir=${chart_dir}" checked_charts+=("$chart_dir") chart_yaml="$chart_dir/Chart.yaml"