Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ (helm/v1alpha1): Add a step to render the chart in the GitHub Action #4386

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
✨ (helm/v1alpha1): Add a step to render the chart in the GitHub Action
  • Loading branch information
monteiro-renato committed Nov 24, 2024
commit de50ec605c0485c33116dbedc4d65ba399dabae9
4 changes: 4 additions & 0 deletions .github/workflows/test-helm-samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ jobs:
kubectl wait --namespace cert-manager --for=condition=available --timeout=300s deployment/cert-manager-cainjector
kubectl wait --namespace cert-manager --for=condition=available --timeout=300s deployment/cert-manager-webhook

- name: Render Helm chart for project-v4-with-plugins
run: |
helm template testdata/project-v4-with-plugins/dist/chart --namespace=project-v4-with-plugins-system

- name: Install Helm chart for project-v4-with-plugins
run: |
helm install my-release testdata/project-v4-with-plugins/dist/chart --create-namespace --namespace project-v4-with-plugins-system --set prometheus.enable=true
Expand Down
Loading