Skip to content

Commit

Permalink
[gotify] Bump common to 0.1.13
Browse files Browse the repository at this point in the history
- Bump tag to 2.0.23
- Simplify values.yaml

Signed-off-by: nιcнolaѕ wιlde <ncwilde43@gmail.com>
  • Loading branch information
nicholaswilde committed Jun 30, 2021
1 parent 613deb0 commit 6691497
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 40 deletions.
16 changes: 10 additions & 6 deletions charts/gotify/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
apiVersion: v2
appVersion: 2.0.22
version: 0.2.6
appVersion: 2.0.23
version: 1.0.0
name: gotify
description: a simple server for sending and receiving messages
type: application
home: "https://github.com/nicholaswilde/helm-charts/tree/main/charts/gotify"
dependencies:
- name: common
version: ~0.1.8
version: ~0.1.13
repository: https://nicholaswilde.github.io/helm-charts/
keywords:
- server
Expand All @@ -24,8 +24,12 @@ maintainers:
email: ncwilde43@gmail.com
annotations:
artifacthub.io/changes: |
- Updated tag to 2.0.22
- Changed persistence.data.mountPath to /app/data
- kind: changed
description: Bump common to 0.1.13
- kind: changed
description: Bump tag to 2.0.23
- kind: changed
description: Simplify values.yaml
artifacthub.io/images: |
- name: gotify
image: gotify/server-arm7:2.0.22
image: gotify/server-arm7:2.0.23
5 changes: 2 additions & 3 deletions charts/gotify/README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# gotify

![Version: 0.2.6](https://img.shields.io/badge/Version-0.2.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.0.22](https://img.shields.io/badge/AppVersion-2.0.22-informational?style=flat-square)
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.0.23](https://img.shields.io/badge/AppVersion-2.0.23-informational?style=flat-square)

a simple server for sending and receiving messages

## Requirements

| Repository | Name | Version |
|------------|------|---------|
| https://nicholaswilde.github.io/helm-charts/ | common | ~0.1.8 |
| https://nicholaswilde.github.io/helm-charts/ | common | ~0.1.13 |

## TL;DR
```console
Expand Down Expand Up @@ -53,4 +53,3 @@ This project was started in 2020 by [Nicholas Wilde](http://github.com/nicholasw

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

44 changes: 13 additions & 31 deletions charts/gotify/values.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,24 @@
# Default values for Gotify.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
---
#
# IMPORTANT NOTE
#
# This chart inherits from our common library chart. You can check the default values/options here:
# https://github.com/nicholaswilde/helm-charts/tree/main/charts/common/values.yaml
#

image:
repository: gotify/server-arm7
# repository: gotify/server-arm64
# repository: gotify/server
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "2.0.22"
tag: "2.0.23"

secret:
user: "admin"
pass: "admin"

# See more environment variables in the gotify documentation
# https://gotify.net/docs/config#environment-variables
env:
# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
TZ: "America/Los_Angeles"
Expand Down Expand Up @@ -46,37 +53,12 @@ service:
port: 80

ingress:
enabled: true
annotations:
nginx.ingress.kubernetes.io/whitelist-source-range: 192.168.1.0/24
hosts:
- host: "gotify.192.168.1.189.nip.io"
paths:
- path: "/"
pathType: Prefix
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
enabled: false

persistence:
data:
enabled: false
emptyDir: false
mountPath: /app/data
## gotify downloads data Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
# storageClass: "-"
##
## If you want to reuse an existing claim, you can pass the name of the PVC using
## the existingClaim variable
# existingClaim: your-claim
accessMode: ReadWriteOnce
size: 1Gi
## Do not delete the pvc upon helm uninstall
skipuninstall: false

0 comments on commit 6691497

Please sign in to comment.