Update pagerduty in README.md #72
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Helm Chart Validation | |
on: | |
pull_request: | |
paths: | |
- charts/port-ocean/** | |
jobs: | |
validate: | |
defaults: | |
run: | |
working-directory: charts/port-ocean/ | |
runs-on: ubuntu-latest | |
name: Validate Helm Chart | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Helm | |
uses: azure/setup-helm@v3 | |
- name: Create k8s Kind Cluster | |
uses: helm/[email protected] | |
- name: Lint Helm Chart | |
run: helm lint . | |
- name: Validate Helm Chart | |
run: | | |
helm template --set port.clientId=test --set port.clientSecret=test --set configMap.config=test . | kubectl apply --dry-run=client -f - |