-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add 3.10 config for jenkins e2e testing
- Loading branch information
1 parent
0884cc7
commit 6dddee4
Showing
3 changed files
with
189 additions
and
1 deletion.
There are no files selected for viewing
123 changes: 123 additions & 0 deletions
123
ci-operator/config/openshift/jenkins/openshift-3.10.json
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,123 @@ | ||
{ | ||
"tag_specification": { | ||
"cluster": "https://api.ci.openshift.org", | ||
"namespace": "openshift", | ||
"name": "origin-v3.10", | ||
"tag": "", | ||
"tag_overrides": {} | ||
}, | ||
"base_images": { | ||
"base": { | ||
"cluster": "https://api.ci.openshift.org", | ||
"namespace": "openshift", | ||
"name": "origin-v3.10", | ||
"tag": "cli" | ||
}, | ||
"cluster-tests": { | ||
"cluster": "https://api.ci.openshift.org", | ||
"namespace": "openshift", | ||
"name": "origin-v3.10", | ||
"tag": "tests" | ||
} | ||
}, | ||
"test_base_image": { | ||
"cluster": "https://api.ci.openshift.org", | ||
"namespace": "openshift", | ||
"name": "release", | ||
"tag": "golang-1.9" | ||
}, | ||
"images": [ | ||
{ | ||
"from": "cluster-tests", | ||
"to": "jenkins-e2e-tests", | ||
"optional": true, | ||
"inputs": {"src": {"paths": [{"source_path": "/go/src/github.com/openshift/jenkins/test-e2e/.","destination_dir": "."}]}} | ||
}, | ||
{ | ||
"from": "base", | ||
"to": "bin-2-centos", | ||
"optional": true, | ||
"dockerfile_path": "Dockerfile", | ||
"inputs": {"src": {"paths": [{"source_path": "/go/src/github.com/openshift/jenkins/2/.","destination_dir": "."}]}} | ||
}, | ||
{ | ||
"from": "base", | ||
"to": "bin-slave-base-centos", | ||
"optional": true, | ||
"dockerfile_path": "Dockerfile", | ||
"inputs": {"src": {"paths": [{"source_path": "/go/src/github.com/openshift/jenkins/slave-base/.","destination_dir": "."}]}} | ||
}, | ||
{ | ||
"from": "bin-slave-base-centos", | ||
"to": "bin-agent-maven-35-centos", | ||
"optional": true, | ||
"dockerfile_path": "Dockerfile", | ||
"inputs": {"src": {"paths": [{"source_path": "/go/src/github.com/openshift/jenkins/agent-maven-3.5/.","destination_dir": "."}]}} | ||
}, | ||
{ | ||
"from": "bin-slave-base-centos", | ||
"to": "bin-agent-nodejs-8-centos", | ||
"optional": true, | ||
"dockerfile_path": "Dockerfile", | ||
"inputs": {"src": {"paths": [{"source_path": "/go/src/github.com/openshift/jenkins/agent-nodejs-8/.","destination_dir": "."}]}} | ||
} | ||
], | ||
"raw_steps": [ | ||
{ | ||
"output_image_tag_step": { | ||
"from": "bin-2-centos", | ||
"to": { | ||
"name": "stable", | ||
"tag": "prepare", | ||
"as": "prepare" | ||
}, | ||
"optional": true | ||
} | ||
}, | ||
{ | ||
"output_image_tag_step": { | ||
"from": "bin-agent-maven-35-centos", | ||
"to": { | ||
"name": "stable", | ||
"tag": "maven_agent", | ||
"as": "maven_agent" | ||
}, | ||
"optional": true | ||
} | ||
}, | ||
{ | ||
"output_image_tag_step": { | ||
"from": "bin-agent-nodejs-8-centos", | ||
"to": { | ||
"name": "stable", | ||
"tag": "nodejs_agent", | ||
"as": "nodejs_agent" | ||
}, | ||
"optional": true | ||
} | ||
}, | ||
{ | ||
"output_image_tag_step": { | ||
"from": "jenkins-e2e-tests", | ||
"to": { | ||
"name": "stable", | ||
"tag": "tests", | ||
"as": "tests" | ||
}, | ||
"optional": true | ||
} | ||
} | ||
], | ||
"resources": { | ||
"*": { | ||
"requests": { | ||
"cpu": "100m", | ||
"memory": "200Mi" | ||
}, | ||
"limits": { | ||
"cpu": "2", | ||
"memory": "4Gi" | ||
} | ||
} | ||
} | ||
} |
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