[occm] Tag load balancers with cluster identity to prevent name collisions #1452
Workflow file for this run
This file contains hidden or 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: Lint Charts | |
| on: | |
| pull_request: | |
| paths: | |
| - 'charts/**' | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Helm | |
| uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 | |
| with: | |
| version: v3.10.0 | |
| - uses: actions/setup-python@7f4fc3e22c37d6ff65e88745f38bd3157c663f7c | |
| with: | |
| python-version: '3.9' | |
| check-latest: true | |
| # see example https://github.com/helm/chart-testing-action | |
| - name: Set up chart-testing | |
| uses: helm/chart-testing-action@afea100a513515fbd68b0e72a7bb0ae34cb62aec | |
| - name: Run chart-testing (lint) | |
| run: ct lint --target-branch ${GITHUB_BASE_REF} |