Skip to content

Commit

Permalink
Update codegen
Browse files Browse the repository at this point in the history
  • Loading branch information
aliok committed Aug 20, 2024
1 parent 3eed86e commit bae5fb0
Showing 1 changed file with 89 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ periodics:
value: "true"
image: us-docker.pkg.dev/knative-tests/images/prow-tests:v20240814-5855b4567
name: ""
resources: {}
resources:
limits:
memory: 16Gi
requests:
memory: 12Gi
securityContext:
privileged: true
volumeMounts:
Expand Down Expand Up @@ -95,7 +99,11 @@ periodics:
value: "true"
image: us-docker.pkg.dev/knative-tests/images/prow-tests:v20240814-5855b4567
name: ""
resources: {}
resources:
limits:
memory: 16Gi
requests:
memory: 12Gi
securityContext:
privileged: true
volumeMounts:
Expand Down Expand Up @@ -166,7 +174,11 @@ periodics:
value: "true"
image: us-docker.pkg.dev/knative-tests/images/prow-tests:v20240814-5855b4567
name: ""
resources: {}
resources:
limits:
memory: 16Gi
requests:
memory: 12Gi
securityContext:
privileged: true
volumeMounts:
Expand Down Expand Up @@ -226,10 +238,83 @@ presubmits:
- --build-tests
image: us-docker.pkg.dev/knative-tests/images/prow-tests:v20240814-5855b4567
name: ""
resources: {}
resources:
limits:
memory: 16Gi
requests:
memory: 12Gi
securityContext:
privileged: true
nodeSelector:
kubernetes.io/arch: amd64
type: testing
trigger: ((?m)^/test( | .* )build-tests,?($|\s.*))|((?m)^/test( | .* )build-tests_backstage-plugins_main,?($|\s.*))
- always_run: true
branches:
- ^main$
cluster: prow-build
decorate: true
name: unit-tests_backstage-plugins_main
path_alias: knative.dev/backstage-plugins
rerun_command: /test unit-tests
spec:
containers:
- command:
- runner.sh
- ./test/presubmit-tests.sh
- --unit-tests
image: us-docker.pkg.dev/knative-tests/images/prow-tests:v20240814-5855b4567
name: ""
resources:
limits:
memory: 10Gi
requests:
memory: 8Gi
securityContext:
privileged: true
nodeSelector:
kubernetes.io/arch: amd64
type: testing
trigger: ((?m)^/test( | .* )unit-tests,?($|\s.*))|((?m)^/test( | .* )unit-tests_backstage-plugins_main,?($|\s.*))
- always_run: true
branches:
- ^main$
cluster: prow-build
decorate: true
name: e2e-tests_backstage-plugins_main
path_alias: knative.dev/backstage-plugins
rerun_command: /test e2e-tests
spec:
containers:
- command:
- runner.sh
- ./test/presubmit-tests.sh
- --run-test
- ./test/e2e-tests.sh
env:
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /etc/test-account/service-account.json
image: us-docker.pkg.dev/knative-tests/images/prow-tests:v20240814-5855b4567
name: ""
resources:
limits:
memory: 16Gi
requests:
memory: 12Gi
securityContext:
privileged: true
volumeMounts:
- mountPath: /etc/test-account
name: test-account
readOnly: true
nodeSelector:
kubernetes.io/arch: amd64
type: testing
volumes:
- name: test-account
secret:
items:
- key: service-account-key.json
path: service-account.json
secretName: prow-google-credentials
trigger: ((?m)^/test( | .* )e2e-tests,?($|\s.*))|((?m)^/test( | .* )e2e-tests_backstage-plugins_main,?($|\s.*))

0 comments on commit bae5fb0

Please sign in to comment.