Skip to content

Commit

Permalink
Upgrade chart testing action version (#27)
Browse files Browse the repository at this point in the history
* upgrade chart testing action version

* trigger action

* fix typo

* remove newline

* bump version

* fix action

* -

* install condition
  • Loading branch information
johnnyaug committed Nov 23, 2020
1 parent 1bad00f commit 6ec2bb3
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
22 changes: 13 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,24 @@ jobs:
run: git fetch --prune --unshallow
- name: gitLeaks
uses: zricethezav/gitleaks-action@v1.1.2
- name: Install chart-testing (lint)
uses: helm/chart-testing-action@v2.0.1
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed)
if [[ -n "$changed" ]]; then
echo "::set-output name=changed::true"
fi
- name: Run chart-testing (lint)
id: lint
uses: helm/chart-testing-action@v1.0.0
with:
command: lint
run: ct lint
- name: Create kind cluster
uses: helm/kind-action@v1.0.0
# Only build a kind cluster if there are chart changes to test.
if: ${{ steps.lint.outputs.changed == 'true' && github.event_name == 'push' && github.ref == 'refs/heads/master' }}
if: ${{ steps.list-changed.outputs.changed == 'true' && github.event_name == 'push' }}
- name: Run chart-testing (install)
uses: helm/chart-testing-action@v1.0.0
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
with:
command: install
run: ct install
if: ${{ steps.list-changed.outputs.changed == 'true' && github.event_name == 'push' }}
release:
runs-on: ubuntu-latest
needs: lint
Expand Down
2 changes: 1 addition & 1 deletion charts/lakefs/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: lakefs
description: A Helm chart for Kubernetes
type: application
version: 0.4.2
version: 0.4.3
appVersion: 0.16.2

home: https://lakefs.io
Expand Down
2 changes: 1 addition & 1 deletion charts/lakefs/templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ Thank you for installing lakeFS!
kubectl port-forward $POD_NAME {{ .Values.deployment.port }}:{{ .Values.deployment.port }} --namespace {{ .Release.Namespace }}
{{- end }}

2. See the docs on how to create your first repository: https://docs.lakefs.io/quickstart.html#setting-up-a-repository
2. See the docs on how to create your first repository: https://docs.lakefs.io/quickstart/repository.html
1 change: 0 additions & 1 deletion charts/lakefs/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ data:
config.yaml:
{{- toYaml . | nindent 2 }}
{{- end }}

0 comments on commit 6ec2bb3

Please sign in to comment.