You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WARNING: Any data stored will be lost upon pod destruction. Only use this template for testing
21
-
22
-
A Jenkins service has been created in your project. The username/password are admin/do74BWFgyEdyna1r. The tutorial at https://github.com/openshift/origin/blob/master/examples/jenkins/README.md contains more information about using this template.
23
-
24
-
* With parameters:
25
-
* Jenkins Service Name=jenkins
26
-
* Jenkins JNLP Service Name=jenkins-jnlp
27
-
* Jenkins Password=do74BWFgyEdyna1r # generated
28
-
* Memory Limit=512Mi
29
-
* Jenkins ImageStream Namespace=openshift
30
-
* Jenkins ImageStreamTag=jenkins:latest
31
-
32
-
--> Creating resources with label app=jenkins-ephemeral ...
33
-
route "jenkins" created
34
-
deploymentconfig "jenkins" created
35
-
serviceaccount "jenkins" created
36
-
rolebinding "jenkins_edit" created
37
-
service "jenkins-jnlp" created
38
-
service "jenkins" created
39
-
--> Success
40
-
Run 'oc status' to view your app.
41
-
42
17
echo"Create a new application containing a Jenkins Pipeline"
This example showcases the new Jenkins Pipeline integration in OpenShift, which performs continuous integration and deployment right on the platform. The template contains a Jenkinsfile - a definition of a multi-stage CI process - that leverages the underlying OpenShift platform fordynamic and scalable builds. OpenShift integrates the status of your pipeline builds into the web console allowing you to see your entire application lifecyclein a single view.
49
-
50
-
The Jenkins server is not currently automatically instantiated for you. Please instantiate one of the Jenkins templates to create a Jenkins server for managing your pipeline build configurations.
51
-
52
-
* With parameters:
53
-
* ADMIN_USERNAME=admin11K # generated
54
-
* ADMIN_PASSWORD=xeSuFO0f # generated
55
-
* MYSQL_USER=userB7J # generated
56
-
* MYSQL_PASSWORD=WNJL2IXJ # generated
57
-
* MYSQL_DATABASE=root
58
-
59
-
--> Creating resources with label app=jenkins-pipeline-example ...
60
-
buildconfig "sample-pipeline" created
61
-
service "frontend" created
62
-
route "frontend" created
63
-
imagestream "origin-ruby-sample" created
64
-
buildconfig "ruby-sample-build" created
65
-
deploymentconfig "frontend" created
66
-
service "database" created
67
-
deploymentconfig "database" created
68
-
--> Success
69
-
Use 'oc start-build sample-pipeline' to start a build.
70
-
Use 'oc start-build ruby-sample-build' to start a build.
71
-
Run 'oc status' to view your app.
72
19
73
20
echo"Start the build defined as Jenkins Job"
74
21
oc start-build sample-pipeline
75
22
76
23
echo"Next you should be able to access the Ruby Sample application after a few minutes"
0 commit comments