From 0b86350eeddcbee863f5b6126a1615d5a0c67a15 Mon Sep 17 00:00:00 2001 From: Christian Knell Date: Tue, 14 Jan 2025 11:50:31 +0100 Subject: [PATCH] bumped app version --- .gitignore | 1 - charts/umami/.helmignore | 3 +++ charts/umami/Chart.yaml | 8 ++++---- charts/umami/README.md | 2 +- charts/umami/values-dev.yaml | 7 +++++++ charts/umami/values.schema.json | 2 +- charts/umami/values.yaml | 2 +- 7 files changed, 17 insertions(+), 8 deletions(-) create mode 100644 charts/umami/values-dev.yaml diff --git a/.gitignore b/.gitignore index 024c4c8c..eb43b165 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,6 @@ # Chart dependencies charts/**/charts/* charts/**/Chart.lock -charts/**/values-*.yaml ### VisualStudioCode ### .vscode/* diff --git a/charts/umami/.helmignore b/charts/umami/.helmignore index 0e8a0eb3..bcf44cdb 100644 --- a/charts/umami/.helmignore +++ b/charts/umami/.helmignore @@ -21,3 +21,6 @@ .idea/ *.tmproj .vscode/ + +# Additional Helm Values for Development or Testing +values-*.yaml diff --git a/charts/umami/Chart.yaml b/charts/umami/Chart.yaml index 6531c86a..e7ae3f12 100644 --- a/charts/umami/Chart.yaml +++ b/charts/umami/Chart.yaml @@ -3,8 +3,8 @@ apiVersion: v2 name: umami description: Umami is a simple, fast, privacy-focused alternative to Google Analytics. type: application -version: 4.0.1 -appVersion: "postgresql-v2.9.0" +version: 4.1.0 +appVersion: "v2.15.1" home: https://github.com/christianhuth/helm-charts icon: https://raw.githubusercontent.com/umami-software/umami/master/public/android-chrome-512x512.png maintainers: @@ -25,8 +25,8 @@ dependencies: annotations: artifacthub.io/category: monitoring-logging artifacthub.io/changes: | - - kind: fixed - description: issue with cloudMode + - kind: changed + description: app version to v2.15.1 artifacthub.io/screenshots: | - title: Umami measures just the important metrics that you care about and everything is displayed on a single, easy to browse page. url: https://umami.is/images/feature-website-stats.png diff --git a/charts/umami/README.md b/charts/umami/README.md index 950c298f..a9bbeb1e 100644 --- a/charts/umami/README.md +++ b/charts/umami/README.md @@ -67,7 +67,7 @@ The command removes all the Kubernetes components associated with the chart and | image.pullPolicy | string | `"Always"` | image pull policy | | image.registry | string | `"ghcr.io"` | image registry | | image.repository | string | `"umami-software/umami"` | image repository | -| image.tag | string | `"postgresql-v2.9.0"` | Overrides the image tag | +| image.tag | string | `"postgresql-v2.15.1"` | Overrides the image tag | | imagePullSecrets | list | `[]` | If defined, uses a Secret to pull an image from a private Docker registry or repository. | | ingress.annotations | object | `{}` | Additional annotations for the Ingress resource | | ingress.className | string | `""` | IngressClass that will be be used to implement the Ingress | diff --git a/charts/umami/values-dev.yaml b/charts/umami/values-dev.yaml new file mode 100644 index 00000000..81a213ea --- /dev/null +++ b/charts/umami/values-dev.yaml @@ -0,0 +1,7 @@ +ingress: + enabled: true + hosts: + - host: umami.127.0.0.1.nip.io + paths: + - path: / + pathType: ImplementationSpecific diff --git a/charts/umami/values.schema.json b/charts/umami/values.schema.json index 6fe0c6e7..61104537 100644 --- a/charts/umami/values.schema.json +++ b/charts/umami/values.schema.json @@ -190,7 +190,7 @@ "type": "string" }, "tag": { - "default": "postgresql-v2.9.0", + "default": "postgresql-v2.15.1", "description": "Overrides the image tag", "required": [], "title": "tag", diff --git a/charts/umami/values.yaml b/charts/umami/values.yaml index 901b3e9c..ce153a52 100644 --- a/charts/umami/values.yaml +++ b/charts/umami/values.yaml @@ -12,7 +12,7 @@ image: # -- image pull policy pullPolicy: Always # -- Overrides the image tag - tag: "postgresql-v2.9.0" + tag: "postgresql-v2.15.1" # -- If defined, uses a Secret to pull an image from a private Docker registry or repository. imagePullSecrets: []