Skip to content

Commit

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

Signed-off-by: nιcнolaѕ wιlde <ncwilde43@gmail.com>
  • Loading branch information
nicholaswilde committed Jun 30, 2021
1 parent ab60966 commit 613deb0
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 27 deletions.
15 changes: 10 additions & 5 deletions charts/diun/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
apiVersion: v2
appVersion: 4.17.0
version: 0.3.0
appVersion: 4.19.0
version: 1.0.0
name: diun
description: Docker image update notifier
type: application
home: "https://github.com/nicholaswilde/helm-charts/tree/main/charts/diun"
icon: "https://raw.githubusercontent.com/crazy-max/diun/master/.res/diun.png"
dependencies:
- name: common
version: ~0.1.8
version: ~0.1.13
repository: https://nicholaswilde.github.io/helm-charts/
keywords:
- docker
Expand All @@ -25,7 +25,12 @@ maintainers:
email: ncwilde43@gmail.com
annotations:
artifacthub.io/changes: |
- Bump tag to 4.17.0
- kind: changed
description: Bump tag to 4.19.0
- kind: changed
description: Bump common to 0.1.13
- kind: changed
description: Simplify values.yaml
artifacthub.io/images: |
- name: diun
image: ghcr.io/crazy-max/diun:4.17.0
image: ghcr.io/crazy-max/diun:4.19.0
4 changes: 2 additions & 2 deletions charts/diun/README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# diun

![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.17.0](https://img.shields.io/badge/AppVersion-4.17.0-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: 4.19.0](https://img.shields.io/badge/AppVersion-4.19.0-informational?style=flat-square)

Docker image update notifier

## Dependencies

| 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
33 changes: 13 additions & 20 deletions charts/diun/values.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
---
# Default values for Diun
# 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: ghcr.io/crazy-max/diun
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "4.17.0"
tag: "4.19.0"

secret: {}
# DIUN_NOTIF_GOTIFY_TOKEN: ""

service:
enabled: false

# See more environment variables in the diun documentation
# https://crazymax.dev/diun/config/
env:
# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
TZ: "America/Los_Angeles"
LOG_LEVEL: "info"
LOG_JSON: "false"
Expand All @@ -27,6 +31,7 @@ env:
DIUN_NOTIF_GOTIFY_TIMEOUT: "10s"
# Kubernetes
DIUN_PROVIDERS_KUBERNETES: "true"

rbac:
rules:
- apiGroups:
Expand All @@ -37,26 +42,14 @@ rbac:
- get
- watch
- list

persistence:
data:
enabled: false
emptyDir: false
mountPath: /data
## Template 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

serviceAccount:
create: true

0 comments on commit 613deb0

Please sign in to comment.