func clusterDetails()

in templater/main.go [180:194]


func clusterDetails(jobType, cluster, bucket, serviceAccountName string) (string, string, string) {
	if jobType == "presubmit" && len(cluster) == 0 {
		cluster = "prow-presubmits-cluster"
		bucket = "s3://prowpresubmitsdataclusterstack-prowbucket7c73355c-vfwwxd2eb4gp"
		serviceAccountName = "presubmits-build-account"
	}

	if (jobType == "postsubmit" || jobType == "periodic") && len(cluster) == 0 {
		cluster = "prow-postsubmits-cluster"
		bucket = "s3://prowdataclusterstack-316434458-prowbucket7c73355c-1n9f9v93wpjcm"
		serviceAccountName = "postsubmits-build-account"
	}

	return cluster, bucket, serviceAccountName
}