mirror of
https://github.com/bitnami/charts.git
synced 2026-03-06 23:47:48 +08:00
Description of the change This PR adds integration with the VMware Image Builder Github actions for package, lint and trivy. It will also remove the redundant actions from helm/ct. The conditions for launching the VIB pipeline are: PRs need to affect only one chart PRs need to bump the chart version It has been tested with the following examples: Successful chart bumps (the pipeline runs): Bump argo-workflows javsalgar/charts-1#1 Bump bitnami/nginx-ingress-controller javsalgar/charts-1#7 Two chart bumps (the pipeline gets skipped): Bump bitnami/pytorch and bitnami/haproxy javsalgar/charts-1#3 Changes without version bump (the action fails): Update grafana readme javsalgar/charts-1#5 Change wavefront-prometheus-adapter README javsalgar/charts-1#2 Change bitnami/drupal description javsalgar/charts-1#8 Changes in the repo root (the action does not run): Change root repo license javsalgar/charts-1#4 Create a file in the bitnami/ folder without affecting a chart (the pipeline gets skipped): Change root repo license javsalgar/charts-1#4
37 lines
1.2 KiB
YAML
37 lines
1.2 KiB
YAML
name: 'vib'
|
|
on: # rebuild any PRs and main branch changes
|
|
pull_request_target:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'bitnami/wordpress/*'
|
|
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:
|
|
vib-k8s-verify: # verify in multiple target platforms
|
|
runs-on: ubuntu-latest
|
|
environment: vmware-image-builder
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- target-platform: gke
|
|
target-platform-id: 91d398a2-25c4-4cda-8732-75a3cfc179a1
|
|
- target-platform: aks
|
|
target-platform-id: 7b13a7bb-011c-474f-ad71-8152fc321b9e
|
|
- target-platform: tkg
|
|
target-platform-id: 7ddab896-2e4e-4d58-a501-f79897eba3a0
|
|
fail-fast: false
|
|
name: K8s verify ${{ matrix.target-platform}}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
ref: ${{github.event.pull_request.head.ref}}
|
|
repository: ${{github.event.pull_request.head.repo.full_name}}
|
|
- uses: vmware-samples/vmware-image-builder-examples/vib-action@main
|
|
with:
|
|
pipeline: vib-platform-verify.json
|
|
env:
|
|
TARGET_PLATFORM: ${{ matrix.target-platform-id }}
|