Skip to content

kubernetes-sigs/nfd: add presubmit jobs for release-0.18 #35025

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
presubmits:
kubernetes-sigs/node-feature-discovery:
- name: pull-node-feature-discovery-verify-release-0-18
cluster: eks-prow-build-cluster
skip_if_only_changed: "^docs/|^\\.github/|\\.(md)$|^(README|LICENSE|OWNERS)$"
branches:
- ^release-0.18
decorate: true
annotations:
testgrid-dashboards: sig-node-node-feature-discovery
testgrid-tab-name: verify-release-0.18
description: "Verify source code of node-feature-discovery: check formatting, lint etc."
spec:
containers:
- image: public.ecr.aws/docker/library/golang:1.24.0
command:
- scripts/test-infra/verify.sh
env:
- name: CODECOV_TOKEN
valueFrom:
secretKeyRef:
name: nfd-creds
key: codecov-token
resources:
limits:
cpu: 4
memory: 8Gi
requests:
cpu: 4
memory: 8Gi
- name: pull-node-feature-discovery-verify-docs-release-0-18
cluster: eks-prow-build-cluster
run_if_changed: "^docs/"
branches:
- ^release-0.18
decorate: true
annotations:
testgrid-dashboards: sig-node-node-feature-discovery
testgrid-tab-name: verify-docs-release-0.18
description: "Verify documentation sources"
spec:
containers:
- image: ruby:slim
command:
- scripts/test-infra/mdlint.sh
resources:
limits:
cpu: 2
memory: 4Gi
requests:
cpu: 2
memory: 4Gi
- name: pull-node-feature-discovery-build-release-0-18
cluster: eks-prow-build-cluster
skip_if_only_changed: "^docs/|^demo/|^deployment/|^\\.github/|\\.(md)$|^(README|LICENSE|OWNERS)$"
branches:
- ^release-0.18
decorate: true
annotations:
testgrid-dashboards: sig-node-node-feature-discovery
testgrid-tab-name: build-release-0.18
description: "Build node-feature-discovery binaries"
spec:
containers:
- image: public.ecr.aws/docker/library/golang:1.24.0
command:
- scripts/test-infra/build.sh
resources:
limits:
cpu: 2
memory: 4Gi
requests:
cpu: 2
memory: 4Gi
- name: pull-node-feature-discovery-e2e-test-release-0-18
cluster: eks-prow-build-cluster
skip_if_only_changed: "^docs/|^demo/|^deployment/|^\\.github/|\\.(md)$|^(README|LICENSE|OWNERS)$"
branches:
- ^release-0.18
labels:
preset-dind-enabled: "true"
decorate: true
annotations:
testgrid-dashboards: sig-node-node-feature-discovery
testgrid-tab-name: e2e-test-release-0.18
description: "Build image and run e2e-tests"
spec:
containers:
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20250613-876fb90a97-master
# Need privileged mode for dind
securityContext:
privileged: true
command:
- runner.sh
args:
- scripts/test-infra/test-e2e-presubmit.sh
resources:
limits:
cpu: 6
memory: 12Gi
requests:
cpu: 6
memory: 12Gi