Added support for replication with minimal manifest #3360
Workflow file for this run
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: Workflow | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: ["**"] | |
jobs: | |
# Removing forbidden checks for now. Todo - maintain consistency across platforms | |
# sanitize: | |
# name: Check for forbidden words | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout the code | |
# uses: actions/checkout@v4 | |
# - name: Run the forbidden words scan | |
# uses: dell/common-github-actions/code-sanitizer@main | |
# with: | |
# args: /github/workspace | |
test_controller: | |
name: Run Go unit tests on controller and check package coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.22" | |
cache: false | |
- name: Checkout csm-operator | |
uses: actions/checkout@v4 | |
with: | |
repository: "dell/csm-operator" | |
path: "csm-operator" | |
- name: Run unit tests and check package coverage | |
uses: dell/common-github-actions/go-code-tester@csm-operator-controllers | |
with: | |
threshold: 90 | |
test_driver: | |
name: Run Go unit tests on driver and check package coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Run unit tests and check package coverage | |
uses: dell/common-github-actions/go-code-tester@main | |
with: | |
threshold: 95 | |
test-folder: "pkg/drivers/" | |
test_module: | |
name: Run Go unit tests on module and check package coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Run unit tests and check package coverage | |
uses: dell/common-github-actions/go-code-tester@main | |
with: | |
threshold: 90 | |
test-folder: "pkg/modules/" | |
image_security_scan: | |
name: Image Scanner | |
runs-on: ubuntu-latest | |
env: | |
BASE_IMG: ubuntu:latest | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ^1.22 | |
id: go | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Build Docker Images | |
run: | | |
chmod +x ./scripts/build-ubi-micro.sh | |
make build-base-image | |
make -o gen-semver | |
podman build -t docker.io/csm-operator -f ./Dockerfile --build-arg GOIMAGE=golang:latest --build-arg BASEIMAGE="localhost/csm-operator-ubimicro" | |
podman save docker.io/library/csm-operator -o /tmp/csm-operator.tar | |
docker load -i /tmp/csm-operator.tar | |
- name: Scan controller Image | |
uses: aquasecurity/[email protected] | |
with: | |
image-ref: csm-operator:latest | |
severity: 'HIGH' | |
ignore-unfixed: true | |
exit-code: '1' | |
trivyignores: '.github/workflows/.trivyignore' |