Skip to content
Snippets Groups Projects
Verified Commit 161abbed authored by Martin Weise's avatar Martin Weise
Browse files

Added Task

parent a4c793d9
No related branches found
No related tags found
1 merge request!299Dev
...@@ -169,8 +169,8 @@ verify-install-script: ...@@ -169,8 +169,8 @@ verify-install-script:
- bash install.sh - bash install.sh
- exit 0 - exit 0
lint-helm: lint-helm-chart:
image: docker.io/docker:24-dind image: docker.io/alpine:3.20
stage: lint stage: lint
except: except:
refs: refs:
...@@ -180,9 +180,25 @@ lint-helm: ...@@ -180,9 +180,25 @@ lint-helm:
dependencies: dependencies:
- build-metadata-service - build-metadata-service
script: script:
- apk add sed helm curl - apk add helm
- helm lint ./helm/dbrepo - helm lint ./helm/dbrepo
lint-helm-readme:
image: docker.io/node:20-alpine3.20
stage: lint
except:
refs:
- /^release-.*/
needs:
- build-metadata-service
dependencies:
- build-metadata-service
script:
- apk add helm git
- helm schema -input ./helm/dbrepo/values.yaml -output ./helm/dbrepo/values.schema.json
- git clone https://github.com/bitnami/readme-generator-for-helm && npm install ./readme-generator-for-helm
- readme-generator-for-helm --readme ./helm/dbrepo/README.md --values ./helm/dbrepo/values.yaml
test-metadata-service: test-metadata-service:
image: maven:3-openjdk-17 image: maven:3-openjdk-17
stage: test stage: test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment