Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| apiVersion: v1 | |
| kind: Template | |
| metadata: | |
| creationTimestamp: null | |
| name: jenkins-lifecycle | |
| objects: | |
| - apiVersion: v1 | |
| kind: BuildConfig | |
| metadata: | |
| name: "jenkins-lifecycle" | |
| spec: | |
| source: | |
| type: "Git" | |
| git: | |
| uri: ${SOURCE_REPOSITORY_URL} | |
| ref: ${SOURCE_REPOSITORY_REF} | |
| strategy: | |
| type: | |
| jenkinsPipelineStrategy: | |
| jenkinsfilePath: jenkins/pipelines/Jenkinsfile | |
| triggers: {} | |
| parameters: | |
| - description: The URL of the repository with your application source code. | |
| displayName: Git Repository URL | |
| name: SOURCE_REPOSITORY_URL | |
| required: true | |
| value: https://github.com/RHsyseng/jenkins-on-openshift.git | |
| - description: Set this to a branch name, tag or other ref of your repository if you | |
| are not using the default branch. | |
| displayName: Git Reference | |
| name: SOURCE_REPOSITORY_REF | |
| value: master |