Skip to content

Add support for deploying an additional node-exporter DaemonSet #529

Add support for deploying an additional node-exporter DaemonSet

Add support for deploying an additional node-exporter DaemonSet #529

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- master
env:
COMPONENT_NAME: openshift4-monitoring
jobs:
linting:
runs-on: ubuntu-latest
strategy:
matrix:
command:
- lint_jsonnet
- lint_yaml
- lint_adoc
steps:
- uses: actions/checkout@v4
- name: Run ${{ matrix.command }}
run: make ${{ matrix.command }}
editorconfig:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: snow-actions/eclint@v1.0.1
with:
args: 'check'
test:
runs-on: ubuntu-latest
strategy:
matrix:
instance:
- capacity-alerts
- remote-write
- user-workload-monitoring
- capacity-alerts-with-node-labels
- vsphere
- custom-rules
- release-4.13
- team-routing
- release-4.14
- ovn-kubernetes
defaults:
run:
working-directory: ${{ env.COMPONENT_NAME }}
steps:
- uses: actions/checkout@v4
with:
path: ${{ env.COMPONENT_NAME }}
- name: Compile component
run: make test -e instance=${{ matrix.instance }}
golden:
runs-on: ubuntu-latest
strategy:
matrix:
instance:
- capacity-alerts
- remote-write
- user-workload-monitoring
- capacity-alerts-with-node-labels
- vsphere
- custom-rules
- release-4.13
- team-routing
- release-4.14
- ovn-kubernetes
defaults:
run:
working-directory: ${{ env.COMPONENT_NAME }}
steps:
- uses: actions/checkout@v4
with:
path: ${{ env.COMPONENT_NAME }}
- name: Golden diff
run: make golden-diff -e instance=${{ matrix.instance }}