diff --git a/authentik-application/Chart.yaml b/authentik-application/Chart.yaml index 67f1755..c90e1c7 100644 --- a/authentik-application/Chart.yaml +++ b/authentik-application/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: authentik-application type: application -version: 0.3.4 +version: 0.3.5 description: "A Chart to deploy a secret for the authentik blueprint-sidecar." diff --git a/authentik-application/README.md b/authentik-application/README.md index 1ee7c55..8157f8b 100644 --- a/authentik-application/README.md +++ b/authentik-application/README.md @@ -1,6 +1,6 @@ # authentik-application -![Version: 0.3.4](https://img.shields.io/badge/Version-0.3.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.3.5](https://img.shields.io/badge/Version-0.3.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) A Chart to deploy a secret for the authentik blueprint-sidecar. diff --git a/authentik-application/ci/ct-values.yaml b/authentik-application/ci/ct-values.yaml new file mode 100644 index 0000000..da317d2 --- /dev/null +++ b/authentik-application/ci/ct-values.yaml @@ -0,0 +1,5 @@ + +blueprint: + groups: + - slug: "app: grafana-admin" + bindID: uuid diff --git a/authentik-application/files/groups.yaml.gotmpl b/authentik-application/files/groups.yaml.gotmpl index 840222c..03dc704 100644 --- a/authentik-application/files/groups.yaml.gotmpl +++ b/authentik-application/files/groups.yaml.gotmpl @@ -1,5 +1,6 @@ {{- $bindPolicyID := get . "bindPolicyID" }} {{- with get . "root" }} +{{- $ = . }} {{- if (not (kindIs "slice" .Values.blueprint.groups)) }} - model: authentik_core.group diff --git a/publish.sh b/publish.sh index abd6758..e3f975d 100755 --- a/publish.sh +++ b/publish.sh @@ -5,6 +5,12 @@ HELM_REPO=${HELM_REPO:-oci://codeberg.org/wrenix/helm-charts} helm-docs -t ./README.md.gotmpl -t _docs.gotmpl for p in * ; do + if \ + [ $p == "alertmanager-matrix" ] || \ + [ $p == "alertmanager-ntfy" ] \ + ; then + continue + fi if [ ! -d $p ]; then continue; fi @@ -30,7 +36,7 @@ for p in * ; do if [ "$changes" -gt "0" ]; then # check / lint if version was increased correct if [ "$tag" == "$lastTag" ]; then - echo "changed helmchart should create new pkg" + echo "changed helmchart should create new pkg - diff line count has:" echo $(git diff "${lastTag}" -- "${p}" | wc -l); exit 1 fi