This repository has been archived by the owner on Oct 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1212 from cloudfoundry-incubator/backport-ci-to-2.2
Backport pipeline from release-2.3 to release-2.2
- Loading branch information
Showing
11 changed files
with
1,615 additions
and
590 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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,62 @@ | ||
--- | ||
# NOTE: unique prefix for resource names. This way they don't collide among | ||
# different pipelines. Use your own when developing. Must not start with a | ||
# number as it breaks gcloud clusters. | ||
resource_prefix: release-2-2 | ||
|
||
workertags: # list of worker tags, to run the pipeline on specific (tagged) workers | ||
# - yourtag | ||
|
||
# NOTE use your own bucket when developing | ||
s3_bucket: kubecf-ci | ||
s3_bucket_region: eu-central-1 | ||
|
||
# NOTE use your own bucket when developing | ||
s3_final_bucket: kubecf | ||
s3_final_bucket_region: us-west-2 | ||
|
||
kubecf_repository: cloudfoundry-incubator/kubecf | ||
|
||
# for preemptible gke clusters | ||
gke_project: suse-225215 | ||
gke_zone: europe-west3-c | ||
gke_dns_zone: kubecf-ci | ||
gke_domain: kubecf.ci | ||
|
||
# NOTE please disable the following when developing or deploying a copy of | ||
# the pipeline: | ||
trigger_publish: true | ||
github_status: true | ||
|
||
availableCfSchedulers: # Diego / Eirini | ||
- diego | ||
- eirini | ||
|
||
branches: # Repository branches to track | ||
- release-2.2 | ||
pr_resources: | ||
- pr | ||
pr_base_branch: release-2.2 # filter PRs depending on the branch they target. `~` for all branches | ||
|
||
# Stable Jobs | ||
stable_jobs: | ||
- lint | ||
- build | ||
- deploy-diego | ||
- deploy-eirini | ||
- smoke-tests-diego | ||
- cf-acceptance-tests-diego | ||
- cleanup-diego-cluster | ||
- cleanup-eirini-cluster | ||
|
||
experimental_jobs: | ||
- cf-acceptance-tests-eirini | ||
- cats-internetless-eirini | ||
- ccdb-rotate-eirini | ||
- smoke-tests-post-rotate-eirini | ||
- cats-internetless-diego | ||
- sync-integration-tests | ||
- ccdb-rotate-diego | ||
- smoke-tests-post-rotate-diego | ||
- upgrade-test | ||
- smoke-tests-eirini |
Oops, something went wrong.