func clusterDetails()

in templater/main.go [176:194]


func clusterDetails(jobType string, cluster string, serviceAccountName string) (string, string, string) {
	if cluster == "prow-postsubmits-cluster" {
		jobType = "postsubmit"
	}

	cluster = "prow-presubmits-cluster"
	bucket := "s3://prowpresubmitsdataclusterstack-prowbucket7c73355c-vfwwxd2eb4gp"

	if jobType == "postsubmit" || jobType == "periodic" {
		cluster = "prow-postsubmits-cluster"
		bucket = "s3://prowdataclusterstack-316434458-prowbucket7c73355c-1n9f9v93wpjcm"
	}

	if len(serviceAccountName) == 0 {
		serviceAccountName = jobType + "s-build-account"
	}

	return cluster, bucket, serviceAccountName
}