Skip to content

Commit

Permalink
enabled prow postsubmit jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelbartels20 committed Nov 15, 2024
1 parent e8cc219 commit e8997fd
Showing 1 changed file with 83 additions and 83 deletions.
166 changes: 83 additions & 83 deletions config/jobs/etcd/etcd-postsubmits.yaml
Original file line number Diff line number Diff line change
@@ -1,86 +1,86 @@
postsubmits:
etcd-io/etcd:
- name: post-etcd-build
cluster: eks-prow-build-cluster
branches:
- main
decorate: true
annotations:
testgrid-dashboards: sig-etcd-postsubmits
testgrid-tab-name: post-etcd-build
spec:
containers:
- image: us-central1-docker.pkg.dev/k8s-staging-test-infra/images/kubekins-e2e:v20241021-d3a4913879-master
command:
- runner.sh
args:
- make
- build
resources:
requests:
cpu: "4"
memory: "4Gi"
limits:
cpu: "4"
memory: "4Gi"

- name: post-etcd-verify
cluster: eks-prow-build-cluster
branches:
- main
decorate: true
annotations:
testgrid-dashboards: sig-etcd-postsubmits
testgrid-tab-name: post-etcd-verify
spec:
containers:
- image: us-central1-docker.pkg.dev/k8s-staging-test-infra/images/kubekins-e2e:v20241021-d3a4913879-master
command:
- /bin/bash
args:
- -c
- |
set -euo pipefail
export PATH=$GOPATH/bin:$PATH && make verify
export PATH=$GOPATH/bin:$PATH && make fix
DIFF=$(git status --porcelain)
if [ -n "$DIFF" ]; then
echo "These files were modified:"
echo
echo "$DIFF"
echo
exit 1
fi
resources:
requests:
cpu: "4"
memory: "4Gi"
limits:
cpu: "4"
memory: "4Gi"
- name: post-etcd-build
cluster: eks-prow-build-cluster
branches:
- main
decorate: true
annotations:
testgrid-dashboards: sig-etcd-postsubmits
testgrid-tab-name: post-etcd-build
spec:
containers:
- image: us-central1-docker.pkg.dev/k8s-staging-test-infra/images/kubekins-e2e:v20241021-d3a4913879-master
command:
- runner.sh
args:
- make
- build
resources:
requests:
cpu: "4"
memory: "4Gi"
limits:
cpu: "4"
memory: "4Gi"

- name: post-etcd-govulncheck
cluster: eks-prow-build-cluster
branches:
- main
decorate: true
annotations:
testgrid-dashboards: sig-etcd-postsubmits
testgrid-tab-name: post-etcd-govulncheck
spec:
containers:
- image: us-central1-docker.pkg.dev/k8s-staging-test-infra/images/kubekins-e2e:v20241021-d3a4913879-master
command:
- runner.sh
args:
- bash
- -c
- |
export PATH=$GOPATH/bin:$PATH && make run-govulncheck
resources:
requests:
cpu: "4"
memory: "4Gi"
limits:
cpu: "4"
memory: "4Gi"
- name: post-etcd-verify
cluster: eks-prow-build-cluster
branches:
- main
decorate: true
annotations:
testgrid-dashboards: sig-etcd-postsubmits
testgrid-tab-name: post-etcd-verify
spec:
containers:
- image: us-central1-docker.pkg.dev/k8s-staging-test-infra/images/kubekins-e2e:v20241021-d3a4913879-master
command:
- /bin/bash
args:
- -c
- |
set -euo pipefail
export PATH=$GOPATH/bin:$PATH && make verify
export PATH=$GOPATH/bin:$PATH && make fix
DIFF=$(git status --porcelain)
if [ -n "$DIFF" ]; then
echo "These files were modified:"
echo
echo "$DIFF"
echo
exit 1
fi
resources:
requests:
cpu: "4"
memory: "4Gi"
limits:
cpu: "4"
memory: "4Gi"

- name: post-etcd-govulncheck
cluster: eks-prow-build-cluster
branches:
- main
decorate: true
annotations:
testgrid-dashboards: sig-etcd-postsubmits
testgrid-tab-name: post-etcd-govulncheck
spec:
containers:
- image: us-central1-docker.pkg.dev/k8s-staging-test-infra/images/kubekins-e2e:v20241021-d3a4913879-master
command:
- runner.sh
args:
- bash
- -c
- |
export PATH=$GOPATH/bin:$PATH && make run-govulncheck
resources:
requests:
cpu: "4"
memory: "4Gi"
limits:
cpu: "4"
memory: "4Gi"

0 comments on commit e8997fd

Please sign in to comment.