Skip to content

Commit

Permalink
etcd: add markdown lint presubmit job
Browse files Browse the repository at this point in the history
Signed-off-by: joshjms <[email protected]>

etcd: changed image

etcd: add line break
  • Loading branch information
joshjms committed Feb 26, 2025
1 parent 9453ecc commit 17a8cd0
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions config/jobs/etcd/etcd-presubmits.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -864,3 +864,34 @@ presubmits:
limits:
cpu: "4"
memory: "4Gi"

- name: pull-etcd-markdown-lint
optional: true
cluster: eks-prow-build-cluster
always_run: false
run_if_changed: '.*\.md$'
branches:
- main
decorate: true
annotations:
testgrid-dashboards: sig-etcd-presubmits
testgrid-tab-name: pull-etcd-markdown-lint
spec:
containers:
- image: public.ecr.aws/docker/library/node:22
command:
- /bin/bash
args:
- -c
- |
apt-get update && apt-get install -y gawk
npm install -g markdownlint-cli2
make markdown-diff-lint
resources:
requests:
cpu: "2"
memory: "4Gi"
limits:
cpu: "2"
memory: "4Gi"

0 comments on commit 17a8cd0

Please sign in to comment.