Compare commits

...

13 Commits

Author SHA1 Message Date
205adae5ee chore(deps): update helm/chart-testing-action action to v2.8.0 2026-05-08 23:21:28 +00:00
5be7f9fb44 Merge pull request 'chore(deps): update rclone/rclone to v1.74.1' (#204) from renovate/unified-rclonerclone into main
All checks were successful
lint-and-test / lint-helm (push) Successful in 13s
release-charts-rclone-bucket / release (push) Successful in 18s
lint-and-test / chart-testing (push) Successful in 23s
renovate / renovate (push) Successful in 47s
Reviewed-on: #204
2026-05-08 23:20:45 +00:00
db9509ca97 chore(deps): update rclone/rclone to v1.74.1
All checks were successful
lint-and-test / lint-helm (pull_request) Successful in 14s
lint-and-test / chart-testing (pull_request) Successful in 25s
2026-05-08 23:15:00 +00:00
972bf33a3d feat: change metric ports
All checks were successful
lint-and-test / chart-testing (push) Successful in 31s
release-charts-generic-device-plugin / release (push) Successful in 31s
lint-and-test / lint-helm (push) Successful in 31s
release-charts-rclone-bucket / release (push) Successful in 32s
renovate / renovate (push) Successful in 1m28s
2026-05-08 18:13:43 -05:00
34b8a20da2 fix: wrong selector label
All checks were successful
lint-and-test / lint-helm (push) Successful in 19s
lint-and-test / chart-testing (push) Successful in 29s
release-charts-rclone-bucket / release (push) Successful in 26s
release-charts-cloudflared / release (push) Successful in 29s
renovate / renovate (push) Successful in 1m7s
2026-05-08 17:21:55 -05:00
8d0eff7517 Merge pull request 'chore(deps): update ghcr.io/squat/generic-device-plugin:latest docker digest to 7bc1ece' (#202) from renovate/unified-squatgeneric-device-plugin into main
All checks were successful
lint-and-test / lint-helm (push) Successful in 13s
release-charts-generic-device-plugin / release (push) Successful in 21s
lint-and-test / chart-testing (push) Successful in 33s
renovate / renovate (push) Successful in 57s
2026-05-08 20:23:03 +00:00
f83d0b3013 chore(deps): update ghcr.io/squat/generic-device-plugin:latest docker digest to 7bc1ece
Some checks failed
renovate/stability-days Updates have not met minimum release age requirement
lint-and-test / lint-helm (pull_request) Failing after 20s
lint-and-test / chart-testing (pull_request) Successful in 35s
2026-05-08 20:22:59 +00:00
72ed6b7550 feat: release 0.9.0
Some checks failed
lint-and-test / lint-helm (push) Successful in 16s
release-charts-rclone-bucket / release (push) Successful in 19s
lint-and-test / chart-testing (push) Successful in 46s
renovate / renovate (push) Has been cancelled
2026-05-08 15:22:06 -05:00
f6dc893866 feat: add metrics 2026-05-08 15:21:49 -05:00
ec50f602b0 feat: change service account creation 2026-05-08 15:13:08 -05:00
46507aad6c fix: wrong args
All checks were successful
lint-and-test / lint-helm (push) Successful in 12s
release-charts-cloudflared / release (push) Successful in 21s
lint-and-test / chart-testing (push) Successful in 27s
renovate / renovate (push) Successful in 34s
2026-05-08 00:47:04 -05:00
e8ab4c0132 feat: release 3.2.0
All checks were successful
lint-and-test / lint-helm (push) Successful in 17s
release-charts-cloudflared / release (push) Successful in 23s
lint-and-test / chart-testing (push) Successful in 35s
renovate / renovate (push) Successful in 47s
2026-05-07 23:57:28 -05:00
b19e962009 feat: use identifier for service account 2026-05-07 23:57:08 -05:00
11 changed files with 65 additions and 19 deletions

View File

@@ -42,7 +42,7 @@ jobs:
python-version: '3.14'
- name: Set up Chart Testing
uses: helm/chart-testing-action@v2.7.0
uses: helm/chart-testing-action@v2.8.0
with:
yamale_version: "6.0.0"

View File

@@ -1,6 +1,6 @@
apiVersion: v2
name: cloudflared
version: 3.1.0
version: 3.2.2
description: Cloudflared Tunnel
keywords:
- cloudflare

View File

@@ -1,6 +1,6 @@
# cloudflared
![Version: 3.1.0](https://img.shields.io/badge/Version-3.1.0-informational?style=flat-square) ![AppVersion: 2026.3.0](https://img.shields.io/badge/AppVersion-2026.3.0-informational?style=flat-square)
![Version: 3.2.2](https://img.shields.io/badge/Version-3.2.2-informational?style=flat-square) ![AppVersion: 2026.3.0](https://img.shields.io/badge/AppVersion-2026.3.0-informational?style=flat-square)
Cloudflared Tunnel

View File

@@ -4,14 +4,14 @@
global:
nameOverride: {{ include "cloudflared.name" . }}
fullNameOverride: {{ include "cloudflared.name" . }}
createDefaultServiceAccount: false
createDefaultServiceAccount: true
controllers:
main:
type: deployment
replicas: 1
strategy: Recreate
serviceAccount:
name: {{ include "cloudflared.name" . }}
identifier: {{ .Release.Name }}
containers:
main:
image:
@@ -24,7 +24,8 @@ controllers:
- {{ .Values.protocol }}
- --no-autoupdate
{{- if .Values.metrics.enabled }}
- --metrics 0.0.0.0:20241
- --metrics
- 0.0.0.0:20241
{{- end }}
- run
- --token
@@ -39,10 +40,6 @@ controllers:
{{- with .Values.resources }}
{{- toYaml . | nindent 10 }}
{{ end }}
serviceAccount:
main:
enabled: true
forceRename: {{ include "cloudflared.name" . }}
{{- if .Values.metrics.enabled }}
service:
main:
@@ -56,7 +53,7 @@ serviceMonitor:
selector:
matchLabels:
app.kubernetes.io/name: {{ include "cloudflared.name" . }}
app.kubernetes.io/instance: {{ include "cloudflared.name" . }}
app.kubernetes.io/instance: {{ .Release.Namespace }}
serviceName: '{{ include "bjw-s.common.lib.chart.names.fullname" $ }}'
endpoints:
- port: metrics

View File

@@ -1,6 +1,6 @@
apiVersion: v2
name: generic-device-plugin
version: 0.21.1
version: 0.21.2
description: Generic Device Plugin
keywords:
- generic-device-plugin

View File

@@ -1,6 +1,6 @@
# generic-device-plugin
![Version: 0.21.1](https://img.shields.io/badge/Version-0.21.1-informational?style=flat-square) ![AppVersion: 0.21.1](https://img.shields.io/badge/AppVersion-0.21.1-informational?style=flat-square)
![Version: 0.21.2](https://img.shields.io/badge/Version-0.21.2-informational?style=flat-square) ![AppVersion: 0.21.1](https://img.shields.io/badge/AppVersion-0.21.1-informational?style=flat-square)
Generic Device Plugin
@@ -28,7 +28,7 @@ Generic Device Plugin
| config | object | `{"data":"devices:\n - name: serial\n groups:\n - paths:\n - path: /dev/ttyUSB*\n - paths:\n - path: /dev/ttyACM*\n - paths:\n - path: /dev/tty.usb*\n - paths:\n - path: /dev/cu.*\n - paths:\n - path: /dev/cuaU*\n - paths:\n - path: /dev/rfcomm*\n - name: video\n groups:\n - paths:\n - path: /dev/video0\n - name: fuse\n groups:\n - count: 10\n paths:\n - path: /dev/fuse\n - name: audio\n groups:\n - count: 10\n paths:\n - path: /dev/snd\n - name: capture\n groups:\n - paths:\n - path: /dev/snd/controlC0\n - path: /dev/snd/pcmC0D0c\n - paths:\n - path: /dev/snd/controlC1\n mountPath: /dev/snd/controlC0\n - path: /dev/snd/pcmC1D0c\n mountPath: /dev/snd/pcmC0D0c\n - paths:\n - path: /dev/snd/controlC2\n mountPath: /dev/snd/controlC0\n - path: /dev/snd/pcmC2D0c\n mountPath: /dev/snd/pcmC0D0c\n - paths:\n - path: /dev/snd/controlC3\n mountPath: /dev/snd/controlC0\n - path: /dev/snd/pcmC3D0c\n mountPath: /dev/snd/pcmC0D0c\n","enabled":true}` | Config map |
| config.data | string | See [values.yaml](./values.yaml) | generic-device-plugin config file [[ref]](https://github.com/squat/generic-device-plugin#usage) |
| deviceDomain | string | `"devic.es"` | Domain used by devices for identifcation |
| image | object | `{"pullPolicy":"Always","repository":"ghcr.io/squat/generic-device-plugin","tag":"latest@sha256:2e0c0b78043d5f0885b99c9ac3c1506844c9645081740d2394ce6e23b168bfe8"}` | Default image |
| image | object | `{"pullPolicy":"Always","repository":"ghcr.io/squat/generic-device-plugin","tag":"latest@sha256:7bc1ecec8472be1e5cf1ce534f0438a1d48cc3e2b4997cee924dac4d3dbfc3d3"}` | Default image |
| name | string | `"generic-device-plugin"` | Name override of release |
| resources | object | `{"requests":{"cpu":"50m","memory":"10Mi"}}` | Default resources |
| service | object | `{"listenPort":8080}` | Service port |

View File

@@ -4,7 +4,7 @@ name: generic-device-plugin
# -- Default image
image:
repository: ghcr.io/squat/generic-device-plugin
tag: latest@sha256:2e0c0b78043d5f0885b99c9ac3c1506844c9645081740d2394ce6e23b168bfe8
tag: latest@sha256:7bc1ecec8472be1e5cf1ce534f0438a1d48cc3e2b4997cee924dac4d3dbfc3d3
pullPolicy: Always
# -- Domain used by devices for identifcation

View File

@@ -1,6 +1,6 @@
apiVersion: v2
name: rclone-bucket
version: 0.8.1
version: 0.10.1
description: Rclone CronJob to replicate buckets
keywords:
- rclone-bucket
@@ -17,4 +17,4 @@ dependencies:
version: 5.0.0
icon: https://cdn.jsdelivr.net/gh/selfhst/icons@main/png/rclone.png
# renovate: datasource=github-releases depName=rclone/rclone
appVersion: v1.74.0
appVersion: v1.74.1

View File

@@ -1,6 +1,6 @@
# rclone-bucket
![Version: 0.8.1](https://img.shields.io/badge/Version-0.8.1-informational?style=flat-square) ![AppVersion: v1.74.0](https://img.shields.io/badge/AppVersion-v1.74.0-informational?style=flat-square)
![Version: 0.10.0](https://img.shields.io/badge/Version-0.10.0-informational?style=flat-square) ![AppVersion: v1.74.0](https://img.shields.io/badge/AppVersion-v1.74.0-informational?style=flat-square)
Rclone CronJob to replicate buckets
@@ -28,6 +28,7 @@ Rclone CronJob to replicate buckets
| additionalLabels | object | `{}` | Add additional labels |
| cronJob | object | `{"backoffLimit":3,"parallelism":1,"schedule":"0 0 * * *","suspend":false,"timeZone":"America/Chicago"}` | CronJob configuration |
| image | object | `{"pullPolicy":"IfNotPresent","repository":"rclone/rclone","tag":"1.74.0@sha256:d2e0e88359d0b2e67cfcd2c43d5405185eb8adfc207079df27c42da82c5207bc"}` | Default image |
| metrics | object | `{"enabled":true}` | Metrics |
| nameOverride | string | `""` | Default pattern follows <pvcTarget>-backup |
| prune | object | `{"ageToPrune":"90d","enabled":false,"exclude":"","include":""}` | Enable prune job |
| rclone | object | `{"destination":{"bucketName":"bucket","forcePathStyle":true,"providerType":"Other"},"providerType":"Other","source":{"bucketName":"bucket","forcePathStyle":true,"providerType":"Other"}}` | rclone configuration |

View File

@@ -4,6 +4,7 @@
global:
nameOverride: {{ include "rclone.name" . }}
fullNameOverride: {{ include "rclone.name" . }}
createDefaultServiceAccount: true
controllers:
main:
type: cronjob
@@ -11,6 +12,8 @@ controllers:
cronjob:
{{- toYaml . | nindent 6 }}
{{ end }}
serviceAccount:
identifier: {{ .Release.Name }}
containers:
sync:
image:
@@ -34,6 +37,11 @@ controllers:
- --exclude
- {{ .Values.prune.exclude | quote }}
{{- end }}
{{- if .Values.metrics.enabled }}
- --rc
- --rc-enable-metrics
- --metrics-addr=0.0.0.0:5573
{{- end }}
- --verbose
env:
- name: RCLONE_S3_PROVIDER
@@ -106,6 +114,11 @@ controllers:
- --min-age
- {{ .Values.prune.ageToPrune | quote }}
- --verbose
{{- if .Values.metrics.enabled }}
- --rc
- --rc-enable-metrics
- --metrics-addr=0.0.0.0:5574
{{- end }}
env:
- name: RCLONE_CONFIG_DEST_TYPE
value: s3
@@ -136,6 +149,37 @@ controllers:
- name: RCLONE_CONFIG_DEST_FORCE_PATH_STYLE
value: {{ .Values.rclone.destination.forcePathStyle | quote }}
{{- end }}
{{- if .Values.metrics.enabled }}
service:
main:
controller: main
ports:
rc:
port: 5572
targetPort: 5572
metrics-sync:
port: 5573
targetPort: 5573
metrics-prune:
port: 5574
targetPort: 5574
serviceMonitor:
main:
selector:
matchLabels:
app.kubernetes.io/name: {{ include "rclone.name" . }}
app.kubernetes.io/instance: {{ .Release.Namespace }}
serviceName: '{{ include "bjw-s.common.lib.chart.names.fullname" $ }}'
endpoints:
- port: metrics-sync
interval: 10s
scrapeTimeout: 5s
path: /metrics
- port: metrics-prune
interval: 10s
scrapeTimeout: 5s
path: /metrics
{{- end }}
{{- end -}}
{{- $_ := mergeOverwrite .Values (include "rclone.hardcodedValues" . | fromYaml) -}}

View File

@@ -7,7 +7,7 @@ additionalLabels: {}
# -- Default image
image:
repository: rclone/rclone
tag: 1.74.0@sha256:d2e0e88359d0b2e67cfcd2c43d5405185eb8adfc207079df27c42da82c5207bc
tag: 1.74.1@sha256:eb8788b795f0009324e9572b0e2acb9b56885327c2746b07d67a9d3b893a6602
pullPolicy: IfNotPresent
# -- CronJob configuration
@@ -82,3 +82,7 @@ secret:
existingSecretDestination:
name: rclone-destination-secret
# -- Metrics
metrics:
enabled: true