Skip to content

Commit

Permalink
feat(domain-watch): Add default ServiceMonitor values
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed Nov 30, 2023
1 parent d0f0947 commit 19cde1c
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 5 deletions.
6 changes: 3 additions & 3 deletions charts/domain-watch/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Tool to watch whois reports and notify when statuses change or expi
home: https://charts.gabe565.com/charts/domain-watch/
icon: https://raw.githubusercontent.com/gabe565/domain-watch/ee028db206ea80c2617dd74a87193191a25a0a8a/assets/icon.svg
type: application
version: 0.5.2
version: 0.5.3
# renovate datasource=docker depName=ghcr.io/gabe565/domain-watch
appVersion: latest
kubeVersion: ">=1.22.0-0"
Expand All @@ -20,8 +20,8 @@ sources:
- https://github.com/gabe565/domain-watch
annotations:
artifacthub.io/changes: |-
- kind: changed
description: Pin bjw-s common chart links to v1
- kind: added
description: Add default ServiceMonitor values
artifacthub.io/links: |-
- name: App Source
url: https://github.com/gabe565/domain-watch
Expand Down
7 changes: 5 additions & 2 deletions charts/domain-watch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<img src="https://raw.githubusercontent.com/gabe565/domain-watch/ee028db206ea80c2617dd74a87193191a25a0a8a/assets/icon.svg" align="right" width="92" alt="domain-watch logo">

![Version: 0.5.2](https://img.shields.io/badge/Version-0.5.2-informational?style=flat)
![Version: 0.5.3](https://img.shields.io/badge/Version-0.5.3-informational?style=flat)
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat)
![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat)

Expand All @@ -11,7 +11,7 @@ Tool to watch whois reports and notify when statuses change or expiration is inc
**Homepage:** <https://charts.gabe565.com/charts/domain-watch/>

**This chart is not maintained by the upstream project and any issues with the chart should be raised
[here](https://github.com/gabe565/charts/issues/new?assignees=gabe565&labels=bug&template=bug_report.yaml&name=domain-watch&version=0.5.2)**
[here](https://github.com/gabe565/charts/issues/new?assignees=gabe565&labels=bug&template=bug_report.yaml&name=domain-watch&version=0.5.3)**

## Source Code

Expand Down Expand Up @@ -95,6 +95,9 @@ N/A
| image.pullPolicy | string | `"Always"` | image pull policy |
| image.repository | string | `"ghcr.io/gabe565/domain-watch"` | image repository |
| image.tag | string | `"latest"` | image tag |
| service | object | See [values.yaml](./values.yaml) | Configures service settings for the chart. |
| serviceMonitor.main.enabled | bool | `false` | Enables or disables the serviceMonitor. |
| serviceMonitor.main.endpoints | list | See [values.yaml](./values.yaml) | Configures the endpoints for the serviceMonitor. |

---
Autogenerated from chart metadata using [helm-docs](https://github.com/norwoodj/helm-docs)
24 changes: 24 additions & 0 deletions charts/domain-watch/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,27 @@ env:
WATCH_LOG_LEVEL: info
# -- Log format. Valid options are text, json.
WATCH_LOG_FORMAT: text

# -- Configures service settings for the chart.
# @default -- See [values.yaml](./values.yaml)
service:
main:
enabled: false
ports:
http:
enabled: false
metrics:
port: 9090

serviceMonitor:
main:
# -- Enables or disables the serviceMonitor.
enabled: false
# -- Configures the endpoints for the serviceMonitor.
# @default -- See [values.yaml](./values.yaml)
endpoints:
- port: metrics
scheme: http
path: /metrics
interval: 1m
scrapeTimeout: 10s

0 comments on commit 19cde1c

Please sign in to comment.