-
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.
Signed-off-by: Mateusz Urbanek <[email protected]>
- Loading branch information
Showing
6 changed files
with
117 additions
and
3 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
...netes-sigs/container-object-storage-interface/container-object-storage-interface-api.yaml
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
1 change: 1 addition & 0 deletions
1
...igs/container-object-storage-interface/container-object-storage-interface-controller.yaml
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
1 change: 1 addition & 0 deletions
1
...iner-object-storage-interface/container-object-storage-interface-provisioner-sidecar.yaml
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
50 changes: 50 additions & 0 deletions
50
...ubernetes-sigs/container-object-storage-interface/container-object-storage-interface.yaml
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
presubmits: | ||
kubernetes-sigs/container-object-storage-interface: | ||
- name: pull-container-object-storage-interface-build | ||
cluster: eks-prow-build-cluster | ||
always_run: true | ||
decorate: true | ||
path_alias: sigs.k8s.io/container-object-storage-interface | ||
annotations: | ||
testgrid-dashboards: sig-storage-container-object-storage-interface | ||
testgrid-tab-name: build | ||
description: Build test in container-object-storage-interface repo. | ||
spec: | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20241218-d4b51bc3e8-master | ||
command: | ||
- runner.sh | ||
args: | ||
- make | ||
resources: | ||
limits: | ||
cpu: 2 | ||
memory: 4Gi | ||
requests: | ||
cpu: 2 | ||
memory: 4Gi | ||
|
||
- name: pull-container-object-storage-interface-unit | ||
cluster: eks-prow-build-cluster | ||
always_run: true | ||
decorate: true | ||
path_alias: sigs.k8s.io/container-object-storage-interface | ||
annotations: | ||
testgrid-dashboards: sig-storage-container-object-storage-interface | ||
testgrid-tab-name: unit | ||
description: Unit tests in container-object-storage-interface repo. | ||
spec: | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20241218-d4b51bc3e8-master | ||
command: | ||
- runner.sh | ||
args: | ||
- make | ||
- test | ||
resources: | ||
limits: | ||
cpu: 2 | ||
memory: 4Gi | ||
requests: | ||
cpu: 2 | ||
memory: 4Gi |
59 changes: 59 additions & 0 deletions
59
config/jobs/kubernetes-sigs/container-object-storage-interface/cosi-driver-sample.yaml
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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
presubmits: | ||
kubernetes-sigs/cosi-driver-sample: | ||
|
||
- name: pull-cosi-driver-sample-build | ||
cluster: eks-prow-build-cluster | ||
always_run: true | ||
decorate: true | ||
path_alias: sigs.k8s.io/cosi-driver-sample | ||
annotations: | ||
testgrid-dashboards: sig-storage-cosi-driver-sample | ||
testgrid-tab-name: build | ||
description: Build test in cosi-driver-sample repo. | ||
labels: | ||
# running a docker-based build requires docker-in-docker (DinD) | ||
preset-dind-enabled: "true" # see config/prow/config.yaml - 'presets' section | ||
spec: | ||
containers: | ||
# specified tags are periodically updated in bulk for all prow jobs | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20241218-d4b51bc3e8-master | ||
command: | ||
- runner.sh | ||
args: | ||
- bash | ||
- -c | ||
- | | ||
make build | ||
securityContext: | ||
privileged: true # docker-in-docker needs privileged mode | ||
resources: | ||
limits: | ||
cpu: 2 | ||
memory: 4Gi | ||
requests: | ||
cpu: 2 | ||
memory: 4Gi | ||
|
||
- name: pull-cosi-driver-sample-unit | ||
cluster: eks-prow-build-cluster | ||
always_run: true | ||
decorate: true | ||
path_alias: sigs.k8s.io/cosi-driver-sample | ||
annotations: | ||
testgrid-dashboards: sig-storage-cosi-driver-sample | ||
testgrid-tab-name: unit | ||
description: Unit tests in cosi-driver-sample repo. | ||
spec: | ||
containers: | ||
- image: public.ecr.aws/docker/library/golang:latest | ||
command: | ||
- make | ||
args: | ||
- test | ||
resources: | ||
limits: | ||
cpu: 2 | ||
memory: 4Gi | ||
requests: | ||
cpu: 2 | ||
memory: 4Gi |
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