We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2128799 commit 8eacb1eCopy full SHA for 8eacb1e
.github/workflows/release-helm.yml
@@ -34,14 +34,17 @@ jobs:
34
run: |
35
helm lint ./hosting/k8s/helm/
36
37
- - name: Template and Validate
+ - name: Render templates
38
39
helm template test-release ./hosting/k8s/helm/ \
40
--values ./hosting/k8s/helm/values.yaml \
41
- --output-dir /tmp/helm-output
42
-
43
- # Validate generated manifests
44
- find /tmp/helm-output -name "*.yaml" -exec kubectl --dry-run=client apply -f {} \;
+ --output-dir ./helm-output
+
+ - name: Validate manifests
+ uses: docker://ghcr.io/yannh/kubeconform:v0.7.0
45
+ with:
46
+ entrypoint: '/kubeconform'
47
+ args: "-summary -output json ./helm-output"
48
49
release:
50
needs: lint-and-test
0 commit comments