-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e8cc219
commit e8997fd
Showing
1 changed file
with
83 additions
and
83 deletions.
There are no files selected for viewing
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
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" |