Add dashboard configmap annotations (#1302) #168
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: Verify Helm Chart | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- 'helm/**' | |
env: | |
CSP_API_URL: https://console.cloud.vmware.com | |
CSP_API_TOKEN: ${{ secrets.CSP_API_TOKEN }} | |
VIB_PUBLIC_URL: https://cp.bromelia.vmware.com | |
jobs: | |
# verify chart in multiple target platforms | |
vib-k8s-verify: | |
runs-on: ubuntu-latest | |
environment: vmware-image-builder | |
strategy: | |
matrix: | |
include: | |
- name: GKE | |
target-platform: gke | |
target-platform-id: 91d398a2-25c4-4cda-8732-75a3cfc179a1 | |
target-pipeline: vib-platform-verify.json | |
- name: GKE Skip Recreate | |
target-platform: gke | |
target-platform-id: 91d398a2-25c4-4cda-8732-75a3cfc179a1 | |
target-pipeline: vib-platform-verify-skip-recreate.json | |
- name: Openshift | |
target-platform: openshift | |
target-platform-id: ebac9e0d-3931-4515-ba54-e6adada1f174 | |
target-pipeline: vib-platform-verify-openshift.json | |
fail-fast: false | |
name: Verify chart (${{ matrix.name }}) | |
steps: | |
- uses: actions/[email protected] | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
- uses: vmware-labs/[email protected] | |
with: | |
pipeline: ${{ matrix.target-pipeline }} | |
env: | |
TARGET_PLATFORM: ${{ matrix.target-platform-id }} |