Skip to content

Commit

Permalink
feat: add lint and fix chart
Browse files Browse the repository at this point in the history
  • Loading branch information
zifeo committed May 5, 2023
1 parent b9f6c2d commit 80c50a5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ jobs:
for dir in $(ls -d charts/*/); do
helm dependency list $dir 2> /dev/null | tail +2 | head -n -1 | awk '{ print "helm repo add " $1 " " $3 }' | while read cmd; do $cmd; done
done
- name: Lint charts
run: |
for dir in $(ls -d charts/*/); do
helm dependency build $dir
helm lint $dir --strict
done
- run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
Expand Down
6 changes: 3 additions & 3 deletions charts/typegate/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dependencies:
- name: redis
repository: https://charts.bitnami.com/bitnami
version: 17.10.1
version: 17.10.2
- name: common
repository: https://charts.bitnami.com/bitnami
version: 1.17.1
digest: sha256:43e2d8608b65bab85da408e910340a8f5e011ad54f8377413b618fc7c83d6047
generated: "2023-05-04T20:20:57.517615+02:00"
digest: sha256:9c93750370c424705e5a4b15302e28f5ae0f12bc271c08e8c29710ca2b52a6c6
generated: "2023-05-05T23:03:21.839783+02:00"
3 changes: 2 additions & 1 deletion charts/typegate/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ apiVersion: v2
name: typegate
description: A Helm chart for Typegate
type: application
version: 0.1.1
version: 0.1.2
appVersion: "0.1.7"
icon: https://metatype.dev/images/logo.svg
dependencies:
- name: redis
condition: redis.enabled
Expand Down
2 changes: 1 addition & 1 deletion charts/typegate/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ image:
registry: ghcr.io
repository: metatypedev/typegate
pullPolicy: IfNotPresent
tag: ""
tag: v0.1.7

imagePullSecrets: []
nameOverride: ""
Expand Down

0 comments on commit 80c50a5

Please sign in to comment.