Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/ntfy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions charts/ntfy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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 |
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/ntfy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down
6 changes: 6 additions & 0 deletions scripts/pre-commit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down