Compare commits

...

3 Commits

Author SHA1 Message Date
e211d43dc7 Merge pull request 'fix_stateful' (#8) from fix_stateful into main
All checks were successful
Lint and Test Charts / lint-test (push) Successful in 10s
Reviewed-on: #8
fixes #7
2024-11-11 09:55:52 +00:00
Jonas Forsberg
224c1ccd2f changed to gitea helm repo
Some checks failed
Package and publish helm chart / package-helm (push) Failing after 11s
2024-11-11 10:55:03 +01:00
Jonas Forsberg
f924f986a9 fixed volumeMounts for statefulset 2024-11-11 09:38:40 +01:00
4 changed files with 11 additions and 13 deletions

View File

@ -12,11 +12,6 @@ jobs:
- uses: actions/checkout@v3
name: Check out code
- name: Set up Helm
uses: azure/setup-helm@v4.2.0
with:
version: v3.14.4
- name: Get package name
id: chart_name
uses: mikefarah/yq@master
@ -32,15 +27,11 @@ jobs:
- name: build helm package
shell: bash
env:
REPO_PASSWORD: ${{ secrets.REPO_PASSWORD }}
REPO_USERNAME: ${{ secrets.REPO_USERNAME }}
REPO_HOST: ${{ secrets.REPO_HOST }}
PACKAGE_TOKEN: ${{ secrets.REPO_HOST }}
CHART_NAME: ${{ steps.chart_name.outputs.result }}
CHART_VERSION: ${{ steps.chart_version.outputs.result }}
run: |
REPO_PATH=$(git rev-parse --show-toplevel)
mkdir /tmp/build
cd /tmp/build
helm package $REPO_PATH
helm registry login --username $REPO_USERNAME --password $REPO_PASSWORD $REPO_HOST
helm push ${CHART_NAME}-${CHART_VERSION}.tgz oci://$REPO_HOST/helm
curl -H "Authorization: token $PACKAGE_TOKEN" -X POST --upload-file $CHART_NAME-$CHART_VERSION.tgz https://git.rre.nu/api/packages/jonas/helm/api/charts

1
.gitignore vendored
View File

@ -5,6 +5,7 @@ bin/*
.project
/.bin
/_test/secrets/*.json
*.tgz
# OSX leaves these everywhere on SMB shares
._*

View File

@ -3,7 +3,7 @@ apiVersion: v2
name: lib
description: Common functions for my helm charts at home
type: library
version: 1.0.2
version: 1.0.3
kubeVersion: ">=1.27.0"
home: git.rre.nu
sources:

View File

@ -40,8 +40,14 @@ create the environment varable list
resources:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with .Values.volumeMounts }}
{{- if or .Values.volumeMounts .Values.volumeClaimTemplates }}
volumeMounts:
{{- end }}
{{- with .Values.volumeMounts }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- range $v := .Values.volumeClaimTemplates }}
- name: {{ $v.name }}
mountPath: {{ $v.mountPath }}
{{- end }}
{{- end }}