Compare commits

..

1 Commits

Author SHA1 Message Date
5591b4776b Update helm/chart-testing-action action to v2.8.0
Some checks failed
lint-and-test / lint-helm (pull_request) Failing after 10s
lint-and-test / chart-testing (pull_request) Failing after 50s
2025-12-17 23:57:32 +00:00
5 changed files with 6 additions and 10 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: 2.1.4
version: 2.1.2
description: Cloudflared Tunnel
keywords:
- cloudflare

View File

@@ -1,6 +1,6 @@
# cloudflared
![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)
![Version: 2.1.2](https://img.shields.io/badge/Version-2.1.2-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

@@ -17,7 +17,7 @@ Generate the secret name
{{- if .Values.secret.externalSecret.nameOverride }}
{{- .Values.secret.externalSecret.nameOverride | trunc 63 | trimSuffix "-" }}
{{- else }}
{{- printf "%s-%s-secret" .Release.Name (include "cloudflared.name" .) -}}
{{- printf "%s-secret" (include "cloudflared.name" .) -}}
{{- end }}
{{- else if .Values.secret.existingSecret.name }}
{{- printf "%s" .Values.secret.existingSecret.name -}}
@@ -44,11 +44,7 @@ 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 }}
{{- printf "%s/%s" .Values.secret.externalSecret.store.path .Release.Name -}}
{{- else }}
{{ fail "No Secret Store Path Found!" }}
{{- end }}

View File

@@ -3,7 +3,7 @@
apiVersion: external-secrets.io/v1
kind: ExternalSecret
metadata:
name: {{ include "secret.name" . }}
name: {{ .Release.Name }}-{{ include "secret.name" . }}
namespace: {{ .Release.Namespace }}
labels:
{{- include "secret.labels" . | nindent 4 }}