Compare commits

...

7 Commits

Author SHA1 Message Date
45ddc3fdf3 Merge pull request 'Update ghcr.io/squat/generic-device-plugin:latest Docker digest to 2b53d25' (#154) from renovate/ghcr.io-squat-generic-device-plugin-latest into main
All checks were successful
lint-and-test / lint-helm (push) Successful in 9s
lint-and-test / chart-testing (push) Successful in 22s
release-charts-generic-device-plugin / release (push) Successful in 24s
renovate / renovate (push) Successful in 28s
2025-12-23 00:01:36 +00:00
883e2c4245 Update ghcr.io/squat/generic-device-plugin:latest Docker digest to 2b53d25
Some checks failed
renovate/stability-days Updates have not met minimum release age requirement
lint-and-test / lint-helm (pull_request) Failing after 32s
lint-and-test / chart-testing (pull_request) Successful in 45s
2025-12-23 00:01:05 +00:00
9a83d9bc59 apply namespace fix for alert
All checks were successful
lint-and-test / lint-helm (push) Successful in 8s
release-charts-postgres-cluster / release (push) Successful in 26s
lint-and-test / chart-testing (push) Successful in 33s
renovate / renovate (push) Successful in 1m18s
2025-12-20 18:40:22 -06:00
a7cec76210 fix secret name
All checks were successful
lint-and-test / lint-helm (push) Successful in 14s
lint-and-test / chart-testing (push) Successful in 18s
release-charts-cloudflared / release (push) Successful in 23s
renovate / renovate (push) Successful in 1m0s
2025-12-17 19:04:37 -06:00
69b32b7563 fix name generation
All checks were successful
lint-and-test / lint-helm (push) Successful in 8s
release-charts-cloudflared / release (push) Successful in 23s
lint-and-test / chart-testing (push) Successful in 24s
renovate / renovate (push) Successful in 31s
2025-12-17 18:12:07 -06:00
5da9e52dc6 fix incorrect value
All checks were successful
lint-and-test / lint-helm (push) Successful in 10s
release-charts-cloudflared / release (push) Successful in 18s
lint-and-test / chart-testing (push) Successful in 19s
renovate / renovate (push) Successful in 43s
2025-12-17 17:57:09 -06:00
de71b388ca fix name generation
All checks were successful
lint-and-test / lint-helm (push) Successful in 9s
release-charts-cloudflared / release (push) Successful in 20s
lint-and-test / chart-testing (push) Successful in 21s
renovate / renovate (push) Successful in 29s
2025-12-17 17:43:07 -06:00
9 changed files with 15 additions and 13 deletions

View File

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

View File

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

View File

@@ -3,9 +3,9 @@ Generate the root name
*/}}
{{- define "cloudflared.name" -}}
{{- if .Values.name }}
{{- printf "%s-%s-cloudflared" .Release.Name .Values.name -}}
{{- printf "%s-cloudflared" .Values.name -}}
{{- else }}
{{- printf "%s-cloudflared" .Release.Name -}}
{{- printf "cloudflared" -}}
{{- end }}
{{- end }}
@@ -17,7 +17,7 @@ Generate the secret name
{{- if .Values.secret.externalSecret.nameOverride }}
{{- .Values.secret.externalSecret.nameOverride | trunc 63 | trimSuffix "-" }}
{{- else }}
{{- printf "%s-secret" (include "cloudflared.name" .) -}}
{{- printf "%s-%s-secret" .Release.Name (include "cloudflared.name" .) -}}
{{- end }}
{{- else if .Values.secret.existingSecret.name }}
{{- printf "%s" .Values.secret.existingSecret.name -}}
@@ -44,7 +44,11 @@ Generate path in the secret store
*/}}
{{- define "secret.path" -}}
{{- if and (.Values.secret.externalSecret.enabled) (.Values.secret.externalSecret.store.path) }}
{{- if .Values.name }}
{{- printf "%s/%s-%s" .Values.secret.externalSecret.store.path .Release.Name .Values.name -}}
{{- else }}
{{- printf "%s/%s" .Values.secret.externalSecret.store.path .Release.Name -}}
{{- end }}
{{- else }}
{{ fail "No Secret Store Path Found!" }}
{{- end }}

View File

@@ -1,11 +1,9 @@
{{- include "bjw-s.common.loader.init" . }}
{{- define "cloudflared.hardcodedValues" -}}
{{ if not .Values.global.nameOverride }}
global:
nameOverride: {{ include "cloudflared.name" . }}
fullNameOverride: {{ include "cloudflared.name" . }}
{{ end }}
controllers:
main:
type: deployment

View File

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

View File

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

View File

@@ -1,6 +1,6 @@
apiVersion: v2
name: postgres-cluster
version: 7.1.3
version: 7.1.4
description: Cloudnative-pg Cluster
keywords:
- database

View File

@@ -1,6 +1,6 @@
# postgres-cluster
![Version: 7.1.3](https://img.shields.io/badge/Version-7.1.3-informational?style=flat-square) ![AppVersion: v1.28.0](https://img.shields.io/badge/AppVersion-v1.28.0-informational?style=flat-square)
![Version: 7.1.4](https://img.shields.io/badge/Version-7.1.4-informational?style=flat-square) ![AppVersion: v1.28.0](https://img.shields.io/badge/AppVersion-v1.28.0-informational?style=flat-square)
Cloudnative-pg Cluster

View File

@@ -6,7 +6,7 @@ annotations:
description: |-
Standby is lagging behind by over 300 seconds (5 minutes)
expr: |
cnpg_pg_replication_lag > 300
cnpg_pg_replication_lag{namespace="{{ .namespace }}"} > 300
for: 1m
labels:
severity: warning