├── .gitignore ├── .prow ├── OWNERS └── presubmits.yaml ├── CONTRIBUTING.md ├── LICENSE ├── OWNERS ├── README.md ├── common └── config │ └── .yamllint.conf ├── go.mod ├── go.sum ├── ml └── tf-prow-squad.ipynb ├── prow ├── Makefile.gcloud.mk ├── bump.sh ├── oss │ ├── Makefile │ ├── README.md │ ├── cluster │ │ ├── build │ │ │ ├── grandmatriarch_test-pods.yaml │ │ │ └── serviceaccounts.yaml │ │ ├── cherrypicker.yaml │ │ ├── cluster.yaml │ │ ├── crier-kicker.yaml │ │ ├── crier.yaml │ │ ├── deck-kicker.yaml │ │ ├── deck.yaml │ │ ├── deck_blueprints_deployment.yaml │ │ ├── gerrit.yaml │ │ ├── ghproxy.yaml │ │ ├── grandmatriarch_default.yaml │ │ ├── grandmatriarch_test-pods.yaml │ │ ├── hook.yaml │ │ ├── horologium.yaml │ │ ├── kes-kicker.yaml │ │ ├── kubeconfigs │ │ │ └── kubeconfigs.yaml │ │ ├── kubernetes-external-secrets_crd.yaml │ │ ├── kubernetes-external-secrets_deployment.yaml │ │ ├── kubernetes-external-secrets_rbac.yaml │ │ ├── kubernetes-external-secrets_service.yaml │ │ ├── kubernetes_external_secrets.yaml │ │ ├── monitoring │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── prow_podmonitors_for_gmp.yaml │ │ ├── prow-controller-manager-kicker.yaml │ │ ├── prow-controller-manager.yaml │ │ ├── prowjob-crd │ │ │ └── prowjob_customresourcedefinition.yaml │ │ ├── sinker-kicker.yaml │ │ ├── sinker.yaml │ │ ├── sub.yaml │ │ └── tide.yaml │ ├── config.yaml │ ├── create-build-cluster.sh │ ├── gencred-config │ │ └── gencred-config.yaml │ ├── misc-images-autobump-config.yaml │ ├── monitoring-autobump-config.yaml │ ├── onboarding.md │ ├── oss-prow-autobump-config.yaml │ ├── oss_prow_logo.png │ ├── oss_prow_logo20X20.png │ ├── plugins.yaml │ ├── run-k8s-binary.sh │ ├── serviceaccounts │ │ ├── GoogleCloudPlatform_oss-test-infra_serviceaccounts.yaml │ │ └── GoogleCloudPlatform_testgrid_serviceaccounts.yaml │ └── terraform │ │ ├── Makefile │ │ ├── README.md │ │ ├── main.tf │ │ └── modules │ │ ├── alerts │ │ ├── boskos │ │ │ ├── main.tf │ │ │ └── variables.tf │ │ ├── main.tf │ │ ├── probers.tf │ │ └── variables.tf │ │ └── dashboards │ │ ├── main.tf │ │ └── variables.tf ├── pj-on-kind.sh ├── prowjobs │ ├── GoogleCloudPlatform │ │ ├── blueprints │ │ │ └── GoogleCloudPlatform_blueprints_checkconfig.yaml │ │ ├── compute-image-import │ │ │ ├── OWNERS │ │ │ └── compute-image-import.yaml │ │ ├── elcarro-oracle-operator │ │ │ ├── OWNERS │ │ │ └── elcarro-oracle-operator.yaml │ │ ├── esp-v2 │ │ │ ├── OWNERS │ │ │ └── esp-v2.yaml │ │ ├── gcp-guest │ │ │ ├── OWNERS │ │ │ ├── cloud-image-tests.yaml │ │ │ ├── compute-daisy.yaml │ │ │ ├── compute-image-tools.yaml │ │ │ ├── galog.yaml │ │ │ ├── gcp-guest-config.yaml │ │ │ ├── google-guest-agent.yaml │ │ │ └── legacy-periodics.yaml │ │ ├── gcs-fuse-csi-driver │ │ │ ├── OWNERS │ │ │ └── gcs-fuse-csi-driver-config.yaml │ │ ├── gke-networking-api │ │ │ ├── OWNERS │ │ │ └── gke-networking-api-config.yaml │ │ ├── k8s-cloud-provider │ │ │ ├── OWNERS │ │ │ └── k8s-cloud-provider-config.yaml │ │ ├── k8s-config-connector │ │ │ └── OWNERS │ │ ├── louhi │ │ │ ├── OWNER │ │ │ └── louhi-echo-test.yaml │ │ ├── oss-test-infra │ │ │ └── gcp-oss-test-infra-config.yaml │ │ └── testgrid │ │ │ ├── OWNERS │ │ │ └── testgrid-jobs.yaml │ ├── GoogleContainerTools │ │ └── kpt-config-sync │ │ │ ├── OWNERS │ │ │ ├── kpt-config-sync-periodics-release.yaml │ │ │ ├── kpt-config-sync-periodics.yaml │ │ │ ├── kpt-config-sync-postsubmits.yaml │ │ │ ├── kpt-config-sync-presubmits.yaml │ │ │ └── kpt-config-sync-terraform.yaml │ ├── google │ │ ├── http_pattern_matcher │ │ │ ├── OWNERS │ │ │ └── http-pattern-matcher.yaml │ │ ├── jwt_verify_lib │ │ │ ├── OWNERS │ │ │ └── jwt-verify-lib-presubmit.yaml │ │ └── oracle-toolkit │ │ │ ├── OWNERS │ │ │ └── oracle-toolkit-presubmit.yaml │ ├── grpc-ecosystem │ │ └── grpc-httpjson-transcoding │ │ │ ├── OWNERS │ │ │ └── transcoding.yaml │ ├── kubeflow │ │ ├── OWNERS │ │ ├── gcp-blueprints │ │ │ └── kubeflow-gcp-blueprints.yaml │ │ ├── internal-acls │ │ │ └── kubeflow-internal-acls.yaml │ │ ├── pipelines │ │ │ ├── kubeflow-pipelines-periodics.yaml │ │ │ └── kubeflow-pipelines-presubmits.yaml │ │ └── website │ │ │ └── kubeflow-website.yaml │ ├── kunit-review.googlesource.com │ │ └── linux │ │ │ ├── OWNERS │ │ │ └── kunit-linux-config.yaml │ ├── linux-review.googlesource.com │ │ ├── OWNERS │ │ └── linux │ │ │ └── kernel │ │ │ └── git │ │ │ └── torvalds │ │ │ └── linux.yaml │ └── openshift │ │ ├── OWNERS │ │ └── origin │ │ └── openshift-origin-base-test.yaml └── tests │ ├── README.md │ └── jobs_test.go └── testgrid ├── config.yaml └── default.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/.gitignore -------------------------------------------------------------------------------- /.prow/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/.prow/OWNERS -------------------------------------------------------------------------------- /.prow/presubmits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/.prow/presubmits.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/README.md -------------------------------------------------------------------------------- /common/config/.yamllint.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/common/config/.yamllint.conf -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/go.sum -------------------------------------------------------------------------------- /ml/tf-prow-squad.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/ml/tf-prow-squad.ipynb -------------------------------------------------------------------------------- /prow/Makefile.gcloud.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/Makefile.gcloud.mk -------------------------------------------------------------------------------- /prow/bump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/bump.sh -------------------------------------------------------------------------------- /prow/oss/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/Makefile -------------------------------------------------------------------------------- /prow/oss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/README.md -------------------------------------------------------------------------------- /prow/oss/cluster/build/grandmatriarch_test-pods.yaml: -------------------------------------------------------------------------------- 1 | ../grandmatriarch_test-pods.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/build/serviceaccounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/build/serviceaccounts.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/cherrypicker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/cherrypicker.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/cluster.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/crier-kicker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/crier-kicker.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/crier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/crier.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/deck-kicker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/deck-kicker.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/deck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/deck.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/deck_blueprints_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/deck_blueprints_deployment.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/gerrit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/gerrit.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/ghproxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/ghproxy.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/grandmatriarch_default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/grandmatriarch_default.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/grandmatriarch_test-pods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/grandmatriarch_test-pods.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/hook.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/horologium.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/horologium.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/kes-kicker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/kes-kicker.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/kubeconfigs/kubeconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/kubeconfigs/kubeconfigs.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/kubernetes-external-secrets_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/kubernetes-external-secrets_crd.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/kubernetes-external-secrets_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/kubernetes-external-secrets_deployment.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/kubernetes-external-secrets_rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/kubernetes-external-secrets_rbac.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/kubernetes-external-secrets_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/kubernetes-external-secrets_service.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/kubernetes_external_secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/kubernetes_external_secrets.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/monitoring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/monitoring/Makefile -------------------------------------------------------------------------------- /prow/oss/cluster/monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/monitoring/README.md -------------------------------------------------------------------------------- /prow/oss/cluster/monitoring/prow_podmonitors_for_gmp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/monitoring/prow_podmonitors_for_gmp.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/prow-controller-manager-kicker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/prow-controller-manager-kicker.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/prow-controller-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/prow-controller-manager.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/prowjob-crd/prowjob_customresourcedefinition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/prowjob-crd/prowjob_customresourcedefinition.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/sinker-kicker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/sinker-kicker.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/sinker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/sinker.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/sub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/sub.yaml -------------------------------------------------------------------------------- /prow/oss/cluster/tide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/cluster/tide.yaml -------------------------------------------------------------------------------- /prow/oss/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/config.yaml -------------------------------------------------------------------------------- /prow/oss/create-build-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/create-build-cluster.sh -------------------------------------------------------------------------------- /prow/oss/gencred-config/gencred-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/gencred-config/gencred-config.yaml -------------------------------------------------------------------------------- /prow/oss/misc-images-autobump-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/misc-images-autobump-config.yaml -------------------------------------------------------------------------------- /prow/oss/monitoring-autobump-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/monitoring-autobump-config.yaml -------------------------------------------------------------------------------- /prow/oss/onboarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/onboarding.md -------------------------------------------------------------------------------- /prow/oss/oss-prow-autobump-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/oss-prow-autobump-config.yaml -------------------------------------------------------------------------------- /prow/oss/oss_prow_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/oss_prow_logo.png -------------------------------------------------------------------------------- /prow/oss/oss_prow_logo20X20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/oss_prow_logo20X20.png -------------------------------------------------------------------------------- /prow/oss/plugins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/plugins.yaml -------------------------------------------------------------------------------- /prow/oss/run-k8s-binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/run-k8s-binary.sh -------------------------------------------------------------------------------- /prow/oss/serviceaccounts/GoogleCloudPlatform_oss-test-infra_serviceaccounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/serviceaccounts/GoogleCloudPlatform_oss-test-infra_serviceaccounts.yaml -------------------------------------------------------------------------------- /prow/oss/serviceaccounts/GoogleCloudPlatform_testgrid_serviceaccounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/serviceaccounts/GoogleCloudPlatform_testgrid_serviceaccounts.yaml -------------------------------------------------------------------------------- /prow/oss/terraform/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/terraform/Makefile -------------------------------------------------------------------------------- /prow/oss/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/terraform/README.md -------------------------------------------------------------------------------- /prow/oss/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/terraform/main.tf -------------------------------------------------------------------------------- /prow/oss/terraform/modules/alerts/boskos/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/terraform/modules/alerts/boskos/main.tf -------------------------------------------------------------------------------- /prow/oss/terraform/modules/alerts/boskos/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/terraform/modules/alerts/boskos/variables.tf -------------------------------------------------------------------------------- /prow/oss/terraform/modules/alerts/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/terraform/modules/alerts/main.tf -------------------------------------------------------------------------------- /prow/oss/terraform/modules/alerts/probers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/terraform/modules/alerts/probers.tf -------------------------------------------------------------------------------- /prow/oss/terraform/modules/alerts/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/terraform/modules/alerts/variables.tf -------------------------------------------------------------------------------- /prow/oss/terraform/modules/dashboards/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/terraform/modules/dashboards/main.tf -------------------------------------------------------------------------------- /prow/oss/terraform/modules/dashboards/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/oss/terraform/modules/dashboards/variables.tf -------------------------------------------------------------------------------- /prow/pj-on-kind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/pj-on-kind.sh -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/blueprints/GoogleCloudPlatform_blueprints_checkconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/blueprints/GoogleCloudPlatform_blueprints_checkconfig.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/compute-image-import/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/compute-image-import/OWNERS -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/compute-image-import/compute-image-import.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/compute-image-import/compute-image-import.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/elcarro-oracle-operator/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/elcarro-oracle-operator/OWNERS -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/elcarro-oracle-operator/elcarro-oracle-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/elcarro-oracle-operator/elcarro-oracle-operator.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/esp-v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/esp-v2/OWNERS -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/esp-v2/esp-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/esp-v2/esp-v2.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/gcp-guest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/gcp-guest/OWNERS -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/gcp-guest/cloud-image-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/gcp-guest/cloud-image-tests.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/gcp-guest/compute-daisy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/gcp-guest/compute-daisy.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/gcp-guest/compute-image-tools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/gcp-guest/compute-image-tools.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/gcp-guest/galog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/gcp-guest/galog.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/gcp-guest/gcp-guest-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/gcp-guest/gcp-guest-config.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/gcp-guest/google-guest-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/gcp-guest/google-guest-agent.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/gcp-guest/legacy-periodics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/gcp-guest/legacy-periodics.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/gcs-fuse-csi-driver/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/gcs-fuse-csi-driver/OWNERS -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/gcs-fuse-csi-driver/gcs-fuse-csi-driver-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/gcs-fuse-csi-driver/gcs-fuse-csi-driver-config.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/gke-networking-api/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - bowei 3 | - yswe 4 | -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/gke-networking-api/gke-networking-api-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/gke-networking-api/gke-networking-api-config.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/k8s-cloud-provider/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - bowei 3 | - rramkumar1 4 | -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/k8s-cloud-provider/k8s-cloud-provider-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/k8s-cloud-provider/k8s-cloud-provider-config.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/k8s-config-connector/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/k8s-config-connector/OWNERS -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/louhi/OWNER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/louhi/OWNER -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/louhi/louhi-echo-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/louhi/louhi-echo-test.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/oss-test-infra/gcp-oss-test-infra-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/oss-test-infra/gcp-oss-test-infra-config.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/testgrid/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/testgrid/OWNERS -------------------------------------------------------------------------------- /prow/prowjobs/GoogleCloudPlatform/testgrid/testgrid-jobs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleCloudPlatform/testgrid/testgrid-jobs.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleContainerTools/kpt-config-sync/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleContainerTools/kpt-config-sync/OWNERS -------------------------------------------------------------------------------- /prow/prowjobs/GoogleContainerTools/kpt-config-sync/kpt-config-sync-periodics-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleContainerTools/kpt-config-sync/kpt-config-sync-periodics-release.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleContainerTools/kpt-config-sync/kpt-config-sync-periodics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleContainerTools/kpt-config-sync/kpt-config-sync-periodics.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleContainerTools/kpt-config-sync/kpt-config-sync-postsubmits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleContainerTools/kpt-config-sync/kpt-config-sync-postsubmits.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleContainerTools/kpt-config-sync/kpt-config-sync-presubmits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleContainerTools/kpt-config-sync/kpt-config-sync-presubmits.yaml -------------------------------------------------------------------------------- /prow/prowjobs/GoogleContainerTools/kpt-config-sync/kpt-config-sync-terraform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/GoogleContainerTools/kpt-config-sync/kpt-config-sync-terraform.yaml -------------------------------------------------------------------------------- /prow/prowjobs/google/http_pattern_matcher/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/google/http_pattern_matcher/OWNERS -------------------------------------------------------------------------------- /prow/prowjobs/google/http_pattern_matcher/http-pattern-matcher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/google/http_pattern_matcher/http-pattern-matcher.yaml -------------------------------------------------------------------------------- /prow/prowjobs/google/jwt_verify_lib/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/google/jwt_verify_lib/OWNERS -------------------------------------------------------------------------------- /prow/prowjobs/google/jwt_verify_lib/jwt-verify-lib-presubmit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/google/jwt_verify_lib/jwt-verify-lib-presubmit.yaml -------------------------------------------------------------------------------- /prow/prowjobs/google/oracle-toolkit/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/google/oracle-toolkit/OWNERS -------------------------------------------------------------------------------- /prow/prowjobs/google/oracle-toolkit/oracle-toolkit-presubmit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/google/oracle-toolkit/oracle-toolkit-presubmit.yaml -------------------------------------------------------------------------------- /prow/prowjobs/grpc-ecosystem/grpc-httpjson-transcoding/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/grpc-ecosystem/grpc-httpjson-transcoding/OWNERS -------------------------------------------------------------------------------- /prow/prowjobs/grpc-ecosystem/grpc-httpjson-transcoding/transcoding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/grpc-ecosystem/grpc-httpjson-transcoding/transcoding.yaml -------------------------------------------------------------------------------- /prow/prowjobs/kubeflow/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/kubeflow/OWNERS -------------------------------------------------------------------------------- /prow/prowjobs/kubeflow/gcp-blueprints/kubeflow-gcp-blueprints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/kubeflow/gcp-blueprints/kubeflow-gcp-blueprints.yaml -------------------------------------------------------------------------------- /prow/prowjobs/kubeflow/internal-acls/kubeflow-internal-acls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/kubeflow/internal-acls/kubeflow-internal-acls.yaml -------------------------------------------------------------------------------- /prow/prowjobs/kubeflow/pipelines/kubeflow-pipelines-periodics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/kubeflow/pipelines/kubeflow-pipelines-periodics.yaml -------------------------------------------------------------------------------- /prow/prowjobs/kubeflow/pipelines/kubeflow-pipelines-presubmits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/kubeflow/pipelines/kubeflow-pipelines-presubmits.yaml -------------------------------------------------------------------------------- /prow/prowjobs/kubeflow/website/kubeflow-website.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/kubeflow/website/kubeflow-website.yaml -------------------------------------------------------------------------------- /prow/prowjobs/kunit-review.googlesource.com/linux/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/kunit-review.googlesource.com/linux/OWNERS -------------------------------------------------------------------------------- /prow/prowjobs/kunit-review.googlesource.com/linux/kunit-linux-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/kunit-review.googlesource.com/linux/kunit-linux-config.yaml -------------------------------------------------------------------------------- /prow/prowjobs/linux-review.googlesource.com/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/linux-review.googlesource.com/OWNERS -------------------------------------------------------------------------------- /prow/prowjobs/linux-review.googlesource.com/linux/kernel/git/torvalds/linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/linux-review.googlesource.com/linux/kernel/git/torvalds/linux.yaml -------------------------------------------------------------------------------- /prow/prowjobs/openshift/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/openshift/OWNERS -------------------------------------------------------------------------------- /prow/prowjobs/openshift/origin/openshift-origin-base-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/prowjobs/openshift/origin/openshift-origin-base-test.yaml -------------------------------------------------------------------------------- /prow/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/tests/README.md -------------------------------------------------------------------------------- /prow/tests/jobs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/prow/tests/jobs_test.go -------------------------------------------------------------------------------- /testgrid/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/testgrid/config.yaml -------------------------------------------------------------------------------- /testgrid/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/oss-test-infra/HEAD/testgrid/default.yaml --------------------------------------------------------------------------------