├── LICENSE ├── README.md ├── demo ├── 1-up.json ├── 2-provision.json └── 3-teardown.json ├── docker-compose.yml ├── jenkins-master-aws.yaml ├── jenkins-master-gke.yml ├── jenkins-master-vagrant.yml ├── jenkins-slaves-v2.yml ├── jenkins-slaves.yml ├── pod.json ├── replication-v2.json ├── replication.json ├── service-aws.yml ├── service-gke.yml ├── service-http.json ├── service-slave.json └── service-vagrant.yml /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | 203 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Running Jenkins master and slaves in a Kubernetes cluster 2 | ========================================================= 3 | 4 | Kubernetes examples running Jenkins master and slaves 5 | 6 | Creating a cluster 7 | ================== 8 | 9 | Local with Docker Compose 10 | ------------------------- 11 | 12 | A local testing cluster with one node can be created with Docker Compose 13 | 14 | ``` 15 | docker-compose up 16 | ``` 17 | 18 | When using boot2docker or Docker Engine with a remote host, the remote Kubernetes API can be exposed 19 | with `docker-machine ssh MACHINE_NAME -L 0.0.0.0:8080:localhost:8080` or `boot2docker ssh -L 0.0.0.0:8080:localhost:8080` 20 | 21 | More info 22 | 23 | * [Docker CookBook examples](https://github.com/how2dock/docbook/tree/master/ch05/docker) 24 | * [Kubernetes Getting started with Docker](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/getting-started-guides/docker.md) 25 | 26 | Google Compute Engine 27 | --------------------- 28 | 29 | ``` 30 | export KUBERNETES_HOME=~/kubernetes 31 | export KUBERNETES_PROVIDER=gce 32 | export KUBERNETES_NUM_MINIONS=2 33 | export KUBE_GCE_ZONE=us-central1-a 34 | $KUBERNETES_HOME/cluster/kube-up.sh 35 | ``` 36 | 37 | Creating the pods and services 38 | ============================== 39 | 40 | GKE 41 | ------- 42 | 43 | ``` 44 | gcloud compute disks create --size 20GB jenkins-data-disk 45 | kubectl get nodes 46 | kubectl create -f jenkins-master-gke.yml 47 | kubectl get rc 48 | kubectl get pods 49 | kubectl create -f service-gke.yml 50 | kubectl get services 51 | kubectl create -f jenkins-slaves.yml 52 | kubectl get rc 53 | kubectl get pods 54 | kubectl scale replicationcontrollers --replicas=2 jenkins-slave 55 | kubectl describe services/jenkins 56 | gcloud compute forwarding-rules list 57 | ``` 58 | 59 | AWS 60 | ------- 61 | This assumes a working kubernetes installation. I generate mine with [kops](https://github.com/kubernetes/kops). 62 | If `kubectl cluster-info` gives you output about the location of the API server, you are likely in pretty good shape. 63 | Next, create the working volume for jenkins: 64 | `aws ec2 create-volume --availability-zone us-east-1a --size 20 --volume-type gp2 65 | 66 | You'll get a response back that looks something like this: 67 | ``` 68 | { 69 | "AvailabilityZone": "us-east-1a", 70 | "Encrypted": false, 71 | "VolumeType": "gp2", 72 | "VolumeId": "vol-002d2b99000000000", # Write this value down 73 | "State": "creating", 74 | "Iops": 100, 75 | "SnapshotId": "", 76 | "CreateTime": "2016-12-24T17:39:34.725Z", 77 | "Size": 20 78 | } 79 | ``` 80 | Edit `jenkins-master-aws.yml` and put the VolumeID in the volumeID field`. 81 | 82 | ``` 83 | kubectl create -f jenkins-master-aws.yml 84 | kubectl get rc 85 | kubectl get pods 86 | kubectl create -f service-aws.yml 87 | kubectl get services 88 | kubectl describe service jenkins 89 | kubectl create -f jenkins-slaves.yml 90 | kubectl get rc 91 | kubectl get pods 92 | kubectl scale replicationcontrollers --replicas=2 jenkins-slave 93 | kubectl describe services/jenkins 94 | ``` 95 | These instructions get you a publically accessible Jenkins dashboard at the load balancer specified in `kubectl describe service jenkins`. This is likely not ideal for a production environment for a number of reasons to be explored at some future date. 96 | 97 | Vagrant 98 | ------- 99 | 100 | ``` 101 | kubectl get nodes 102 | kubectl create -f jenkins-master-vagrant.yml 103 | kubectl get rc 104 | kubectl get pods 105 | kubectl create -f service-vagrant.yml 106 | kubectl get services 107 | kubectl describe services/jenkins 108 | kubectl create -f jenkins-slaves.yml 109 | kubectl get rc 110 | kubectl get pods 111 | kubectl scale replicationcontrollers --replicas=2 jenkins-slave 112 | ``` 113 | 114 | 115 | Rolling update 116 | ============== 117 | 118 | ``` 119 | kubectl rolling-update jenkins-slave --update-period=10s -f replication-v2.yml 120 | ``` 121 | 122 | Tearing down 123 | ============ 124 | 125 | ``` 126 | kubectl stop replicationcontrollers jenkins-slave 127 | kubectl stop replicationcontrollers jenkins 128 | kubectl delete services jenkins 129 | $KUBERNETES_HOME/cluster/kube-down.sh 130 | ``` 131 | 132 | Demo 133 | ==== 134 | 135 | Kubernetes cluster up 136 | [![asciicast](https://asciinema.org/a/18161.png)](https://asciinema.org/a/18161) 137 | 138 | Jenkins master and slaves provisioning 139 | [![asciicast](https://asciinema.org/a/18162.png)](https://asciinema.org/a/18162) 140 | 141 | Kubernetes cluster teardown 142 | [![asciicast](https://asciinema.org/a/18163.png)](https://asciinema.org/a/18163) 143 | -------------------------------------------------------------------------------- /demo/1-up.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "width": 181, 4 | "height": 48, 5 | "duration": 61, 6 | "command": "/bin/bash", 7 | "title": "", 8 | "env": { 9 | "TERM": "xterm-color", 10 | "SHELL": "/bin/bash" 11 | }, 12 | "stdout": [ 13 | [ 14 | 0.04, 15 | "bash-3.2$ " 16 | ], 17 | [ 18 | 0.04, 19 | "e" 20 | ], 21 | [ 22 | 0.04, 23 | "x" 24 | ], 25 | [ 26 | 0.04, 27 | "p" 28 | ], 29 | [ 30 | 0.04, 31 | "o" 32 | ], 33 | [ 34 | 0.04, 35 | "r" 36 | ], 37 | [ 38 | 0.04, 39 | "t" 40 | ], 41 | [ 42 | 0.04, 43 | " " 44 | ], 45 | [ 46 | 0.04, 47 | "K" 48 | ], 49 | [ 50 | 0.04, 51 | "U" 52 | ], 53 | [ 54 | 0.04, 55 | "B" 56 | ], 57 | [ 58 | 0.04, 59 | "E" 60 | ], 61 | [ 62 | 0.04, 63 | "R" 64 | ], 65 | [ 66 | 0.04, 67 | "N" 68 | ], 69 | [ 70 | 0.04, 71 | "E" 72 | ], 73 | [ 74 | 0.04, 75 | "T" 76 | ], 77 | [ 78 | 0.04, 79 | "E" 80 | ], 81 | [ 82 | 0.04, 83 | "S" 84 | ], 85 | [ 86 | 0.04, 87 | "_" 88 | ], 89 | [ 90 | 0.04, 91 | "P" 92 | ], 93 | [ 94 | 0.04, 95 | "R" 96 | ], 97 | [ 98 | 0.04, 99 | "O" 100 | ], 101 | [ 102 | 0.04, 103 | "V" 104 | ], 105 | [ 106 | 0.04, 107 | "I" 108 | ], 109 | [ 110 | 0.04, 111 | "D" 112 | ], 113 | [ 114 | 0.04, 115 | "E" 116 | ], 117 | [ 118 | 0.04, 119 | "R" 120 | ], 121 | [ 122 | 0.04, 123 | "=" 124 | ], 125 | [ 126 | 0.04, 127 | "g" 128 | ], 129 | [ 130 | 0.04, 131 | "c" 132 | ], 133 | [ 134 | 0.04, 135 | "e" 136 | ], 137 | [ 138 | 0.04, 139 | "\r\n" 140 | ], 141 | [ 142 | 0.04, 143 | "bash-3.2$ " 144 | ], 145 | [ 146 | 0.04, 147 | "e" 148 | ], 149 | [ 150 | 0.04, 151 | "x" 152 | ], 153 | [ 154 | 0.04, 155 | "p" 156 | ], 157 | [ 158 | 0.04, 159 | "o" 160 | ], 161 | [ 162 | 0.04, 163 | "r" 164 | ], 165 | [ 166 | 0.04, 167 | "t" 168 | ], 169 | [ 170 | 0.04, 171 | " " 172 | ], 173 | [ 174 | 0.04, 175 | "K" 176 | ], 177 | [ 178 | 0.04, 179 | "U" 180 | ], 181 | [ 182 | 0.04, 183 | "B" 184 | ], 185 | [ 186 | 0.04, 187 | "E" 188 | ], 189 | [ 190 | 0.04, 191 | "R" 192 | ], 193 | [ 194 | 0.04, 195 | "N" 196 | ], 197 | [ 198 | 0.04, 199 | "E" 200 | ], 201 | [ 202 | 0.04, 203 | "T" 204 | ], 205 | [ 206 | 0.04, 207 | "E" 208 | ], 209 | [ 210 | 0.04, 211 | "S" 212 | ], 213 | [ 214 | 0.04, 215 | "_" 216 | ], 217 | [ 218 | 0.04, 219 | "N" 220 | ], 221 | [ 222 | 0.04, 223 | "U" 224 | ], 225 | [ 226 | 0.04, 227 | "M" 228 | ], 229 | [ 230 | 0.04, 231 | "_" 232 | ], 233 | [ 234 | 0.04, 235 | "M" 236 | ], 237 | [ 238 | 0.04, 239 | "I" 240 | ], 241 | [ 242 | 0.04, 243 | "N" 244 | ], 245 | [ 246 | 0.04, 247 | "I" 248 | ], 249 | [ 250 | 0.04, 251 | "O" 252 | ], 253 | [ 254 | 0.04, 255 | "N" 256 | ], 257 | [ 258 | 0.04, 259 | "S" 260 | ], 261 | [ 262 | 0.04, 263 | "=" 264 | ], 265 | [ 266 | 0.04, 267 | "2" 268 | ], 269 | [ 270 | 0.04, 271 | "\r\n" 272 | ], 273 | [ 274 | 0.04, 275 | "bash-3.2$ " 276 | ], 277 | [ 278 | 0.04, 279 | "e" 280 | ], 281 | [ 282 | 0.04, 283 | "x" 284 | ], 285 | [ 286 | 0.04, 287 | "p" 288 | ], 289 | [ 290 | 0.04, 291 | "o" 292 | ], 293 | [ 294 | 0.04, 295 | "r" 296 | ], 297 | [ 298 | 0.04, 299 | "t" 300 | ], 301 | [ 302 | 0.04, 303 | " " 304 | ], 305 | [ 306 | 0.04, 307 | "K" 308 | ], 309 | [ 310 | 0.04, 311 | "U" 312 | ], 313 | [ 314 | 0.04, 315 | "B" 316 | ], 317 | [ 318 | 0.04, 319 | "E" 320 | ], 321 | [ 322 | 0.04, 323 | "_" 324 | ], 325 | [ 326 | 0.04, 327 | "G" 328 | ], 329 | [ 330 | 0.04, 331 | "C" 332 | ], 333 | [ 334 | 0.04, 335 | "E" 336 | ], 337 | [ 338 | 0.04, 339 | "_" 340 | ], 341 | [ 342 | 0.04, 343 | "Z" 344 | ], 345 | [ 346 | 0.04, 347 | "O" 348 | ], 349 | [ 350 | 0.04, 351 | "N" 352 | ], 353 | [ 354 | 0.04, 355 | "E" 356 | ], 357 | [ 358 | 0.04, 359 | "=" 360 | ], 361 | [ 362 | 0.04, 363 | "u" 364 | ], 365 | [ 366 | 0.04, 367 | "s" 368 | ], 369 | [ 370 | 0.04, 371 | "-" 372 | ], 373 | [ 374 | 0.04, 375 | "c" 376 | ], 377 | [ 378 | 0.04, 379 | "e" 380 | ], 381 | [ 382 | 0.04, 383 | "n" 384 | ], 385 | [ 386 | 0.04, 387 | "t" 388 | ], 389 | [ 390 | 0.04, 391 | "r" 392 | ], 393 | [ 394 | 0.04, 395 | "a" 396 | ], 397 | [ 398 | 0.04, 399 | "l" 400 | ], 401 | [ 402 | 0.04, 403 | "-" 404 | ], 405 | [ 406 | 0.04, 407 | "\b\u001b[K" 408 | ], 409 | [ 410 | 0.04, 411 | "1" 412 | ], 413 | [ 414 | 0.04, 415 | "-" 416 | ], 417 | [ 418 | 0.04, 419 | "a" 420 | ], 421 | [ 422 | 0.04, 423 | "\r\n" 424 | ], 425 | [ 426 | 0.04, 427 | "bash-3.2$ " 428 | ], 429 | [ 430 | 0.04, 431 | "c" 432 | ], 433 | [ 434 | 0.04, 435 | "l" 436 | ], 437 | [ 438 | 0.04, 439 | "u" 440 | ], 441 | [ 442 | 0.04, 443 | "s" 444 | ], 445 | [ 446 | 0.04, 447 | "t" 448 | ], 449 | [ 450 | 0.04, 451 | "e" 452 | ], 453 | [ 454 | 0.04, 455 | "r" 456 | ], 457 | [ 458 | 0.04, 459 | "/" 460 | ], 461 | [ 462 | 0.04, 463 | "k" 464 | ], 465 | [ 466 | 0.04, 467 | "u" 468 | ], 469 | [ 470 | 0.04, 471 | "b" 472 | ], 473 | [ 474 | 0.04, 475 | "e" 476 | ], 477 | [ 478 | 0.04, 479 | "-" 480 | ], 481 | [ 482 | 0.04, 483 | "u" 484 | ], 485 | [ 486 | 0.04, 487 | "p" 488 | ], 489 | [ 490 | 0.04, 491 | "." 492 | ], 493 | [ 494 | 0.04, 495 | "s" 496 | ], 497 | [ 498 | 0.04, 499 | "h" 500 | ], 501 | [ 502 | 0.04, 503 | "\r\n" 504 | ], 505 | [ 506 | 0.024691, 507 | "Starting cluster using provider: gce\r\n" 508 | ], 509 | [ 510 | 0.000011, 511 | "... calling verify-prereqs\r\n" 512 | ], 513 | [ 514 | 0.003875, 515 | "... calling kube-up\r\n" 516 | ], 517 | [ 518 | 0.349046, 519 | "Project: gce-my-project\r\n" 520 | ], 521 | [ 522 | 0.000019, 523 | "Zone: us-central1-a\r\n" 524 | ], 525 | [ 526 | 0.129893, 527 | "current-context: \"\"\r\n" 528 | ], 529 | [ 530 | 0.000157, 531 | "Running: cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl config view -o template --template={{$dot := .}}{{with $ctx := index $dot \"current-context\"}}{{$user := index $dot \"contexts\" $ctx \"user\"}}{{index $dot \"users\" $user \"username\"}}{{end}}\r\n" 532 | ], 533 | [ 534 | 0.049430, 535 | "current-context: \"\"\r\n" 536 | ], 537 | [ 538 | 0.000182, 539 | "Running: cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl config view -o template --template={{$dot := .}}{{with $ctx := index $dot \"current-context\"}}{{$user := index $dot \"contexts\" $ctx \"user\"}}{{index $dot \"users\" $user \"password\"}}{{end}}\r\n" 540 | ], 541 | [ 542 | 1.000000, 543 | "+++ Staging server tars to Google Storage: gs://kubernetes-staging-c41d4/devel\r\n" 544 | ], 545 | [ 546 | 1.000000, 547 | "Starting master and configuring firewalls\r\n" 548 | ], 549 | [ 550 | 1.000000, 551 | "\u001b[1;33mWARNING:\u001b[0m You have selected a disk size of under [200GB]. This may result in poor I/O performance. For more information, see: https://developers.google.com/compute/docs/disks#pdperformance.\r\n" 552 | ], 553 | [ 554 | 1.000000, 555 | "Created [https://www.googleapis.com/compute/v1/projects/gce-my-project/zones/us-central1-a/disks/k8s-jenkins-master-pd].\r\n" 556 | ], 557 | [ 558 | 0.304970, 559 | "NAME ZONE SIZE_GB TYPE STATUS\r\n" 560 | ], 561 | [ 562 | 0.000248, 563 | "k8s-jenkins-master-pd us-central1-a 10 pd-standard READY\r\n" 564 | ], 565 | [ 566 | 0.055138, 567 | "date: illegal option -- I\r\nusage: date [-jnu] [-d dst] [-r seconds] [-t west] [-v[+|-]val[ymwdHMS]] ... \r\n [-f fmt date | [[[mm]dd]HH]MM[[cc]yy][.ss]] [+format]\r\n" 568 | ], 569 | [ 570 | 0.002352, 571 | "cluster/../cluster/gce/util.sh: line 427: @: unbound variable\r\n" 572 | ], 573 | [ 574 | 0.086223, 575 | "+++ Logging using Fluentd to elasticsearch\r\n" 576 | ], 577 | [ 578 | 1.000000, 579 | "Created [https://www.googleapis.com/compute/v1/projects/gce-my-project/global/firewalls/k8s-jenkins-master-https].\r\n" 580 | ], 581 | [ 582 | 0.324965, 583 | "NAME NETWORK SRC_RANGES RULES SRC_TAGS TARGET_TAGS\r\n" 584 | ], 585 | [ 586 | 0.000204, 587 | "k8s-jenkins-master-https default 0.0.0.0/0 tcp:443 k8s-jenkins-master\r\n" 588 | ], 589 | [ 590 | 1.000000, 591 | "Created [https://www.googleapis.com/compute/v1/projects/gce-my-project/global/firewalls/k8s-jenkins-minion-all].\r\n" 592 | ], 593 | [ 594 | 0.302284, 595 | "NAME NETWORK SRC_RANGES RULES SRC_TAGS TARGET_TAGS\r\nk8s-jenkins-minion-all default 10.244.0.0/16 tcp,udp,icmp,esp,ah,sctp k8s-jenkins-minion\r\n" 596 | ], 597 | [ 598 | 1.000000, 599 | "Created [https://www.googleapis.com/compute/v1/projects/gce-my-project/zones/us-central1-a/instances/k8s-jenkins-master].\r\n" 600 | ], 601 | [ 602 | 0.323924, 603 | "NAME ZONE MACHINE_TYPE INTERNAL_IP EXTERNAL_IP STATUS\r\n" 604 | ], 605 | [ 606 | 0.000127, 607 | "k8s-jenkins-master us-central1-a g1-small 10.240.35.23 104.154.32.213 RUNNING\r\n" 608 | ], 609 | [ 610 | 1.000000, 611 | "Updated [https://www.googleapis.com/compute/v1/projects/gce-my-project/zones/us-central1-a/instances/k8s-jenkins-master].\r\n" 612 | ], 613 | [ 614 | 0.354907, 615 | "Creating minions.\r\n" 616 | ], 617 | [ 618 | 0.005277, 619 | "date: illegal option -- I\r\nusage: date [-jnu] [-d dst] [-r seconds] [-t west] [-v[+|-]val[ymwdHMS]] ... \r\n [-f fmt date | [[[mm]dd]HH]MM[[cc]yy][.ss]] [+format]\r\n" 620 | ], 621 | [ 622 | 0.001513, 623 | "cluster/../cluster/gce/util.sh: line 427: @: unbound variable\r\n" 624 | ], 625 | [ 626 | 0.827110, 627 | "\u001b[1;33mWARNING:\u001b[0m You have selected a disk size of under [200GB]. This may result in poor I/O performance. For more information, see: https://developers.google.com/compute/docs/disks#pdperformance.\r\n" 628 | ], 629 | [ 630 | 1.000000, 631 | "Created [https://www.googleapis.com/compute/v1/projects/gce-my-project/global/instanceTemplates/k8s-jenkins-minion-template].\r\n" 632 | ], 633 | [ 634 | 0.298285, 635 | "NAME MACHINE_TYPE CREATION_TIMESTAMP\r\n" 636 | ], 637 | [ 638 | 0.000124, 639 | "k8s-jenkins-minion-template g1-small 2015-03-20T05:41:45.220-07:00\r\n" 640 | ], 641 | [ 642 | 1.000000, 643 | "Managed instance group k8s-jenkins-minion-group is being created. Operation: operation-1426855314138-d6d577f7-be4e-4a5b-bd8a-d4f0729dc979\r\n" 644 | ], 645 | [ 646 | 0.028685, 647 | "\u001b[0;33mWaiting for minions to run. " 648 | ], 649 | [ 650 | 0.000019, 651 | "0 out of 2 running. Retrying.\u001b[0m\r\n" 652 | ], 653 | [ 654 | 1.000000, 655 | "\u001b[0;33mWaiting for minions to run. " 656 | ], 657 | [ 658 | 0.000011, 659 | "0 out of 2 running. Retrying.\u001b[0m\r\n" 660 | ], 661 | [ 662 | 1.000000, 663 | "\u001b[0;33mWaiting for minions to run. 0 out of 2 running. Retrying.\u001b[0m\r\n" 664 | ], 665 | [ 666 | 1.000000, 667 | "\u001b[0;33mWaiting for minions to run. 0 out of 2 running. Retrying.\u001b[0m\r\n" 668 | ], 669 | [ 670 | 1.000000, 671 | "\u001b[0;33mWaiting for minions to run. 0 out of 2 running. Retrying.\u001b[0m\r\n" 672 | ], 673 | [ 674 | 1.000000, 675 | "\u001b[0;33mWaiting for minions to run. 1 out of 2 running. Retrying.\u001b[0m\r\n" 676 | ], 677 | [ 678 | 1.000000, 679 | "\u001b[0;33mWaiting for minions to run. " 680 | ], 681 | [ 682 | 0.000012, 683 | "1 out of 2 running. Retrying.\u001b[0m\r\n" 684 | ], 685 | [ 686 | 1.000000, 687 | "MINION_NAMES=k8s-jenkins-minion-5025 k8s-jenkins-minion-axrl\r\n" 688 | ], 689 | [ 690 | 1.000000, 691 | "Updated [https://www.googleapis.com/compute/v1/projects/gce-my-project/zones/us-central1-a/instances/k8s-jenkins-master].\r\n" 692 | ], 693 | [ 694 | 1.000000, 695 | "Updated [https://www.googleapis.com/compute/v1/projects/gce-my-project/zones/us-central1-a/instances/k8s-jenkins-minion-axrl].\r\n" 696 | ], 697 | [ 698 | 0.344805, 699 | "Updated [https://www.googleapis.com/compute/v1/projects/gce-my-project/zones/us-central1-a/instances/k8s-jenkins-minion-5025].\r\n" 700 | ], 701 | [ 702 | 1.000000, 703 | "Created [https://www.googleapis.com/compute/v1/projects/gce-my-project/global/routes/k8s-jenkins-minion-axrl].\r\n" 704 | ], 705 | [ 706 | 0.307615, 707 | "NAME NETWORK DEST_RANGE NEXT_HOP PRIORITY\r\n" 708 | ], 709 | [ 710 | 0.000162, 711 | "k8s-jenkins-minion-axrl default 10.244.1.0/24 us-central1-a/instances/k8s-jenkins-minion-axrl 1000\r\n" 712 | ], 713 | [ 714 | 0.146810, 715 | "Created [https://www.googleapis.com/compute/v1/projects/gce-my-project/global/routes/k8s-jenkins-minion-5025].\r\n" 716 | ], 717 | [ 718 | 0.304017, 719 | "NAME NETWORK DEST_RANGE NEXT_HOP PRIORITY\r\n" 720 | ], 721 | [ 722 | 0.000268, 723 | "k8s-jenkins-minion-5025 default 10.244.0.0/24 us-central1-a/instances/k8s-jenkins-minion-5025 1000\r\n" 724 | ], 725 | [ 726 | 1.000000, 727 | "Using master: k8s-jenkins-master (external IP: 104.154.32.213)\r\n" 728 | ], 729 | [ 730 | 1.000000, 731 | "Created [https://www.googleapis.com/compute/v1/projects/gce-my-project/regions/us-central1/addresses/k8s-jenkins-master-ip].\r\n" 732 | ], 733 | [ 734 | 0.315478, 735 | "NAME REGION ADDRESS STATUS\r\n" 736 | ], 737 | [ 738 | 0.000540, 739 | "k8s-jenkins-master-ip us-central1 104.154.32.213 IN_USE\r\n" 740 | ], 741 | [ 742 | 0.036390, 743 | "Waiting for cluster initialization.\r\n" 744 | ], 745 | [ 746 | 0.000008, 747 | "\r\n" 748 | ], 749 | [ 750 | 0.000017, 751 | " This will continually check to see if the API for kubernetes is reachable.\r\n" 752 | ], 753 | [ 754 | 0.000034, 755 | " This might loop forever if there was some uncaught error during start\r\n" 756 | ], 757 | [ 758 | 0.000007, 759 | " up.\r\n" 760 | ], 761 | [ 762 | 0.000003, 763 | "\r\n" 764 | ], 765 | [ 766 | 0.170639, 767 | "." 768 | ], 769 | [ 770 | 1.000000, 771 | "." 772 | ], 773 | [ 774 | 1.000000, 775 | "." 776 | ], 777 | [ 778 | 1.000000, 779 | "." 780 | ], 781 | [ 782 | 1.000000, 783 | "." 784 | ], 785 | [ 786 | 1.000000, 787 | "Kubernetes cluster created.\r\n" 788 | ], 789 | [ 790 | 1.000000, 791 | "current-context: \"\"\r\n" 792 | ], 793 | [ 794 | 0.000141, 795 | "Running: cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl config set-cluster gce-my-project_k8s-jenkins --server=https://104.154.32.213 --certificate-authority=/tmp/kubernetes.ca.crt --embed-certs=true\r\n" 796 | ], 797 | [ 798 | 0.055017, 799 | "current-context: \"\"\r\n" 800 | ], 801 | [ 802 | 0.000173, 803 | "Running: cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl config set-credentials gce-my-project_k8s-jenkins --username=admin --password=dq4WnH18xgdZ2iSH --client-certificate=/tmp/kubecfg.crt --client-key=/tmp/kubecfg.key --embed-certs=true\r\n" 804 | ], 805 | [ 806 | 0.089570, 807 | "current-context: \"\"\r\n" 808 | ], 809 | [ 810 | 0.000136, 811 | "Running: cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl config set-context gce-my-project_k8s-jenkins --cluster=gce-my-project_k8s-jenkins --user=gce-my-project_k8s-jenkins\r\n" 812 | ], 813 | [ 814 | 0.099537, 815 | "current-context: \"\"\r\n" 816 | ], 817 | [ 818 | 0.000247, 819 | "Running: cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl config use-context gce-my-project_k8s-jenkins --cluster=gce-my-project_k8s-jenkins\r\n" 820 | ], 821 | [ 822 | 0.029055, 823 | "Wrote config for gce-my-project_k8s-jenkins to /Users/csanchez/.kube/.kubeconfig\r\n" 824 | ], 825 | [ 826 | 0.000347, 827 | "Sanity checking cluster...\r\n" 828 | ], 829 | [ 830 | 0.000137, 831 | "Attempt 1 to check Docker on node k8s-jenkins-minion-5025 ..." 832 | ], 833 | [ 834 | 1.000000, 835 | " \u001b[0;32m[working]\u001b[0m\r\n" 836 | ], 837 | [ 838 | 0.000086, 839 | "Attempt 1 to check Docker on node k8s-jenkins-minion-axrl ..." 840 | ], 841 | [ 842 | 1.000000, 843 | " \u001b[0;32m[working]\u001b[0m\r\n" 844 | ], 845 | [ 846 | 0.000014, 847 | "\r\n" 848 | ], 849 | [ 850 | 0.000052, 851 | "\u001b[0;32mKubernetes cluster is running. The master is running at:\r\n" 852 | ], 853 | [ 854 | 0.000013, 855 | "\r\n" 856 | ], 857 | [ 858 | 0.000050, 859 | "\u001b[0;33m https://104.154.32.213\r\n" 860 | ], 861 | [ 862 | 0.000008, 863 | "\r\n" 864 | ], 865 | [ 866 | 0.000081, 867 | "\u001b[0;32mThe user name and password to use is located in /Users/csanchez/.kube/.kubeconfig.\u001b[0m\r\n" 868 | ], 869 | [ 870 | 0.000007, 871 | "\r\n" 872 | ], 873 | [ 874 | 0.000350, 875 | "... calling validate-cluster\r\n" 876 | ], 877 | [ 878 | 0.089655, 879 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 880 | ], 881 | [ 882 | 0.000176, 883 | "Running: cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl config view -o template --template={{$dot := .}}{{with $ctx := index $dot \"current-context\"}}{{$user := index $dot \"contexts\" $ctx \"user\"}}{{index $dot \"users\" $user \"username\"}}{{end}}\r\n" 884 | ], 885 | [ 886 | 0.122442, 887 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 888 | ], 889 | [ 890 | 0.000166, 891 | "Running: cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl config view -o template --template={{$dot := .}}{{with $ctx := index $dot \"current-context\"}}{{$user := index $dot \"contexts\" $ctx \"user\"}}{{index $dot \"users\" $user \"password\"}}{{end}}\r\n" 892 | ], 893 | [ 894 | 0.392343, 895 | "Project: gce-my-project\r\nZone: us-central1-a\r\n" 896 | ], 897 | [ 898 | 1.000000, 899 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 900 | ], 901 | [ 902 | 0.000226, 903 | "Running: cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl get minions -o template -t {{range.items}}{{.id}}\r\n{{end}}\r\n" 904 | ], 905 | [ 906 | 0.938210, 907 | "Found 2 nodes.\r\n" 908 | ], 909 | [ 910 | 0.001839, 911 | " 1\tk8s-jenkins-minion-5025.c.gce-my-project.internal\r\n 2\tk8s-jenkins-minion-axrl.c.gce-my-project.internal\r\n" 912 | ], 913 | [ 914 | 0.005876, 915 | "Attempt 1 at checking Kubelet installation on node k8s-jenkins-minion-5025 ..." 916 | ], 917 | [ 918 | 0.969359, 919 | " \u001b[0;32m[working]\u001b[0m\r\n" 920 | ], 921 | [ 922 | 0.008086, 923 | "Attempt 1 at checking Kubelet installation on node k8s-jenkins-minion-axrl ..." 924 | ], 925 | [ 926 | 0.875270, 927 | " \u001b[0;33m[not working yet]\u001b[0m\r\n" 928 | ], 929 | [ 930 | 1.000000, 931 | "Attempt 2 at checking Kubelet installation on node k8s-jenkins-minion-axrl ..." 932 | ], 933 | [ 934 | 0.906585, 935 | " \u001b[0;33m[not working yet]\u001b[0m\r\n" 936 | ], 937 | [ 938 | 1.000000, 939 | "Attempt 3 at checking Kubelet installation on node k8s-jenkins-minion-axrl ..." 940 | ], 941 | [ 942 | 0.921649, 943 | " \u001b[0;33m[not working yet]\u001b[0m\r\n" 944 | ], 945 | [ 946 | 1.000000, 947 | "Attempt 4 at checking Kubelet installation on node k8s-jenkins-minion-axrl ..." 948 | ], 949 | [ 950 | 0.925641, 951 | " \u001b[0;32m[working]\u001b[0m\r\n" 952 | ], 953 | [ 954 | 0.000308, 955 | "\u001b[0;32mCluster validation succeeded\u001b[0m\r\n" 956 | ], 957 | [ 958 | 0.004167, 959 | "... calling setup-logging-firewall\r\n" 960 | ], 961 | [ 962 | 1.000000, 963 | "Created [https://www.googleapis.com/compute/v1/projects/gce-my-project/global/firewalls/k8s-jenkins-fluentd-elasticsearch-logging].\r\n" 964 | ], 965 | [ 966 | 0.302847, 967 | "NAME NETWORK SRC_RANGES RULES SRC_TAGS TARGET_TAGS\r\n" 968 | ], 969 | [ 970 | 0.000220, 971 | "k8s-jenkins-fluentd-elasticsearch-logging default 0.0.0.0/0 tcp:5601,tcp:9200,tcp:9300 k8s-jenkins-minion\r\n" 972 | ], 973 | [ 974 | 0.038217, 975 | "waiting for logging services to be created by the master.\r\n" 976 | ], 977 | [ 978 | 0.073941, 979 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 980 | ], 981 | [ 982 | 0.000288, 983 | "Running: cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl get services -l name=kibana-logging -o template -t {{range.items}}{{.id}}{{end}}\r\n" 984 | ], 985 | [ 986 | 0.988640, 987 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 988 | ], 989 | [ 990 | 0.000148, 991 | "Running: cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl get services -l name=elasticsearch-logging -o template -t {{range.items}}{{.id}}{{end}}\r\n" 992 | ], 993 | [ 994 | 0.912898, 995 | "\r\n" 996 | ], 997 | [ 998 | 0.000111, 999 | "\u001b[0;32mCluster logs are ingested into Elasticsearch running at \u001b[0;33mhttps://104.154.32.213/api/v1beta1/proxy/services/elasticsearch-logging/\r\n" 1000 | ], 1001 | [ 1002 | 0.000189, 1003 | "\u001b[0;32mKibana logging dashboard will be available at \u001b[0;33mhttps://104.154.32.213/api/v1beta1/proxy/services/kibana-logging/\u001b[0m (note the trailing slash)\r\n" 1004 | ], 1005 | [ 1006 | 0.000012, 1007 | "\r\n" 1008 | ], 1009 | [ 1010 | 0.000185, 1011 | "Done\r\n" 1012 | ], 1013 | [ 1014 | 0.004204, 1015 | "bash-3.2$ " 1016 | ], 1017 | [ 1018 | 1.000000, 1019 | "c" 1020 | ], 1021 | [ 1022 | 0.000011, 1023 | "lu" 1024 | ], 1025 | [ 1026 | 0.000023, 1027 | "s" 1028 | ], 1029 | [ 1030 | 0.000008, 1031 | "t" 1032 | ], 1033 | [ 1034 | 0.000020, 1035 | "e" 1036 | ], 1037 | [ 1038 | 0.000021, 1039 | "r" 1040 | ], 1041 | [ 1042 | 0.000007, 1043 | "/" 1044 | ], 1045 | [ 1046 | 0.000046, 1047 | "k" 1048 | ], 1049 | [ 1050 | 0.000011, 1051 | "u" 1052 | ], 1053 | [ 1054 | 0.000004, 1055 | "b" 1056 | ], 1057 | [ 1058 | 0.000021, 1059 | "e" 1060 | ], 1061 | [ 1062 | 0.000015, 1063 | "c" 1064 | ], 1065 | [ 1066 | 0.000022, 1067 | "t" 1068 | ], 1069 | [ 1070 | 0.000005, 1071 | "l" 1072 | ], 1073 | [ 1074 | 0.000022, 1075 | "." 1076 | ], 1077 | [ 1078 | 0.000026, 1079 | "s" 1080 | ], 1081 | [ 1082 | 0.000005, 1083 | "h" 1084 | ], 1085 | [ 1086 | 0.000032, 1087 | " " 1088 | ], 1089 | [ 1090 | 0.000005, 1091 | "g" 1092 | ], 1093 | [ 1094 | 0.000025, 1095 | "e" 1096 | ], 1097 | [ 1098 | 0.000015, 1099 | "t" 1100 | ], 1101 | [ 1102 | 0.000028, 1103 | " " 1104 | ], 1105 | [ 1106 | 0.000005, 1107 | "m" 1108 | ], 1109 | [ 1110 | 0.000019, 1111 | "i" 1112 | ], 1113 | [ 1114 | 0.000026, 1115 | "n" 1116 | ], 1117 | [ 1118 | 0.000030, 1119 | "i" 1120 | ], 1121 | [ 1122 | 0.000005, 1123 | "o" 1124 | ], 1125 | [ 1126 | 0.000023, 1127 | "n" 1128 | ], 1129 | [ 1130 | 0.000017, 1131 | "s" 1132 | ], 1133 | [ 1134 | 0.000005, 1135 | "\r\n" 1136 | ], 1137 | [ 1138 | 0.057168, 1139 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 1140 | ], 1141 | [ 1142 | 0.000082, 1143 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl get minions\r\n" 1144 | ], 1145 | [ 1146 | 0.902817, 1147 | "NAME LABELS STATUS\r\nk8s-jenkins-minion-5025.c.gce-my-project.internal \u003cnone\u003e Ready\r\nk8s-jenkins-minion-axrl.c.gce-my-project.internal \u003cnone\u003e Ready" 1148 | ], 1149 | [ 1150 | 0.000077, 1151 | "\r\n" 1152 | ], 1153 | [ 1154 | 0.001581, 1155 | "bash-3.2$ " 1156 | ], 1157 | [ 1158 | 1.000000, 1159 | "cluster/kubectl.sh get minions" 1160 | ], 1161 | [ 1162 | 0.799349, 1163 | "\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u001b[K" 1164 | ], 1165 | [ 1166 | 0.511519, 1167 | "p" 1168 | ], 1169 | [ 1170 | 0.064254, 1171 | "o" 1172 | ], 1173 | [ 1174 | 0.119651, 1175 | "d" 1176 | ], 1177 | [ 1178 | 0.032457, 1179 | "s" 1180 | ], 1181 | [ 1182 | 0.271823, 1183 | "\r\n" 1184 | ], 1185 | [ 1186 | 0.059681, 1187 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 1188 | ], 1189 | [ 1190 | 0.000107, 1191 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl get pods\r\n" 1192 | ], 1193 | [ 1194 | 1.000000, 1195 | "POD IP CONTAINER(S) IMAGE(S) HOST " 1196 | ], 1197 | [ 1198 | 0.000014, 1199 | " LABELS STATUS CREATED\r\nelasticsearch-logging-controller-fplln 10.244.0.3 elasticsearch-logging " 1200 | ], 1201 | [ 1202 | 0.000006, 1203 | "kubernetes/elasticsearch:1.0 k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 kubernetes.io/cluster-service=true,name=elasticsearch-logging " 1204 | ], 1205 | [ 1206 | 0.000005, 1207 | " Running " 1208 | ], 1209 | [ 1210 | 0.000004, 1211 | "11 minutes\r\nkibana-logging-controller-ls6k1" 1212 | ], 1213 | [ 1214 | 0.000004, 1215 | " 10.244.0.7" 1216 | ], 1217 | [ 1218 | 0.000003, 1219 | " " 1220 | ], 1221 | [ 1222 | 0.000003, 1223 | "kibana-logging " 1224 | ], 1225 | [ 1226 | 0.000003, 1227 | " kubernetes/kibana:1.1 " 1228 | ], 1229 | [ 1230 | 0.000003, 1231 | " k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 " 1232 | ], 1233 | [ 1234 | 0.000004, 1235 | "kubernetes.io/cluster-service=true,name=kibana-logging " 1236 | ], 1237 | [ 1238 | 0.000003, 1239 | " Running " 1240 | ], 1241 | [ 1242 | 0.000003, 1243 | " 11 minutes" 1244 | ], 1245 | [ 1246 | 0.000004, 1247 | "\r\nkube-dns-gziey" 1248 | ], 1249 | [ 1250 | 0.000003, 1251 | " " 1252 | ], 1253 | [ 1254 | 0.000003, 1255 | " 10.244.0.4" 1256 | ], 1257 | [ 1258 | 0.000003, 1259 | " " 1260 | ], 1261 | [ 1262 | 0.000003, 1263 | "etcd " 1264 | ], 1265 | [ 1266 | 0.000003, 1267 | " quay.io/coreos/etcd:v2.0.3" 1268 | ], 1269 | [ 1270 | 0.000003, 1271 | " k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79" 1272 | ], 1273 | [ 1274 | 0.000003, 1275 | " k8s-app=kube-dns,kubernetes.io/cluster-service=true,name=kube-dns" 1276 | ], 1277 | [ 1278 | 0.000003, 1279 | " " 1280 | ], 1281 | [ 1282 | 0.000003, 1283 | "Running " 1284 | ], 1285 | [ 1286 | 0.000024, 1287 | " 11 minutes\r\n" 1288 | ], 1289 | [ 1290 | 0.000005, 1291 | " " 1292 | ], 1293 | [ 1294 | 0.000004, 1295 | " " 1296 | ], 1297 | [ 1298 | 0.000004, 1299 | " " 1300 | ], 1301 | [ 1302 | 0.000003, 1303 | "kube2sky " 1304 | ], 1305 | [ 1306 | 0.000003, 1307 | "kubernetes/kube2sky:1.1 " 1308 | ], 1309 | [ 1310 | 0.000003, 1311 | " " 1312 | ], 1313 | [ 1314 | 0.000003, 1315 | " " 1316 | ], 1317 | [ 1318 | 0.000002, 1319 | " " 1320 | ], 1321 | [ 1322 | 0.000003, 1323 | " " 1324 | ], 1325 | [ 1326 | 0.000003, 1327 | " " 1328 | ], 1329 | [ 1330 | 0.000003, 1331 | " " 1332 | ], 1333 | [ 1334 | 0.000003, 1335 | " " 1336 | ], 1337 | [ 1338 | 0.000003, 1339 | " " 1340 | ], 1341 | [ 1342 | 0.000003, 1343 | " " 1344 | ], 1345 | [ 1346 | 0.000003, 1347 | " " 1348 | ], 1349 | [ 1350 | 0.000002, 1351 | "\r\n " 1352 | ], 1353 | [ 1354 | 0.000003, 1355 | " " 1356 | ], 1357 | [ 1358 | 0.000002, 1359 | " " 1360 | ], 1361 | [ 1362 | 0.000003, 1363 | " " 1364 | ], 1365 | [ 1366 | 0.000003, 1367 | " " 1368 | ], 1369 | [ 1370 | 0.000010, 1371 | "skydns kubernetes/skydns:2015-03-11-001 " 1372 | ], 1373 | [ 1374 | 0.000003, 1375 | " " 1376 | ], 1377 | [ 1378 | 0.000003, 1379 | " " 1380 | ], 1381 | [ 1382 | 0.000003, 1383 | " " 1384 | ], 1385 | [ 1386 | 0.000003, 1387 | " " 1388 | ], 1389 | [ 1390 | 0.000004, 1391 | " " 1392 | ], 1393 | [ 1394 | 0.000003, 1395 | " " 1396 | ], 1397 | [ 1398 | 0.000003, 1399 | " " 1400 | ], 1401 | [ 1402 | 0.000003, 1403 | " " 1404 | ], 1405 | [ 1406 | 0.000003, 1407 | " \r\n" 1408 | ], 1409 | [ 1410 | 0.000003, 1411 | "monitoring-heapster-controller-0133o " 1412 | ], 1413 | [ 1414 | 0.000003, 1415 | " " 1416 | ], 1417 | [ 1418 | 0.000002, 1419 | "10.244.0.6 " 1420 | ], 1421 | [ 1422 | 0.000003, 1423 | " heapster" 1424 | ], 1425 | [ 1426 | 0.000098, 1427 | " kubernetes/heapster:v0.8" 1428 | ], 1429 | [ 1430 | 0.000010, 1431 | " k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 kubernetes.io/cluster-service=true,name=heapster,uses=monitoring-influxdb Running 11 minutes\r\nmonitoring-influx-grafana-controller-oh43e 10.244.0.5 influxdb kubernetes/heapster_influxdb:v0.3 k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 kubernetes.io/cluster-service=true,name=influxGrafana Running 11 minutes\r\n grafana kubernetes/heapster_grafana:v0.4 " 1432 | ], 1433 | [ 1434 | 0.000007, 1435 | " \r\n" 1436 | ], 1437 | [ 1438 | 0.001342, 1439 | "bash-3.2$ " 1440 | ], 1441 | [ 1442 | 1.000000, 1443 | "exit\r\n" 1444 | ] 1445 | ] 1446 | } -------------------------------------------------------------------------------- /demo/2-provision.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "width": 181, 4 | "height": 48, 5 | "duration": 96, 6 | "command": "/bin/bash", 7 | "title": "", 8 | "env": { 9 | "TERM": "xterm-color", 10 | "SHELL": "/bin/bash" 11 | }, 12 | "stdout": [ 13 | [ 14 | 0.011006, 15 | "bash-3.2$ " 16 | ], 17 | [ 18 | 1.000000, 19 | "c" 20 | ], 21 | [ 22 | 0.000013, 23 | "lu" 24 | ], 25 | [ 26 | 0.000021, 27 | "s" 28 | ], 29 | [ 30 | 0.000006, 31 | "t" 32 | ], 33 | [ 34 | 0.000012, 35 | "e" 36 | ], 37 | [ 38 | 0.000019, 39 | "r" 40 | ], 41 | [ 42 | 0.000128, 43 | "/" 44 | ], 45 | [ 46 | 0.000009, 47 | "k" 48 | ], 49 | [ 50 | 0.000017, 51 | "u" 52 | ], 53 | [ 54 | 0.000007, 55 | "b" 56 | ], 57 | [ 58 | 0.000034, 59 | "e" 60 | ], 61 | [ 62 | 0.000010, 63 | "c" 64 | ], 65 | [ 66 | 0.000006, 67 | "t" 68 | ], 69 | [ 70 | 0.000028, 71 | "l" 72 | ], 73 | [ 74 | 0.000021, 75 | "." 76 | ], 77 | [ 78 | 0.000008, 79 | "s" 80 | ], 81 | [ 82 | 0.000028, 83 | "h" 84 | ], 85 | [ 86 | 0.000027, 87 | " " 88 | ], 89 | [ 90 | 0.000009, 91 | "c" 92 | ], 93 | [ 94 | 0.000107, 95 | "r" 96 | ], 97 | [ 98 | 0.000006, 99 | "e" 100 | ], 101 | [ 102 | 0.000029, 103 | "a" 104 | ], 105 | [ 106 | 0.000047, 107 | "t" 108 | ], 109 | [ 110 | 0.000013, 111 | "e" 112 | ], 113 | [ 114 | 0.000019, 115 | " " 116 | ], 117 | [ 118 | 0.000008, 119 | "-" 120 | ], 121 | [ 122 | 0.000016, 123 | "f" 124 | ], 125 | [ 126 | 0.000008, 127 | " " 128 | ], 129 | [ 130 | 0.000019, 131 | "k" 132 | ], 133 | [ 134 | 0.000020, 135 | "u" 136 | ], 137 | [ 138 | 0.000007, 139 | "b" 140 | ], 141 | [ 142 | 0.000017, 143 | "e" 144 | ], 145 | [ 146 | 0.000014, 147 | "r" 148 | ], 149 | [ 150 | 0.000017, 151 | "n" 152 | ], 153 | [ 154 | 0.000007, 155 | "e" 156 | ], 157 | [ 158 | 0.000022, 159 | "t" 160 | ], 161 | [ 162 | 0.000019, 163 | "e" 164 | ], 165 | [ 166 | 0.000017, 167 | "s" 168 | ], 169 | [ 170 | 0.000019, 171 | "-" 172 | ], 173 | [ 174 | 0.000008, 175 | "j" 176 | ], 177 | [ 178 | 0.000023, 179 | "e" 180 | ], 181 | [ 182 | 0.000018, 183 | "n" 184 | ], 185 | [ 186 | 0.000018, 187 | "k" 188 | ], 189 | [ 190 | 0.000008, 191 | "i" 192 | ], 193 | [ 194 | 0.000023, 195 | "n" 196 | ], 197 | [ 198 | 0.000019, 199 | "s" 200 | ], 201 | [ 202 | 0.000020, 203 | "/" 204 | ], 205 | [ 206 | 0.000015, 207 | "p" 208 | ], 209 | [ 210 | 0.000029, 211 | "o" 212 | ], 213 | [ 214 | 0.000021, 215 | "d" 216 | ], 217 | [ 218 | 0.000024, 219 | "." 220 | ], 221 | [ 222 | 0.000022, 223 | "j" 224 | ], 225 | [ 226 | 0.000008, 227 | "s" 228 | ], 229 | [ 230 | 0.000026, 231 | "o" 232 | ], 233 | [ 234 | 0.000020, 235 | "n" 236 | ], 237 | [ 238 | 0.000007, 239 | "\r\n" 240 | ], 241 | [ 242 | 0.057941, 243 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 244 | ], 245 | [ 246 | 0.000114, 247 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl create -f kubernetes-jenkins/pod.json\r\n" 248 | ], 249 | [ 250 | 0.904852, 251 | "jenkins\r\n" 252 | ], 253 | [ 254 | 0.001857, 255 | "bash-3.2$ " 256 | ], 257 | [ 258 | 1.000000, 259 | "c" 260 | ], 261 | [ 262 | 0.000010, 263 | "l" 264 | ], 265 | [ 266 | 0.000006, 267 | "u" 268 | ], 269 | [ 270 | 0.000021, 271 | "s" 272 | ], 273 | [ 274 | 0.000015, 275 | "t" 276 | ], 277 | [ 278 | 0.000006, 279 | "e" 280 | ], 281 | [ 282 | 0.000043, 283 | "r" 284 | ], 285 | [ 286 | 0.000014, 287 | "/k" 288 | ], 289 | [ 290 | 0.000007, 291 | "u" 292 | ], 293 | [ 294 | 0.000035, 295 | "be" 296 | ], 297 | [ 298 | 0.000044, 299 | "c" 300 | ], 301 | [ 302 | 0.000021, 303 | "t" 304 | ], 305 | [ 306 | 0.000007, 307 | "l" 308 | ], 309 | [ 310 | 0.000025, 311 | "." 312 | ], 313 | [ 314 | 0.000009, 315 | "s" 316 | ], 317 | [ 318 | 0.000029, 319 | "h" 320 | ], 321 | [ 322 | 0.000008, 323 | " " 324 | ], 325 | [ 326 | 0.000024, 327 | "g" 328 | ], 329 | [ 330 | 0.000064, 331 | "e" 332 | ], 333 | [ 334 | 0.000008, 335 | "t" 336 | ], 337 | [ 338 | 0.000026, 339 | " " 340 | ], 341 | [ 342 | 0.000008, 343 | "p" 344 | ], 345 | [ 346 | 0.000027, 347 | "o" 348 | ], 349 | [ 350 | 0.000044, 351 | "d" 352 | ], 353 | [ 354 | 0.000009, 355 | "s\r\n" 356 | ], 357 | [ 358 | 0.056265, 359 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 360 | ], 361 | [ 362 | 0.000090, 363 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl get pods\r\n" 364 | ], 365 | [ 366 | 1.000000, 367 | "POD IP CONTAINER(S) IMAGE(S) HOST LABELS " 368 | ], 369 | [ 370 | 0.000013, 371 | " STATUS CREATED\r\nelasticsearch-logging-controller-fplln 10.244.0.3 elasticsearch-logging kubernetes/elasticsearch:1.0 k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 kubernetes.io/cluster-service=true,name=elasticsearch-logging Running 13 minutes\r\njenkins " 372 | ], 373 | [ 374 | 0.000009, 375 | " 10.244.1.4 jenkins " 376 | ], 377 | [ 378 | 0.000004, 379 | " csanchez/jenkins-swarm:1.565.3.3 " 380 | ], 381 | [ 382 | 0.000004, 383 | "k8s-jenkins-minion-axrl.c.gce-my-project.internal/104.154.53.149 name=jenkins" 384 | ], 385 | [ 386 | 0.000003, 387 | " " 388 | ], 389 | [ 390 | 0.000003, 391 | " " 392 | ], 393 | [ 394 | 0.000003, 395 | " " 396 | ], 397 | [ 398 | 0.000003, 399 | "Pending " 400 | ], 401 | [ 402 | 0.000003, 403 | "7 seconds\r\n" 404 | ], 405 | [ 406 | 0.000004, 407 | "kibana-logging-controller-ls6k1 " 408 | ], 409 | [ 410 | 0.000003, 411 | " 10.244.0.7 " 412 | ], 413 | [ 414 | 0.000003, 415 | " kibana-logging" 416 | ], 417 | [ 418 | 0.000003, 419 | " " 420 | ], 421 | [ 422 | 0.000003, 423 | "kubernetes/kibana:1.1 " 424 | ], 425 | [ 426 | 0.000003, 427 | " k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 " 428 | ], 429 | [ 430 | 0.000003, 431 | "kubernetes.io/cluster-service=true,name=kibana-logging " 432 | ], 433 | [ 434 | 0.000003, 435 | " Running " 436 | ], 437 | [ 438 | 0.000003, 439 | " 13 minutes" 440 | ], 441 | [ 442 | 0.000003, 443 | "\r\nkube-dns-gziey" 444 | ], 445 | [ 446 | 0.000003, 447 | " " 448 | ], 449 | [ 450 | 0.000003, 451 | " " 452 | ], 453 | [ 454 | 0.000040, 455 | "10.244.0.4 etcd " 456 | ], 457 | [ 458 | 0.000006, 459 | " quay.io/coreos/etcd:v2.0.3 k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79" 460 | ], 461 | [ 462 | 0.000005, 463 | " k8s-app=kube-dns,kubernetes.io/cluster-service=true,name=kube-dns " 464 | ], 465 | [ 466 | 0.000003, 467 | " Running " 468 | ], 469 | [ 470 | 0.000003, 471 | " 13 minutes" 472 | ], 473 | [ 474 | 0.000007, 475 | "\r\n " 476 | ], 477 | [ 478 | 0.000003, 479 | " " 480 | ], 481 | [ 482 | 0.000003, 483 | " " 484 | ], 485 | [ 486 | 0.000003, 487 | " kube2sky" 488 | ], 489 | [ 490 | 0.000003, 491 | " " 492 | ], 493 | [ 494 | 0.000003, 495 | "kubernetes/kube2sky:1.1 " 496 | ], 497 | [ 498 | 0.000003, 499 | " " 500 | ], 501 | [ 502 | 0.000003, 503 | " " 504 | ], 505 | [ 506 | 0.000003, 507 | " " 508 | ], 509 | [ 510 | 0.000003, 511 | " " 512 | ], 513 | [ 514 | 0.000003, 515 | " " 516 | ], 517 | [ 518 | 0.000003, 519 | " " 520 | ], 521 | [ 522 | 0.000003, 523 | " " 524 | ], 525 | [ 526 | 0.000003, 527 | " " 528 | ], 529 | [ 530 | 0.000325, 531 | " \r\n skydns kubernetes/skydns:2015-03-11-001 \r\nmonitoring-heapster-controller-0133o 10.244.0.6 heapster kubernetes/heapster:v0.8 k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 kubernetes.io/cluster-service=true,name=heapster,uses=monitoring-influxdb Running 13 minutes\r\nmonitoring-influx-grafana-controller-oh43e 10.244.0.5 influxdb kubernetes/heapster_influxdb:v0.3 k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 kubernetes.io/cluster-service=true,name=influxGrafana Running 13 minutes\r\n grafana " 532 | ], 533 | [ 534 | 0.000009, 535 | " kubernetes/heapster_grafana:v0.4 \r\n" 536 | ], 537 | [ 538 | 0.001356, 539 | "bash-3.2$ " 540 | ], 541 | [ 542 | 1.000000, 543 | "c" 544 | ], 545 | [ 546 | 0.000011, 547 | "l" 548 | ], 549 | [ 550 | 0.000007, 551 | "u" 552 | ], 553 | [ 554 | 0.000031, 555 | "st" 556 | ], 557 | [ 558 | 0.000008, 559 | "e" 560 | ], 561 | [ 562 | 0.000050, 563 | "r" 564 | ], 565 | [ 566 | 0.000010, 567 | "/" 568 | ], 569 | [ 570 | 0.000059, 571 | "k" 572 | ], 573 | [ 574 | 0.000013, 575 | "u" 576 | ], 577 | [ 578 | 0.000024, 579 | "b" 580 | ], 581 | [ 582 | 0.000028, 583 | "e" 584 | ], 585 | [ 586 | 0.000008, 587 | "ct" 588 | ], 589 | [ 590 | 0.000031, 591 | "l" 592 | ], 593 | [ 594 | 0.000008, 595 | "." 596 | ], 597 | [ 598 | 0.000025, 599 | "s" 600 | ], 601 | [ 602 | 0.000008, 603 | "h" 604 | ], 605 | [ 606 | 0.000027, 607 | " " 608 | ], 609 | [ 610 | 0.000008, 611 | "c" 612 | ], 613 | [ 614 | 0.000029, 615 | "r" 616 | ], 617 | [ 618 | 0.000022, 619 | "e" 620 | ], 621 | [ 622 | 0.000028, 623 | "a" 624 | ], 625 | [ 626 | 0.000009, 627 | "t" 628 | ], 629 | [ 630 | 0.000026, 631 | "e" 632 | ], 633 | [ 634 | 0.000026, 635 | " " 636 | ], 637 | [ 638 | 0.000008, 639 | "-" 640 | ], 641 | [ 642 | 0.000028, 643 | "f" 644 | ], 645 | [ 646 | 0.000039, 647 | " " 648 | ], 649 | [ 650 | 0.000009, 651 | "k" 652 | ], 653 | [ 654 | 0.000019, 655 | "u" 656 | ], 657 | [ 658 | 0.000020, 659 | "b" 660 | ], 661 | [ 662 | 0.000033, 663 | "e" 664 | ], 665 | [ 666 | 0.000005, 667 | "r" 668 | ], 669 | [ 670 | 0.000025, 671 | "n" 672 | ], 673 | [ 674 | 0.000019, 675 | "e" 676 | ], 677 | [ 678 | 0.000031, 679 | "t" 680 | ], 681 | [ 682 | 0.000029, 683 | "e" 684 | ], 685 | [ 686 | 0.000006, 687 | "s" 688 | ], 689 | [ 690 | 0.000025, 691 | "-" 692 | ], 693 | [ 694 | 0.000021, 695 | "j" 696 | ], 697 | [ 698 | 0.000020, 699 | "e" 700 | ], 701 | [ 702 | 0.000028, 703 | "n" 704 | ], 705 | [ 706 | 0.000024, 707 | "k" 708 | ], 709 | [ 710 | 0.000025, 711 | "i" 712 | ], 713 | [ 714 | 0.000024, 715 | "n" 716 | ], 717 | [ 718 | 0.000026, 719 | "s" 720 | ], 721 | [ 722 | 0.000026, 723 | "/" 724 | ], 725 | [ 726 | 0.000023, 727 | "s" 728 | ], 729 | [ 730 | 0.000022, 731 | "e" 732 | ], 733 | [ 734 | 0.000024, 735 | "r" 736 | ], 737 | [ 738 | 0.000039, 739 | "v" 740 | ], 741 | [ 742 | 0.000032, 743 | "i" 744 | ], 745 | [ 746 | 0.000021, 747 | "c" 748 | ], 749 | [ 750 | 0.000025, 751 | "e" 752 | ], 753 | [ 754 | 0.000039, 755 | "-" 756 | ], 757 | [ 758 | 0.000028, 759 | "h" 760 | ], 761 | [ 762 | 0.000018, 763 | "t" 764 | ], 765 | [ 766 | 0.000030, 767 | "t" 768 | ], 769 | [ 770 | 0.000029, 771 | "p" 772 | ], 773 | [ 774 | 0.000033, 775 | "." 776 | ], 777 | [ 778 | 0.000024, 779 | "j" 780 | ], 781 | [ 782 | 0.000024, 783 | "s" 784 | ], 785 | [ 786 | 0.000030, 787 | "o" 788 | ], 789 | [ 790 | 0.000033, 791 | "n" 792 | ], 793 | [ 794 | 0.000005, 795 | "\r\n" 796 | ], 797 | [ 798 | 0.055033, 799 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 800 | ], 801 | [ 802 | 0.000098, 803 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl create -f kubernetes-jenkins/service-http.json\r\n" 804 | ], 805 | [ 806 | 0.929989, 807 | "jenkins\r\n" 808 | ], 809 | [ 810 | 0.002113, 811 | "bash-3.2$ c" 812 | ], 813 | [ 814 | 0.000012, 815 | "lus" 816 | ], 817 | [ 818 | 0.000006, 819 | "t" 820 | ], 821 | [ 822 | 0.000039, 823 | "er" 824 | ], 825 | [ 826 | 0.000010, 827 | "/" 828 | ], 829 | [ 830 | 0.000011, 831 | "k" 832 | ], 833 | [ 834 | 0.000006, 835 | "u" 836 | ], 837 | [ 838 | 0.000081, 839 | "b" 840 | ], 841 | [ 842 | 0.000011, 843 | "e" 844 | ], 845 | [ 846 | 0.000025, 847 | "c" 848 | ], 849 | [ 850 | 0.000027, 851 | "t" 852 | ], 853 | [ 854 | 0.000010, 855 | "l" 856 | ], 857 | [ 858 | 0.000006, 859 | "." 860 | ], 861 | [ 862 | 0.000031, 863 | "s" 864 | ], 865 | [ 866 | 0.000021, 867 | "h" 868 | ], 869 | [ 870 | 0.000011, 871 | " " 872 | ], 873 | [ 874 | 0.000007, 875 | "c" 876 | ], 877 | [ 878 | 0.000038, 879 | "r" 880 | ], 881 | [ 882 | 0.000018, 883 | "e" 884 | ], 885 | [ 886 | 0.000027, 887 | "a" 888 | ], 889 | [ 890 | 0.000022, 891 | "t" 892 | ], 893 | [ 894 | 0.000026, 895 | "e" 896 | ], 897 | [ 898 | 0.000010, 899 | " " 900 | ], 901 | [ 902 | 0.000036, 903 | "-" 904 | ], 905 | [ 906 | 0.000041, 907 | "f" 908 | ], 909 | [ 910 | 0.000009, 911 | " " 912 | ], 913 | [ 914 | 0.000053, 915 | "ku" 916 | ], 917 | [ 918 | 0.000026, 919 | "b" 920 | ], 921 | [ 922 | 0.000027, 923 | "e" 924 | ], 925 | [ 926 | 0.000039, 927 | "r" 928 | ], 929 | [ 930 | 0.000009, 931 | "n" 932 | ], 933 | [ 934 | 0.000034, 935 | "e" 936 | ], 937 | [ 938 | 0.000009, 939 | "t" 940 | ], 941 | [ 942 | 0.000060, 943 | "es" 944 | ], 945 | [ 946 | 0.000035, 947 | "-" 948 | ], 949 | [ 950 | 0.000069, 951 | "j" 952 | ], 953 | [ 954 | 0.000010, 955 | "e" 956 | ], 957 | [ 958 | 0.000039, 959 | "n" 960 | ], 961 | [ 962 | 0.000035, 963 | "k" 964 | ], 965 | [ 966 | 0.000033, 967 | "i" 968 | ], 969 | [ 970 | 0.000029, 971 | "n" 972 | ], 973 | [ 974 | 0.000067, 975 | "s" 976 | ], 977 | [ 978 | 0.000031, 979 | "/" 980 | ], 981 | [ 982 | 0.000031, 983 | "s" 984 | ], 985 | [ 986 | 0.000033, 987 | "e" 988 | ], 989 | [ 990 | 0.000028, 991 | "r" 992 | ], 993 | [ 994 | 0.000030, 995 | "v" 996 | ], 997 | [ 998 | 0.000031, 999 | "i" 1000 | ], 1001 | [ 1002 | 0.000039, 1003 | "c" 1004 | ], 1005 | [ 1006 | 0.000015, 1007 | "e" 1008 | ], 1009 | [ 1010 | 0.000046, 1011 | "-" 1012 | ], 1013 | [ 1014 | 0.000029, 1015 | "s" 1016 | ], 1017 | [ 1018 | 0.000034, 1019 | "l" 1020 | ], 1021 | [ 1022 | 0.000056, 1023 | "a" 1024 | ], 1025 | [ 1026 | 0.000008, 1027 | "v" 1028 | ], 1029 | [ 1030 | 0.000040, 1031 | "e" 1032 | ], 1033 | [ 1034 | 0.000032, 1035 | "." 1036 | ], 1037 | [ 1038 | 0.000039, 1039 | "j" 1040 | ], 1041 | [ 1042 | 0.000034, 1043 | "s" 1044 | ], 1045 | [ 1046 | 0.000042, 1047 | "o" 1048 | ], 1049 | [ 1050 | 0.000028, 1051 | "n" 1052 | ], 1053 | [ 1054 | 0.000007, 1055 | "\r\n" 1056 | ], 1057 | [ 1058 | 0.059189, 1059 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 1060 | ], 1061 | [ 1062 | 0.000132, 1063 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl create -f kubernetes-jenkins/service-slave.json\r\n" 1064 | ], 1065 | [ 1066 | 0.900633, 1067 | "jenkins-slave\r\n" 1068 | ], 1069 | [ 1070 | 0.002263, 1071 | "bash-3.2$ " 1072 | ], 1073 | [ 1074 | 1.000000, 1075 | "c" 1076 | ], 1077 | [ 1078 | 0.000011, 1079 | "l" 1080 | ], 1081 | [ 1082 | 0.000006, 1083 | "u" 1084 | ], 1085 | [ 1086 | 0.000022, 1087 | "s" 1088 | ], 1089 | [ 1090 | 0.000007, 1091 | "t" 1092 | ], 1093 | [ 1094 | 0.000050, 1095 | "er/" 1096 | ], 1097 | [ 1098 | 0.000073, 1099 | "k" 1100 | ], 1101 | [ 1102 | 0.000010, 1103 | "u" 1104 | ], 1105 | [ 1106 | 0.000006, 1107 | "b" 1108 | ], 1109 | [ 1110 | 0.000032, 1111 | "e" 1112 | ], 1113 | [ 1114 | 0.000012, 1115 | "c" 1116 | ], 1117 | [ 1118 | 0.000021, 1119 | "t" 1120 | ], 1121 | [ 1122 | 0.000007, 1123 | "l" 1124 | ], 1125 | [ 1126 | 0.000025, 1127 | "." 1128 | ], 1129 | [ 1130 | 0.000025, 1131 | "s" 1132 | ], 1133 | [ 1134 | 0.000008, 1135 | "h" 1136 | ], 1137 | [ 1138 | 0.000025, 1139 | " " 1140 | ], 1141 | [ 1142 | 0.000023, 1143 | "g" 1144 | ], 1145 | [ 1146 | 0.000008, 1147 | "e" 1148 | ], 1149 | [ 1150 | 0.000026, 1151 | "t" 1152 | ], 1153 | [ 1154 | 0.000022, 1155 | " " 1156 | ], 1157 | [ 1158 | 0.000022, 1159 | "s" 1160 | ], 1161 | [ 1162 | 0.000023, 1163 | "e" 1164 | ], 1165 | [ 1166 | 0.000025, 1167 | "r" 1168 | ], 1169 | [ 1170 | 0.000033, 1171 | "v" 1172 | ], 1173 | [ 1174 | 0.000008, 1175 | "i" 1176 | ], 1177 | [ 1178 | 0.000034, 1179 | "c" 1180 | ], 1181 | [ 1182 | 0.000006, 1183 | "e" 1184 | ], 1185 | [ 1186 | 0.000025, 1187 | "s\r\n" 1188 | ], 1189 | [ 1190 | 0.057068, 1191 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 1192 | ], 1193 | [ 1194 | 0.000106, 1195 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl get services\r\n" 1196 | ], 1197 | [ 1198 | 0.872890, 1199 | "NAME LABELS SELECTOR IP PORT\r\nelasticsearch-logging kubernetes.io/cluster-service=true,name=elasticsearch-logging name=elasticsearch-logging 10.0.29.237 9200\r\njenkins" 1200 | ], 1201 | [ 1202 | 0.000016, 1203 | " \u003cnone\u003e name=jenkins 10.0.187.6 8888\r\njenkins-slave \u003cnone\u003e " 1204 | ], 1205 | [ 1206 | 0.000007, 1207 | " name=jenkins 10.0.83.153" 1208 | ], 1209 | [ 1210 | 0.000004, 1211 | " 50000" 1212 | ], 1213 | [ 1214 | 0.000004, 1215 | "\r\nkibana-logging" 1216 | ], 1217 | [ 1218 | 0.000003, 1219 | " " 1220 | ], 1221 | [ 1222 | 0.000004, 1223 | " kubernetes.io/cluster-service=true,name=kibana-logging " 1224 | ], 1225 | [ 1226 | 0.000004, 1227 | " name=kibana-logging " 1228 | ], 1229 | [ 1230 | 0.000005, 1231 | " 10.0.107.233 " 1232 | ], 1233 | [ 1234 | 0.000003, 1235 | "5601\r\nkube-dns" 1236 | ], 1237 | [ 1238 | 0.000003, 1239 | " " 1240 | ], 1241 | [ 1242 | 0.000004, 1243 | "k8s-app=kube-dns,kubernetes.io/cluster-service=true " 1244 | ], 1245 | [ 1246 | 0.000004, 1247 | " k8s-app=kube-dns" 1248 | ], 1249 | [ 1250 | 0.000004, 1251 | " 10.0.0.10" 1252 | ], 1253 | [ 1254 | 0.000004, 1255 | " 53" 1256 | ], 1257 | [ 1258 | 0.000004, 1259 | "\r\nkubernetes " 1260 | ], 1261 | [ 1262 | 0.000004, 1263 | " component=apiserver,provider=kubernetes" 1264 | ], 1265 | [ 1266 | 0.000025, 1267 | " " 1268 | ], 1269 | [ 1270 | 0.000006, 1271 | "\u003cnone\u003e 10.0.0.2" 1272 | ], 1273 | [ 1274 | 0.000004, 1275 | " " 1276 | ], 1277 | [ 1278 | 0.000004, 1279 | "443\r\n" 1280 | ], 1281 | [ 1282 | 0.000004, 1283 | "kubernetes-ro " 1284 | ], 1285 | [ 1286 | 0.000004, 1287 | " component=apiserver,provider=kubernetes" 1288 | ], 1289 | [ 1290 | 0.000003, 1291 | " " 1292 | ], 1293 | [ 1294 | 0.000004, 1295 | " " 1296 | ], 1297 | [ 1298 | 0.000004, 1299 | "\u003cnone\u003e " 1300 | ], 1301 | [ 1302 | 0.000004, 1303 | " " 1304 | ], 1305 | [ 1306 | 0.000004, 1307 | "10.0.0.1 " 1308 | ], 1309 | [ 1310 | 0.000004, 1311 | "80\r\n" 1312 | ], 1313 | [ 1314 | 0.000004, 1315 | "monitoring-grafana " 1316 | ], 1317 | [ 1318 | 0.000004, 1319 | "kubernetes.io/cluster-service=true,name=grafana " 1320 | ], 1321 | [ 1322 | 0.000003, 1323 | " " 1324 | ], 1325 | [ 1326 | 0.000003, 1327 | "name=influxGrafana " 1328 | ], 1329 | [ 1330 | 0.000004, 1331 | " 10.0.127.32" 1332 | ], 1333 | [ 1334 | 0.000004, 1335 | " 80" 1336 | ], 1337 | [ 1338 | 0.000004, 1339 | "\r\nmonitoring-heapster" 1340 | ], 1341 | [ 1342 | 0.000004, 1343 | " kubernetes.io/cluster-service=true,name=heapster" 1344 | ], 1345 | [ 1346 | 0.000003, 1347 | " " 1348 | ], 1349 | [ 1350 | 0.000004, 1351 | "name=heapster " 1352 | ], 1353 | [ 1354 | 0.000003, 1355 | " 10.0.51.109" 1356 | ], 1357 | [ 1358 | 0.000003, 1359 | " " 1360 | ], 1361 | [ 1362 | 0.000004, 1363 | "80\r\n" 1364 | ], 1365 | [ 1366 | 0.000004, 1367 | "monitoring-influxdb " 1368 | ], 1369 | [ 1370 | 0.000003, 1371 | "kubernetes.io/cluster-service=true,name=influxdb " 1372 | ], 1373 | [ 1374 | 0.000003, 1375 | " name=influxGrafana" 1376 | ], 1377 | [ 1378 | 0.000004, 1379 | " " 1380 | ], 1381 | [ 1382 | 0.000004, 1383 | "10.0.215.169 " 1384 | ], 1385 | [ 1386 | 0.000004, 1387 | "80\r\n" 1388 | ], 1389 | [ 1390 | 0.001578, 1391 | "bash-3.2$ " 1392 | ], 1393 | [ 1394 | 1.000000, 1395 | "c" 1396 | ], 1397 | [ 1398 | 0.000007, 1399 | "l" 1400 | ], 1401 | [ 1402 | 0.000006, 1403 | "u" 1404 | ], 1405 | [ 1406 | 0.000004, 1407 | "s" 1408 | ], 1409 | [ 1410 | 0.000010, 1411 | "t" 1412 | ], 1413 | [ 1414 | 0.000067, 1415 | "er/kube" 1416 | ], 1417 | [ 1418 | 0.000012, 1419 | "c" 1420 | ], 1421 | [ 1422 | 0.000015, 1423 | "t" 1424 | ], 1425 | [ 1426 | 0.000006, 1427 | "l" 1428 | ], 1429 | [ 1430 | 0.000010, 1431 | "." 1432 | ], 1433 | [ 1434 | 0.000013, 1435 | "s" 1436 | ], 1437 | [ 1438 | 0.000010, 1439 | "h" 1440 | ], 1441 | [ 1442 | 0.000004, 1443 | " " 1444 | ], 1445 | [ 1446 | 0.000014, 1447 | "g" 1448 | ], 1449 | [ 1450 | 0.000021, 1451 | "e" 1452 | ], 1453 | [ 1454 | 0.000005, 1455 | "t" 1456 | ], 1457 | [ 1458 | 0.000016, 1459 | " " 1460 | ], 1461 | [ 1462 | 0.000004, 1463 | "p" 1464 | ], 1465 | [ 1466 | 0.000014, 1467 | "o" 1468 | ], 1469 | [ 1470 | 0.000012, 1471 | "d" 1472 | ], 1473 | [ 1474 | 0.000012, 1475 | "s" 1476 | ], 1477 | [ 1478 | 0.000004, 1479 | "\r\n" 1480 | ], 1481 | [ 1482 | 0.057261, 1483 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 1484 | ], 1485 | [ 1486 | 0.000123, 1487 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl get pods\r\n" 1488 | ], 1489 | [ 1490 | 1.000000, 1491 | "POD IP CONTAINER(S) IMAGE(S) HOST LABELS STATUS CREATED" 1492 | ], 1493 | [ 1494 | 0.000012, 1495 | "\r\nelasticsearch-logging-controller-fplln 10.244.0.3 elasticsearch-logging kubernetes/elasticsearch:1.0 k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 kubernetes.io/cluster-service=true,name=elasticsearch-logging Running " 1496 | ], 1497 | [ 1498 | 0.000004, 1499 | "14 minutes\r\njenkins " 1500 | ], 1501 | [ 1502 | 0.000004, 1503 | " " 1504 | ], 1505 | [ 1506 | 0.000004, 1507 | " " 1508 | ], 1509 | [ 1510 | 0.000004, 1511 | "10.244.1.4 " 1512 | ], 1513 | [ 1514 | 0.000003, 1515 | " jenkins" 1516 | ], 1517 | [ 1518 | 0.000003, 1519 | " " 1520 | ], 1521 | [ 1522 | 0.000003, 1523 | " csanchez/jenkins-swarm:1.565.3.3" 1524 | ], 1525 | [ 1526 | 0.000004, 1527 | " k8s-jenkins-minion-axrl.c.gce-my-project.internal/104.154.53.149" 1528 | ], 1529 | [ 1530 | 0.000006, 1531 | " name=jenkins " 1532 | ], 1533 | [ 1534 | 0.000004, 1535 | " " 1536 | ], 1537 | [ 1538 | 0.000003, 1539 | " " 1540 | ], 1541 | [ 1542 | 0.000038, 1543 | " Pending 37 seconds\r\n" 1544 | ], 1545 | [ 1546 | 0.000006, 1547 | "kibana-logging-controller-ls6k1 10.244.0.7 kibana-logging" 1548 | ], 1549 | [ 1550 | 0.000004, 1551 | " kubernetes/kibana:1.1 " 1552 | ], 1553 | [ 1554 | 0.000006, 1555 | " k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79" 1556 | ], 1557 | [ 1558 | 0.000003, 1559 | " kubernetes.io/cluster-service=true,name=kibana-logging " 1560 | ], 1561 | [ 1562 | 0.000003, 1563 | " Running" 1564 | ], 1565 | [ 1566 | 0.000004, 1567 | " 14 minutes" 1568 | ], 1569 | [ 1570 | 0.000003, 1571 | "\r\nkube-dns-gziey" 1572 | ], 1573 | [ 1574 | 0.000004, 1575 | " " 1576 | ], 1577 | [ 1578 | 0.000003, 1579 | " 10.244.0.4" 1580 | ], 1581 | [ 1582 | 0.000003, 1583 | " " 1584 | ], 1585 | [ 1586 | 0.000004, 1587 | "etcd " 1588 | ], 1589 | [ 1590 | 0.000003, 1591 | " " 1592 | ], 1593 | [ 1594 | 0.000003, 1595 | "quay.io/coreos/etcd:v2.0.3 " 1596 | ], 1597 | [ 1598 | 0.000003, 1599 | " k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79" 1600 | ], 1601 | [ 1602 | 0.000004, 1603 | " k8s-app=kube-dns,kubernetes.io/cluster-service=true,name=kube-dns " 1604 | ], 1605 | [ 1606 | 0.000003, 1607 | " Running " 1608 | ], 1609 | [ 1610 | 0.000003, 1611 | " 14 minutes" 1612 | ], 1613 | [ 1614 | 0.000003, 1615 | "\r\n " 1616 | ], 1617 | [ 1618 | 0.000003, 1619 | " " 1620 | ], 1621 | [ 1622 | 0.000003, 1623 | " " 1624 | ], 1625 | [ 1626 | 0.000005, 1627 | " " 1628 | ], 1629 | [ 1630 | 0.000003, 1631 | "kube2sky " 1632 | ], 1633 | [ 1634 | 0.000003, 1635 | "kubernetes/kube2sky:1.1" 1636 | ], 1637 | [ 1638 | 0.000004, 1639 | " " 1640 | ], 1641 | [ 1642 | 0.000003, 1643 | " " 1644 | ], 1645 | [ 1646 | 0.000003, 1647 | " " 1648 | ], 1649 | [ 1650 | 0.000003, 1651 | " " 1652 | ], 1653 | [ 1654 | 0.000003, 1655 | " " 1656 | ], 1657 | [ 1658 | 0.000003, 1659 | " " 1660 | ], 1661 | [ 1662 | 0.000003, 1663 | " " 1664 | ], 1665 | [ 1666 | 0.000003, 1667 | " " 1668 | ], 1669 | [ 1670 | 0.000003, 1671 | " " 1672 | ], 1673 | [ 1674 | 0.000003, 1675 | " " 1676 | ], 1677 | [ 1678 | 0.000003, 1679 | " " 1680 | ], 1681 | [ 1682 | 0.000003, 1683 | " \r\n" 1684 | ], 1685 | [ 1686 | 0.000003, 1687 | " " 1688 | ], 1689 | [ 1690 | 0.000003, 1691 | " " 1692 | ], 1693 | [ 1694 | 0.000003, 1695 | " " 1696 | ], 1697 | [ 1698 | 0.000003, 1699 | " " 1700 | ], 1701 | [ 1702 | 0.000003, 1703 | "skydns " 1704 | ], 1705 | [ 1706 | 0.000003, 1707 | " " 1708 | ], 1709 | [ 1710 | 0.000003, 1711 | "kubernetes/skydns:2015-03-11-001 " 1712 | ], 1713 | [ 1714 | 0.000003, 1715 | " " 1716 | ], 1717 | [ 1718 | 0.000003, 1719 | " " 1720 | ], 1721 | [ 1722 | 0.000003, 1723 | " " 1724 | ], 1725 | [ 1726 | 0.000004, 1727 | " " 1728 | ], 1729 | [ 1730 | 0.000003, 1731 | " " 1732 | ], 1733 | [ 1734 | 0.000003, 1735 | " " 1736 | ], 1737 | [ 1738 | 0.000003, 1739 | " " 1740 | ], 1741 | [ 1742 | 0.000003, 1743 | " " 1744 | ], 1745 | [ 1746 | 0.000003, 1747 | " " 1748 | ], 1749 | [ 1750 | 0.000003, 1751 | " " 1752 | ], 1753 | [ 1754 | 0.000003, 1755 | " " 1756 | ], 1757 | [ 1758 | 0.000150, 1759 | "\r\nmonitoring-heapster-controller-0133o 10.244.0.6 heapster kubernetes/heapster:v0.8 k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 kubernetes.io/cluster-service=true,name=heapster,uses=monitoring-influxdb Running 14 minutes\r\nmonitoring-influx-grafana-controller-oh43e 10.244.0.5 influxdb kubernetes/heapster_influxdb:v0.3 k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 kubernetes.io/cluster-service=true,name=influxGrafana " 1760 | ], 1761 | [ 1762 | 0.000010, 1763 | " Running 14 minutes\r\n grafana kubernetes/heapster_grafana:v0.4 \r\n" 1764 | ], 1765 | [ 1766 | 0.001519, 1767 | "bash-3.2$ " 1768 | ], 1769 | [ 1770 | 1.000000, 1771 | "cluster/kubectl.sh get pods" 1772 | ], 1773 | [ 1774 | 1.000000, 1775 | "\r\n" 1776 | ], 1777 | [ 1778 | 0.060529, 1779 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 1780 | ], 1781 | [ 1782 | 0.000116, 1783 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl get pods\r\n" 1784 | ], 1785 | [ 1786 | 1.000000, 1787 | "POD IP CONTAINER(S) IMAGE(S) HOST " 1788 | ], 1789 | [ 1790 | 0.000014, 1791 | " LABELS STATUS CREATED\r\nelasticsearch-logging-controller-fplln 10.244.0.3 elasticsearch-logging kubernetes/elasticsearch:1.0 k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 " 1792 | ], 1793 | [ 1794 | 0.000005, 1795 | "kubernetes.io/cluster-service=true,name=elasticsearch-logging Running " 1796 | ], 1797 | [ 1798 | 0.000004, 1799 | "15 minutes\r\njenkins " 1800 | ], 1801 | [ 1802 | 0.000004, 1803 | " " 1804 | ], 1805 | [ 1806 | 0.000004, 1807 | " 10.244.1.4" 1808 | ], 1809 | [ 1810 | 0.000003, 1811 | " " 1812 | ], 1813 | [ 1814 | 0.000003, 1815 | "jenkins " 1816 | ], 1817 | [ 1818 | 0.000004, 1819 | " csanchez/jenkins-swarm:1.565.3.3" 1820 | ], 1821 | [ 1822 | 0.000003, 1823 | " k8s-jenkins-minion-axrl.c.gce-my-project.internal/104.154.53.149 name=jenkins" 1824 | ], 1825 | [ 1826 | 0.000003, 1827 | " " 1828 | ], 1829 | [ 1830 | 0.000003, 1831 | " " 1832 | ], 1833 | [ 1834 | 0.000003, 1835 | " " 1836 | ], 1837 | [ 1838 | 0.000003, 1839 | " Running" 1840 | ], 1841 | [ 1842 | 0.000003, 1843 | " " 1844 | ], 1845 | [ 1846 | 0.000004, 1847 | "About a minute\r\nkibana-logging-controller-ls6k1" 1848 | ], 1849 | [ 1850 | 0.000003, 1851 | " 10.244.0.7" 1852 | ], 1853 | [ 1854 | 0.000003, 1855 | " " 1856 | ], 1857 | [ 1858 | 0.000021, 1859 | "kibana-logging " 1860 | ], 1861 | [ 1862 | 0.000005, 1863 | "kubernetes/kibana:1.1 k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 " 1864 | ], 1865 | [ 1866 | 0.000005, 1867 | "kubernetes.io/cluster-service=true,name=kibana-logging " 1868 | ], 1869 | [ 1870 | 0.000004, 1871 | " Running" 1872 | ], 1873 | [ 1874 | 0.000003, 1875 | " " 1876 | ], 1877 | [ 1878 | 0.000003, 1879 | "15 minutes\r\n" 1880 | ], 1881 | [ 1882 | 0.000003, 1883 | "kube-dns-gziey " 1884 | ], 1885 | [ 1886 | 0.000004, 1887 | " " 1888 | ], 1889 | [ 1890 | 0.000003, 1891 | "10.244.0.4 " 1892 | ], 1893 | [ 1894 | 0.000003, 1895 | " etcd" 1896 | ], 1897 | [ 1898 | 0.000003, 1899 | " " 1900 | ], 1901 | [ 1902 | 0.000003, 1903 | " quay.io/coreos/etcd:v2.0.3" 1904 | ], 1905 | [ 1906 | 0.000003, 1907 | " " 1908 | ], 1909 | [ 1910 | 0.000003, 1911 | "k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 " 1912 | ], 1913 | [ 1914 | 0.000003, 1915 | "k8s-app=kube-dns,kubernetes.io/cluster-service=true,name=kube-dns " 1916 | ], 1917 | [ 1918 | 0.000003, 1919 | " Running" 1920 | ], 1921 | [ 1922 | 0.000003, 1923 | " " 1924 | ], 1925 | [ 1926 | 0.000003, 1927 | "15 minutes\r\n" 1928 | ], 1929 | [ 1930 | 0.000003, 1931 | " " 1932 | ], 1933 | [ 1934 | 0.000003, 1935 | " " 1936 | ], 1937 | [ 1938 | 0.000003, 1939 | " " 1940 | ], 1941 | [ 1942 | 0.000003, 1943 | " " 1944 | ], 1945 | [ 1946 | 0.000003, 1947 | " kube2sky" 1948 | ], 1949 | [ 1950 | 0.000003, 1951 | " " 1952 | ], 1953 | [ 1954 | 0.000003, 1955 | "kubernetes/kube2sky:1.1 " 1956 | ], 1957 | [ 1958 | 0.000003, 1959 | " " 1960 | ], 1961 | [ 1962 | 0.000003, 1963 | " " 1964 | ], 1965 | [ 1966 | 0.000003, 1967 | " " 1968 | ], 1969 | [ 1970 | 0.000003, 1971 | " " 1972 | ], 1973 | [ 1974 | 0.000104, 1975 | " " 1976 | ], 1977 | [ 1978 | 0.000011, 1979 | " \r\n skydns kubernetes/skydns:2015-03-11-001 \r\nmonitoring-heapster-controller-0133o 10.244.0.6 heapster kubernetes/heapster:v0.8 k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 kubernetes.io/cluster-service=true,name=heapster,uses=monitoring-influxdb Running 15 minutes\r\nmonitoring-influx-grafana-controller-oh43e 10.244.0.5 influxdb kubernetes/heapster_influxdb:v0.3" 1980 | ], 1981 | [ 1982 | 0.000005, 1983 | " k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 kubernetes.io/cluster-service=true,name=influxGrafana " 1984 | ], 1985 | [ 1986 | 0.000003, 1987 | "Running " 1988 | ], 1989 | [ 1990 | 0.000003, 1991 | " 15 minutes" 1992 | ], 1993 | [ 1994 | 0.000003, 1995 | "\r\n " 1996 | ], 1997 | [ 1998 | 0.000097, 1999 | " " 2000 | ], 2001 | [ 2002 | 0.000010, 2003 | " grafana kubernetes/heapster_grafana:v0.4 \r\n" 2004 | ], 2005 | [ 2006 | 0.001307, 2007 | "bash-3.2$ " 2008 | ], 2009 | [ 2010 | 1.000000, 2011 | "g" 2012 | ], 2013 | [ 2014 | 0.000011, 2015 | "c" 2016 | ], 2017 | [ 2018 | 0.000006, 2019 | "l" 2020 | ], 2021 | [ 2022 | 0.000032, 2023 | "ou" 2024 | ], 2025 | [ 2026 | 0.000008, 2027 | "d" 2028 | ], 2029 | [ 2030 | 0.000053, 2031 | " c" 2032 | ], 2033 | [ 2034 | 0.000017, 2035 | "om" 2036 | ], 2037 | [ 2038 | 0.000008, 2039 | "p" 2040 | ], 2041 | [ 2042 | 0.000030, 2043 | "u" 2044 | ], 2045 | [ 2046 | 0.000009, 2047 | "t" 2048 | ], 2049 | [ 2050 | 0.000021, 2051 | "e" 2052 | ], 2053 | [ 2054 | 0.000007, 2055 | " " 2056 | ], 2057 | [ 2058 | 0.000025, 2059 | "s" 2060 | ], 2061 | [ 2062 | 0.000029, 2063 | "s" 2064 | ], 2065 | [ 2066 | 0.000072, 2067 | "h k8" 2068 | ], 2069 | [ 2070 | 0.000006, 2071 | "s" 2072 | ], 2073 | [ 2074 | 0.000027, 2075 | "-" 2076 | ], 2077 | [ 2078 | 0.000024, 2079 | "j" 2080 | ], 2081 | [ 2082 | 0.000011, 2083 | "e" 2084 | ], 2085 | [ 2086 | 0.000049, 2087 | "n" 2088 | ], 2089 | [ 2090 | 0.000024, 2091 | "k" 2092 | ], 2093 | [ 2094 | 0.000006, 2095 | "i" 2096 | ], 2097 | [ 2098 | 0.000019, 2099 | "n" 2100 | ], 2101 | [ 2102 | 0.000008, 2103 | "s" 2104 | ], 2105 | [ 2106 | 0.000018, 2107 | "-" 2108 | ], 2109 | [ 2110 | 0.000018, 2111 | "m" 2112 | ], 2113 | [ 2114 | 0.000006, 2115 | "i" 2116 | ], 2117 | [ 2118 | 0.000019, 2119 | "n" 2120 | ], 2121 | [ 2122 | 0.000019, 2123 | "i" 2124 | ], 2125 | [ 2126 | 0.000007, 2127 | "o" 2128 | ], 2129 | [ 2130 | 0.000021, 2131 | "n" 2132 | ], 2133 | [ 2134 | 0.000007, 2135 | "-" 2136 | ], 2137 | [ 2138 | 0.000027, 2139 | "a" 2140 | ], 2141 | [ 2142 | 0.000008, 2143 | "x" 2144 | ], 2145 | [ 2146 | 0.000020, 2147 | "r" 2148 | ], 2149 | [ 2150 | 0.000016, 2151 | "l" 2152 | ], 2153 | [ 2154 | 0.723619, 2155 | "\r\n" 2156 | ], 2157 | [ 2158 | 1.000000, 2159 | "Warning: Permanently added '104.154.53.149' (RSA) to the list of known hosts.\r\r\n" 2160 | ], 2161 | [ 2162 | 1.000000, 2163 | "Linux k8s-jenkins-minion-axrl 3.16.0-0.bpo.4-amd64 #1 SMP Debian 3.16.7-ckt4-3~bpo70+1 (2015-02-12) x86_64" 2164 | ], 2165 | [ 2166 | 0.000037, 2167 | "\r\n\r\n=== GCE Kubernetes node setup complete ===\r\n\r\n" 2168 | ], 2169 | [ 2170 | 0.000165, 2171 | "Last login: Fri Mar 20 13:00:54 2015 from 90.175.97.209\r" 2172 | ], 2173 | [ 2174 | 0.000014, 2175 | "\r\n" 2176 | ], 2177 | [ 2178 | 0.005145, 2179 | "\u001b]0;csanchez@k8s-jenkins-minion-axrl: ~\u0007\u001b[01;32mcsanchez@k8s-jenkins-minion-axrl\u001b[00m:\u001b[01;34m~\u001b[00m$ " 2180 | ], 2181 | [ 2182 | 0.878681, 2183 | "s" 2184 | ], 2185 | [ 2186 | 0.160165, 2187 | "u" 2188 | ], 2189 | [ 2190 | 0.087964, 2191 | "d" 2192 | ], 2193 | [ 2194 | 0.176242, 2195 | "o" 2196 | ], 2197 | [ 2198 | 0.118825, 2199 | " " 2200 | ], 2201 | [ 2202 | 0.216984, 2203 | "d" 2204 | ], 2205 | [ 2206 | 0.079369, 2207 | "o" 2208 | ], 2209 | [ 2210 | 0.144258, 2211 | "c" 2212 | ], 2213 | [ 2214 | 0.111993, 2215 | "k" 2216 | ], 2217 | [ 2218 | 0.103118, 2219 | "e" 2220 | ], 2221 | [ 2222 | 0.081482, 2223 | "r" 2224 | ], 2225 | [ 2226 | 0.088724, 2227 | " " 2228 | ], 2229 | [ 2230 | 0.135495, 2231 | "p" 2232 | ], 2233 | [ 2234 | 0.078225, 2235 | "s" 2236 | ], 2237 | [ 2238 | 0.177460, 2239 | "\r\n" 2240 | ], 2241 | [ 2242 | 0.024942, 2243 | "CONTAINER ID IMAGE" 2244 | ], 2245 | [ 2246 | 0.000017, 2247 | " " 2248 | ], 2249 | [ 2250 | 0.000375, 2251 | " " 2252 | ], 2253 | [ 2254 | 0.000011, 2255 | "COMMAND" 2256 | ], 2257 | [ 2258 | 0.133861, 2259 | " CREATED STATUS PORTS NAMES\r\nec092a5394fc csanchez/jenkins-swarm:1.565.3.3 \"/usr/local/bin/jenk 2 minutes ago Up 2 minutes" 2260 | ], 2261 | [ 2262 | 0.000322, 2263 | " k8s_jenkins.c53a3f51_jenkins_default_b5f9fd95-cf00-11e4-9e82-42010af02317_72e79d30 \r\ndf56cbe32661 kubernetes/pause:go \"/pause\" 3 minutes ago" 2264 | ], 2265 | [ 2266 | 0.023646, 2267 | " Up 3 minutes 0.0.0.0:8080-\u003e8080/tcp, 0.0.0.0:50000-\u003e50000/tcp k8s_POD.9db51103_jenkins_default_b5f9fd95-cf00-11e4-9e82-42010af02317_af8b8030 \r\n85e8b0750590 kubernetes/fluentd-elasticsearch:1.2 \"\\\"/bin/sh -c '/usr/ 13 minutes ago Up 13 minutes " 2268 | ], 2269 | [ 2270 | 0.000309, 2271 | " k8s_fluentd-es.2b7c28f3_fluentd-to-elasticsearch-k8s-jenkins-minion-axrl_default_6472ca74bfa24e632eb6177c1543a65f_01452e65 \r\n6f52b6bf3ba2 kubernetes/pause:go \"/pause\" 14 minutes ago Up 14 minutes " 2272 | ], 2273 | [ 2274 | 0.001263, 2275 | " k8s_POD.3d41cbfd_fluentd-to-elasticsearch-k8s-jenkins-minion-axrl_default_6472ca74bfa24e632eb6177c1543a65f_7ea2f275 \r\n8205b5e1a663 google/cadvisor:0.8.0 \"/usr/bin/cadvisor\" 15 minutes ago Up 15 minutes " 2276 | ], 2277 | [ 2278 | 0.000669, 2279 | " k8s_cadvisor.373c4ae3_cadvisor-agent-k8s-jenkins-minion-axrl_default_ec3d1078996072587d987b4a6f070f17_50d03bde \r\n8d2287f012b0 kubernetes/pause:go \"/pause\" 15 minutes ago Up 15 minutes 0.0.0.0:4194-\u003e8080/tcp " 2280 | ], 2281 | [ 2282 | 0.000038, 2283 | "k8s_POD.5426ef83_cadvisor-agent-k8s-jenkins-minion-axrl_default_ec3d1078996072587d987b4a6f070f17_f745af5d \r\n\u001b]0;csanchez@k8s-jenkins-minion-axrl: ~\u0007\u001b[01;32mcsanchez@k8s-jenkins-minion-axrl\u001b[00m:\u001b[01;34m~\u001b[00m$ " 2284 | ], 2285 | [ 2286 | 1.000000, 2287 | "s" 2288 | ], 2289 | [ 2290 | 0.129283, 2291 | "u" 2292 | ], 2293 | [ 2294 | 0.080817, 2295 | "d" 2296 | ], 2297 | [ 2298 | 0.110538, 2299 | "o" 2300 | ], 2301 | [ 2302 | 0.089930, 2303 | " " 2304 | ], 2305 | [ 2306 | 0.201158, 2307 | "d" 2308 | ], 2309 | [ 2310 | 0.093566, 2311 | "o" 2312 | ], 2313 | [ 2314 | 0.095222, 2315 | "c" 2316 | ], 2317 | [ 2318 | 0.086252, 2319 | "k" 2320 | ], 2321 | [ 2322 | 0.106495, 2323 | "e" 2324 | ], 2325 | [ 2326 | 0.079702, 2327 | "r" 2328 | ], 2329 | [ 2330 | 0.055502, 2331 | " " 2332 | ], 2333 | [ 2334 | 0.167933, 2335 | "l" 2336 | ], 2337 | [ 2338 | 0.160364, 2339 | "o" 2340 | ], 2341 | [ 2342 | 0.279636, 2343 | "g" 2344 | ], 2345 | [ 2346 | 0.280672, 2347 | "s" 2348 | ], 2349 | [ 2350 | 0.088452, 2351 | " " 2352 | ], 2353 | [ 2354 | 1.000000, 2355 | "ec092a5394fc" 2356 | ], 2357 | [ 2358 | 1.000000, 2359 | "\r\n" 2360 | ], 2361 | [ 2362 | 0.017961, 2363 | "Copying init scripts\r\nCopying plugins" 2364 | ], 2365 | [ 2366 | 0.000026, 2367 | "\r\nRunning from: /usr/share/jenkins/jenkins.war\r\nwebroot: EnvVars.masterEnvVars.get(\"JENKINS_HOME\")\r\nMar 20, 2015 12:59:03 PM winstone.Logger logInternal" 2368 | ], 2369 | [ 2370 | 0.140939, 2371 | "\r\nINFO: Beginning extraction from war file\r\nMar 20, 2015 12:59:09 PM org.eclipse.jetty.util.log.JavaUtilLog info\r\nINFO: jetty-8.y.z-SNAPSHOT\r\nMar 20, 2015 12:59:14 PM org.eclipse.jetty.util.log.JavaUtilLog info\r\nINFO: NO JSP Support for , did not find org.apache.jasper.servlet.JspServlet\r\nJenkins home directory: /var/jenkins_home found at: EnvVars.masterEnvVars.get(\"JENKINS_HOME\")\r\nMar 20, 2015 12:59:16 PM org.eclipse.jetty.util.log.JavaUtilLog info\r\nINFO: Started SelectChannelConnector@0.0.0.0:8080\r\nMar 20, 2015 12:59:16 PM winstone.Logger logInternal\r\nINFO: Winstone Servlet Engine v2.0 running: controlPort=disabled" 2372 | ], 2373 | [ 2374 | 0.000207, 2375 | "\r\nMar 20, 2015 12:59:17 PM jenkins.InitReactorRunner$1 onAttained\r\nINFO: Started initialization\r\nMar 20, 2015 12:59:41 PM jenkins.InitReactorRunner$1 onAttained\r\nINFO: Listed all plugins\r\nMar 20, 2015 12:59:41 PM jenkins.InitReactorRunner$1 onAttained\r\nINFO: Prepared all plugins\r\nMar 20, 2015 12:59:41 PM jenkins.InitReactorRunner$1 onAttained\r\nINFO: Started all plugins\r\nMar 20, 2015 12:59:47 PM jenkins.InitReactorRunner$1 onAttained\r\nINFO: Augmented all extensions\r\nMar 20, 2015 12:59:47 PM jenkins.InitReactorRunner$1 onAttained\r\n" 2376 | ], 2377 | [ 2378 | 0.017018, 2379 | "INFO: Loaded all jobs\r\nMar 20, 2015 12:59:52 PM org.jenkinsci.main.modules.sshd.SSHD start\r\nINFO: Started SSHD at port 43244\r\nMar 20, 2015 12:59:52 PM jenkins.util.groovy.GroovyHookScript execute\r\nINFO: Executing bundled script: file:/var/jenkins_home/war/WEB-INF/init.groovy.d/tcp-slave-angent-port.groovy\r\nMar 20, 2015 12:59:53 PM jenkins.util.groovy.GroovyHookScript execute\r\nINFO: Executing /var/jenkins_home/init.groovy.d/master-executors.groovy\r\n--\u003e disabling master executors\r\nMar 20, 2015 12:59:54 PM jenkins.InitReactorRunner$1 onAttained\r\nINFO: Completed initialization\r\nMar 20, 2015 12:59:54 PM hudson.TcpSlaveAgentListener \u003cinit\u003e" 2380 | ], 2381 | [ 2382 | 0.000392, 2383 | "\r\nINFO: JNLP slave agent listener started on TCP port 41353\r\nMar 20, 2015 12:59:54 PM hudson.WebAppMain$3 run\r\nINFO: Jenkins is fully up and running\r\nMar 20, 2015 12:59:54 PM jenkins.model.Jenkins \u003cinit\u003e\r\nINFO: Effective SlaveRestarter on master: null\r\n--\u003e setting agent port for jnlp\r\nMar 20, 2015 1:00:03 PM hudson.TcpSlaveAgentListener \u003cinit\u003e\r\nINFO: JNLP slave agent listener started on TCP port 50000\r\n\u001b]0;csanchez@k8s-jenkins-minion-axrl: ~\u0007\u001b[01;32mcsanchez@k8s-jenkins-minion-axrl\u001b[00m:\u001b[01;34m~\u001b[00m$ " 2384 | ], 2385 | [ 2386 | 1.000000, 2387 | "e" 2388 | ], 2389 | [ 2390 | 0.088979, 2391 | "x" 2392 | ], 2393 | [ 2394 | 0.366181, 2395 | "i" 2396 | ], 2397 | [ 2398 | 0.081171, 2399 | "t" 2400 | ], 2401 | [ 2402 | 0.205000, 2403 | "\r\nlogout\r\n" 2404 | ], 2405 | [ 2406 | 0.041087, 2407 | "Connection to 104.154.53.149 closed.\r\r\n" 2408 | ], 2409 | [ 2410 | 0.054443, 2411 | "bash-3.2$ " 2412 | ], 2413 | [ 2414 | 1.000000, 2415 | "c" 2416 | ], 2417 | [ 2418 | 0.000011, 2419 | "l" 2420 | ], 2421 | [ 2422 | 0.000007, 2423 | "u" 2424 | ], 2425 | [ 2426 | 0.000022, 2427 | "s" 2428 | ], 2429 | [ 2430 | 0.000007, 2431 | "t" 2432 | ], 2433 | [ 2434 | 0.000040, 2435 | "e" 2436 | ], 2437 | [ 2438 | 0.000011, 2439 | "r" 2440 | ], 2441 | [ 2442 | 0.000055, 2443 | "/" 2444 | ], 2445 | [ 2446 | 0.000010, 2447 | "k" 2448 | ], 2449 | [ 2450 | 0.000004, 2451 | "u" 2452 | ], 2453 | [ 2454 | 0.000034, 2455 | "b" 2456 | ], 2457 | [ 2458 | 0.000005, 2459 | "e" 2460 | ], 2461 | [ 2462 | 0.000015, 2463 | "c" 2464 | ], 2465 | [ 2466 | 0.000005, 2467 | "t" 2468 | ], 2469 | [ 2470 | 0.000022, 2471 | "l" 2472 | ], 2473 | [ 2474 | 0.000018, 2475 | "." 2476 | ], 2477 | [ 2478 | 0.000019, 2479 | "s" 2480 | ], 2481 | [ 2482 | 0.000017, 2483 | "h" 2484 | ], 2485 | [ 2486 | 0.000018, 2487 | " " 2488 | ], 2489 | [ 2490 | 0.000020, 2491 | "d" 2492 | ], 2493 | [ 2494 | 0.000030, 2495 | "e" 2496 | ], 2497 | [ 2498 | 0.000005, 2499 | "l" 2500 | ], 2501 | [ 2502 | 0.000034, 2503 | "e" 2504 | ], 2505 | [ 2506 | 0.000009, 2507 | "t" 2508 | ], 2509 | [ 2510 | 0.000033, 2511 | "e" 2512 | ], 2513 | [ 2514 | 0.000005, 2515 | " " 2516 | ], 2517 | [ 2518 | 0.000038, 2519 | "s" 2520 | ], 2521 | [ 2522 | 0.000005, 2523 | "e" 2524 | ], 2525 | [ 2526 | 0.000025, 2527 | "r" 2528 | ], 2529 | [ 2530 | 0.000024, 2531 | "v" 2532 | ], 2533 | [ 2534 | 0.000031, 2535 | "i" 2536 | ], 2537 | [ 2538 | 0.000014, 2539 | "c" 2540 | ], 2541 | [ 2542 | 0.000020, 2543 | "e" 2544 | ], 2545 | [ 2546 | 0.000025, 2547 | "s" 2548 | ], 2549 | [ 2550 | 0.000023, 2551 | " " 2552 | ], 2553 | [ 2554 | 0.000025, 2555 | "j" 2556 | ], 2557 | [ 2558 | 0.000016, 2559 | "e" 2560 | ], 2561 | [ 2562 | 0.000018, 2563 | "n" 2564 | ], 2565 | [ 2566 | 0.000027, 2567 | "k" 2568 | ], 2569 | [ 2570 | 0.000024, 2571 | "i" 2572 | ], 2573 | [ 2574 | 0.000025, 2575 | "n" 2576 | ], 2577 | [ 2578 | 0.000024, 2579 | "s" 2580 | ], 2581 | [ 2582 | 0.000005, 2583 | "\r\n" 2584 | ], 2585 | [ 2586 | 0.056641, 2587 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 2588 | ], 2589 | [ 2590 | 0.035894, 2591 | "bash-3.2$ " 2592 | ], 2593 | [ 2594 | 1.000000, 2595 | "gcloud compute forwarding-rules list " 2596 | ], 2597 | [ 2598 | 0.247954, 2599 | "jenkins" 2600 | ], 2601 | [ 2602 | 0.472211, 2603 | "\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u001b[4hdesc\u001b[4lribe\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C" 2604 | ], 2605 | [ 2606 | 0.631839, 2607 | "\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u001b[K" 2608 | ], 2609 | [ 2610 | 0.330542, 2611 | "k" 2612 | ], 2613 | [ 2614 | 0.000015, 2615 | "8" 2616 | ], 2617 | [ 2618 | 0.000027, 2619 | "s" 2620 | ], 2621 | [ 2622 | 0.000053, 2623 | "-" 2624 | ], 2625 | [ 2626 | 0.000009, 2627 | "j" 2628 | ], 2629 | [ 2630 | 0.000032, 2631 | "e" 2632 | ], 2633 | [ 2634 | 0.000026, 2635 | "n" 2636 | ], 2637 | [ 2638 | 0.000035, 2639 | "k" 2640 | ], 2641 | [ 2642 | 0.000048, 2643 | "i" 2644 | ], 2645 | [ 2646 | 0.000052, 2647 | "n" 2648 | ], 2649 | [ 2650 | 0.000027, 2651 | "s" 2652 | ], 2653 | [ 2654 | 0.000031, 2655 | "-" 2656 | ], 2657 | [ 2658 | 0.000038, 2659 | "d" 2660 | ], 2661 | [ 2662 | 0.000028, 2663 | "e" 2664 | ], 2665 | [ 2666 | 0.000034, 2667 | "f" 2668 | ], 2669 | [ 2670 | 0.000036, 2671 | "a" 2672 | ], 2673 | [ 2674 | 0.000036, 2675 | "u" 2676 | ], 2677 | [ 2678 | 0.000038, 2679 | "l" 2680 | ], 2681 | [ 2682 | 0.000035, 2683 | "t" 2684 | ], 2685 | [ 2686 | 0.000017, 2687 | "-" 2688 | ], 2689 | [ 2690 | 0.000036, 2691 | "j" 2692 | ], 2693 | [ 2694 | 0.000033, 2695 | "e" 2696 | ], 2697 | [ 2698 | 0.000035, 2699 | "n" 2700 | ], 2701 | [ 2702 | 0.000031, 2703 | "k" 2704 | ], 2705 | [ 2706 | 0.000026, 2707 | "i" 2708 | ], 2709 | [ 2710 | 0.000037, 2711 | "n" 2712 | ], 2713 | [ 2714 | 0.000019, 2715 | "s" 2716 | ], 2717 | [ 2718 | 0.164380, 2719 | "\r\n" 2720 | ], 2721 | [ 2722 | 1.000000, 2723 | "For the following forwarding rules:\r\n - [k8s-jenkins-default-jenkins]\r\nchoose a region:\r\n [1] asia-east1\r\n [2] europe-west1\r\n [3] us-central1\r\n" 2724 | ], 2725 | [ 2726 | 0.000012, 2727 | "Please enter your numeric choice: " 2728 | ], 2729 | [ 2730 | 1.000000, 2731 | "3" 2732 | ], 2733 | [ 2734 | 0.096106, 2735 | "\r\n" 2736 | ], 2737 | [ 2738 | 0.000090, 2739 | "\r\n" 2740 | ], 2741 | [ 2742 | 0.285310, 2743 | "IPAddress: 130.211.131.92\r\n" 2744 | ], 2745 | [ 2746 | 0.000463, 2747 | "IPProtocol: TCP\r\n" 2748 | ], 2749 | [ 2750 | 0.000537, 2751 | "creationTimestamp: '2015-03-20T06:04:49.874-07:00'\r\n" 2752 | ], 2753 | [ 2754 | 0.000504, 2755 | "id: '16022450702792888693'\r\n" 2756 | ], 2757 | [ 2758 | 0.000505, 2759 | "kind: compute#forwardingRule\r\n" 2760 | ], 2761 | [ 2762 | 0.000533, 2763 | "name: k8s-jenkins-default-jenkins\r\n" 2764 | ], 2765 | [ 2766 | 0.000501, 2767 | "portRange: 8888-8888\r\n" 2768 | ], 2769 | [ 2770 | 0.000589, 2771 | "region: https://www.googleapis.com/compute/v1/projects/gce-my-project/regions/us-central1\r\n" 2772 | ], 2773 | [ 2774 | 0.000698, 2775 | "selfLink: https://www.googleapis.com/compute/v1/projects/gce-my-project/regions/us-central1/forwardingRules/k8s-jenkins-default-jenkins\r\n" 2776 | ], 2777 | [ 2778 | 0.000647, 2779 | "target: https://www.googleapis.com/compute/v1/projects/gce-my-project/regions/us-central1/targetPools/k8s-jenkins-default-jenkins\r\n" 2780 | ], 2781 | [ 2782 | 0.037624, 2783 | "bash-3.2$ " 2784 | ], 2785 | [ 2786 | 1.000000, 2787 | "g" 2788 | ], 2789 | [ 2790 | 0.000014, 2791 | "c" 2792 | ], 2793 | [ 2794 | 0.000023, 2795 | "l" 2796 | ], 2797 | [ 2798 | 0.000009, 2799 | "o" 2800 | ], 2801 | [ 2802 | 0.000008, 2803 | "u" 2804 | ], 2805 | [ 2806 | 0.000018, 2807 | "d" 2808 | ], 2809 | [ 2810 | 0.000025, 2811 | " " 2812 | ], 2813 | [ 2814 | 0.000060, 2815 | "c" 2816 | ], 2817 | [ 2818 | 0.000010, 2819 | "o" 2820 | ], 2821 | [ 2822 | 0.000007, 2823 | "m" 2824 | ], 2825 | [ 2826 | 0.000020, 2827 | "p" 2828 | ], 2829 | [ 2830 | 0.000008, 2831 | "u" 2832 | ], 2833 | [ 2834 | 0.000031, 2835 | "t" 2836 | ], 2837 | [ 2838 | 0.000008, 2839 | "e" 2840 | ], 2841 | [ 2842 | 0.000022, 2843 | " " 2844 | ], 2845 | [ 2846 | 0.000007, 2847 | "f" 2848 | ], 2849 | [ 2850 | 0.000027, 2851 | "i" 2852 | ], 2853 | [ 2854 | 0.000008, 2855 | "r" 2856 | ], 2857 | [ 2858 | 0.000028, 2859 | "e" 2860 | ], 2861 | [ 2862 | 0.000028, 2863 | "w" 2864 | ], 2865 | [ 2866 | 0.000009, 2867 | "a" 2868 | ], 2869 | [ 2870 | 0.000020, 2871 | "l" 2872 | ], 2873 | [ 2874 | 0.000006, 2875 | "l" 2876 | ], 2877 | [ 2878 | 0.000016, 2879 | "-" 2880 | ], 2881 | [ 2882 | 0.000027, 2883 | "r" 2884 | ], 2885 | [ 2886 | 0.000007, 2887 | "u" 2888 | ], 2889 | [ 2890 | 0.000006, 2891 | "l" 2892 | ], 2893 | [ 2894 | 0.000019, 2895 | "e" 2896 | ], 2897 | [ 2898 | 0.000008, 2899 | "s" 2900 | ], 2901 | [ 2902 | 0.000019, 2903 | " " 2904 | ], 2905 | [ 2906 | 0.000022, 2907 | "c" 2908 | ], 2909 | [ 2910 | 0.000006, 2911 | "r" 2912 | ], 2913 | [ 2914 | 0.000017, 2915 | "e" 2916 | ], 2917 | [ 2918 | 0.000008, 2919 | "a" 2920 | ], 2921 | [ 2922 | 0.000019, 2923 | "t" 2924 | ], 2925 | [ 2926 | 0.000019, 2927 | "e" 2928 | ], 2929 | [ 2930 | 0.000007, 2931 | " " 2932 | ], 2933 | [ 2934 | 0.000022, 2935 | "j" 2936 | ], 2937 | [ 2938 | 0.000008, 2939 | "e" 2940 | ], 2941 | [ 2942 | 0.000023, 2943 | "n" 2944 | ], 2945 | [ 2946 | 0.000018, 2947 | "k" 2948 | ], 2949 | [ 2950 | 0.000020, 2951 | "i" 2952 | ], 2953 | [ 2954 | 0.000020, 2955 | "n" 2956 | ], 2957 | [ 2958 | 0.000006, 2959 | "s" 2960 | ], 2961 | [ 2962 | 0.000025, 2963 | "-" 2964 | ], 2965 | [ 2966 | 0.000022, 2967 | "n" 2968 | ], 2969 | [ 2970 | 0.000008, 2971 | "o" 2972 | ], 2973 | [ 2974 | 0.000020, 2975 | "d" 2976 | ], 2977 | [ 2978 | 0.000018, 2979 | "e" 2980 | ], 2981 | [ 2982 | 0.000020, 2983 | "-" 2984 | ], 2985 | [ 2986 | 0.000016, 2987 | "m" 2988 | ], 2989 | [ 2990 | 0.000031, 2991 | "a" 2992 | ], 2993 | [ 2994 | 0.000018, 2995 | "s" 2996 | ], 2997 | [ 2998 | 0.000020, 2999 | "t" 3000 | ], 3001 | [ 3002 | 0.000019, 3003 | "e" 3004 | ], 3005 | [ 3006 | 0.000017, 3007 | "r" 3008 | ], 3009 | [ 3010 | 0.000028, 3011 | " " 3012 | ], 3013 | [ 3014 | 0.000021, 3015 | "-" 3016 | ], 3017 | [ 3018 | 0.000027, 3019 | "-" 3020 | ], 3021 | [ 3022 | 0.000023, 3023 | "a" 3024 | ], 3025 | [ 3026 | 0.000018, 3027 | "l" 3028 | ], 3029 | [ 3030 | 0.000025, 3031 | "l" 3032 | ], 3033 | [ 3034 | 0.000024, 3035 | "o" 3036 | ], 3037 | [ 3038 | 0.000020, 3039 | "w" 3040 | ], 3041 | [ 3042 | 0.000026, 3043 | "=" 3044 | ], 3045 | [ 3046 | 0.000024, 3047 | "t" 3048 | ], 3049 | [ 3050 | 0.000019, 3051 | "c" 3052 | ], 3053 | [ 3054 | 0.000025, 3055 | "p" 3056 | ], 3057 | [ 3058 | 0.000025, 3059 | ":" 3060 | ], 3061 | [ 3062 | 0.000020, 3063 | "8" 3064 | ], 3065 | [ 3066 | 0.000024, 3067 | "8" 3068 | ], 3069 | [ 3070 | 0.000026, 3071 | "8" 3072 | ], 3073 | [ 3074 | 0.000019, 3075 | "8" 3076 | ], 3077 | [ 3078 | 0.000026, 3079 | " " 3080 | ], 3081 | [ 3082 | 0.000026, 3083 | "-" 3084 | ], 3085 | [ 3086 | 0.000020, 3087 | "-" 3088 | ], 3089 | [ 3090 | 0.000026, 3091 | "t" 3092 | ], 3093 | [ 3094 | 0.000027, 3095 | "a" 3096 | ], 3097 | [ 3098 | 0.000027, 3099 | "r" 3100 | ], 3101 | [ 3102 | 0.000018, 3103 | "g" 3104 | ], 3105 | [ 3106 | 0.000032, 3107 | "e" 3108 | ], 3109 | [ 3110 | 0.000027, 3111 | "t" 3112 | ], 3113 | [ 3114 | 0.000021, 3115 | "-" 3116 | ], 3117 | [ 3118 | 0.000024, 3119 | "t" 3120 | ], 3121 | [ 3122 | 0.000032, 3123 | "a" 3124 | ], 3125 | [ 3126 | 0.000028, 3127 | "g" 3128 | ], 3129 | [ 3130 | 0.000026, 3131 | "s" 3132 | ], 3133 | [ 3134 | 0.000027, 3135 | " " 3136 | ], 3137 | [ 3138 | 0.000024, 3139 | "k" 3140 | ], 3141 | [ 3142 | 0.000037, 3143 | "8" 3144 | ], 3145 | [ 3146 | 0.000026, 3147 | "s" 3148 | ], 3149 | [ 3150 | 0.000023, 3151 | "-" 3152 | ], 3153 | [ 3154 | 0.000029, 3155 | "j" 3156 | ], 3157 | [ 3158 | 0.000027, 3159 | "e" 3160 | ], 3161 | [ 3162 | 0.000028, 3163 | "n" 3164 | ], 3165 | [ 3166 | 0.000029, 3167 | "k" 3168 | ], 3169 | [ 3170 | 0.000029, 3171 | "i" 3172 | ], 3173 | [ 3174 | 0.000033, 3175 | "n" 3176 | ], 3177 | [ 3178 | 0.000028, 3179 | "s" 3180 | ], 3181 | [ 3182 | 0.000032, 3183 | "-" 3184 | ], 3185 | [ 3186 | 0.000032, 3187 | "m" 3188 | ], 3189 | [ 3190 | 0.000029, 3191 | "i" 3192 | ], 3193 | [ 3194 | 0.000032, 3195 | "n" 3196 | ], 3197 | [ 3198 | 0.000029, 3199 | "i" 3200 | ], 3201 | [ 3202 | 0.000032, 3203 | "o" 3204 | ], 3205 | [ 3206 | 0.000032, 3207 | "n" 3208 | ], 3209 | [ 3210 | 1.000000, 3211 | "\r\n" 3212 | ], 3213 | [ 3214 | 1.000000, 3215 | "Created [https://www.googleapis.com/compute/v1/projects/gce-my-project/global/firewalls/jenkins-node-master].\r\n" 3216 | ], 3217 | [ 3218 | 0.293085, 3219 | "NAME NETWORK SRC_RANGES RULES SRC_TAGS TARGET_TAGS\r\n" 3220 | ], 3221 | [ 3222 | 0.000191, 3223 | "jenkins-node-master default 0.0.0.0/0 tcp:8888 k8s-jenkins-minion\r\n" 3224 | ], 3225 | [ 3226 | 0.033048, 3227 | "bash-3.2$ " 3228 | ], 3229 | [ 3230 | 1.000000, 3231 | "c" 3232 | ], 3233 | [ 3234 | 0.159193, 3235 | "u" 3236 | ], 3237 | [ 3238 | 0.112190, 3239 | "r" 3240 | ], 3241 | [ 3242 | 0.127895, 3243 | "l" 3244 | ], 3245 | [ 3246 | 0.136096, 3247 | " " 3248 | ], 3249 | [ 3250 | 1.000000, 3251 | "h" 3252 | ], 3253 | [ 3254 | 0.000013, 3255 | "tt" 3256 | ], 3257 | [ 3258 | 0.000021, 3259 | "p" 3260 | ], 3261 | [ 3262 | 0.000028, 3263 | ":" 3264 | ], 3265 | [ 3266 | 0.000007, 3267 | "/" 3268 | ], 3269 | [ 3270 | 0.000054, 3271 | "/" 3272 | ], 3273 | [ 3274 | 0.000010, 3275 | "1" 3276 | ], 3277 | [ 3278 | 0.000024, 3279 | "3" 3280 | ], 3281 | [ 3282 | 0.000008, 3283 | "0" 3284 | ], 3285 | [ 3286 | 0.000054, 3287 | "." 3288 | ], 3289 | [ 3290 | 0.000020, 3291 | "2" 3292 | ], 3293 | [ 3294 | 0.000028, 3295 | "1" 3296 | ], 3297 | [ 3298 | 0.000018, 3299 | "1" 3300 | ], 3301 | [ 3302 | 0.000027, 3303 | "." 3304 | ], 3305 | [ 3306 | 0.000025, 3307 | "1" 3308 | ], 3309 | [ 3310 | 0.000029, 3311 | "3" 3312 | ], 3313 | [ 3314 | 0.000008, 3315 | "1" 3316 | ], 3317 | [ 3318 | 0.000029, 3319 | "." 3320 | ], 3321 | [ 3322 | 0.000027, 3323 | "9" 3324 | ], 3325 | [ 3326 | 0.000022, 3327 | "2" 3328 | ], 3329 | [ 3330 | 0.000023, 3331 | ":" 3332 | ], 3333 | [ 3334 | 0.000031, 3335 | "8" 3336 | ], 3337 | [ 3338 | 0.000031, 3339 | "8" 3340 | ], 3341 | [ 3342 | 0.000009, 3343 | "8" 3344 | ], 3345 | [ 3346 | 0.000025, 3347 | "8" 3348 | ], 3349 | [ 3350 | 0.000034, 3351 | "/" 3352 | ], 3353 | [ 3354 | 0.000019, 3355 | "o" 3356 | ], 3357 | [ 3358 | 0.000024, 3359 | "v" 3360 | ], 3361 | [ 3362 | 0.000030, 3363 | "e" 3364 | ], 3365 | [ 3366 | 0.000008, 3367 | "r" 3368 | ], 3369 | [ 3370 | 0.000028, 3371 | "a" 3372 | ], 3373 | [ 3374 | 0.000025, 3375 | "l" 3376 | ], 3377 | [ 3378 | 0.000028, 3379 | "l" 3380 | ], 3381 | [ 3382 | 0.000025, 3383 | "L" 3384 | ], 3385 | [ 3386 | 0.000039, 3387 | "o" 3388 | ], 3389 | [ 3390 | 0.000023, 3391 | "a" 3392 | ], 3393 | [ 3394 | 0.000023, 3395 | "d" 3396 | ], 3397 | [ 3398 | 0.000023, 3399 | "/" 3400 | ], 3401 | [ 3402 | 0.000019, 3403 | "a" 3404 | ], 3405 | [ 3406 | 0.000029, 3407 | "p" 3408 | ], 3409 | [ 3410 | 0.000024, 3411 | "i" 3412 | ], 3413 | [ 3414 | 0.000025, 3415 | "/" 3416 | ], 3417 | [ 3418 | 0.000036, 3419 | "j" 3420 | ], 3421 | [ 3422 | 0.000030, 3423 | "s" 3424 | ], 3425 | [ 3426 | 0.000018, 3427 | "o" 3428 | ], 3429 | [ 3430 | 0.000026, 3431 | "n" 3432 | ], 3433 | [ 3434 | 1.000000, 3435 | "\r\n" 3436 | ], 3437 | [ 3438 | 0.331615, 3439 | "{\"busyExecutors\":{},\"queueLength\":{},\u001b[01;32m\"totalExecutors\":{}\u001b[00m,\"totalQueueLength\":{}}" 3440 | ], 3441 | [ 3442 | 0.001227, 3443 | "bash-3.2$ " 3444 | ], 3445 | [ 3446 | 1.000000, 3447 | "\r\n" 3448 | ], 3449 | [ 3450 | 0.000107, 3451 | "bash-3.2$ " 3452 | ], 3453 | [ 3454 | 1.000000, 3455 | "c" 3456 | ], 3457 | [ 3458 | 0.000017, 3459 | "lu" 3460 | ], 3461 | [ 3462 | 0.000007, 3463 | "s" 3464 | ], 3465 | [ 3466 | 0.000019, 3467 | "t" 3468 | ], 3469 | [ 3470 | 0.000009, 3471 | "e" 3472 | ], 3473 | [ 3474 | 0.000041, 3475 | "r/k" 3476 | ], 3477 | [ 3478 | 0.000009, 3479 | "u" 3480 | ], 3481 | [ 3482 | 0.000028, 3483 | "b" 3484 | ], 3485 | [ 3486 | 0.000008, 3487 | "e" 3488 | ], 3489 | [ 3490 | 0.000006, 3491 | "c" 3492 | ], 3493 | [ 3494 | 0.000026, 3495 | "t" 3496 | ], 3497 | [ 3498 | 0.000008, 3499 | "l" 3500 | ], 3501 | [ 3502 | 0.000027, 3503 | "." 3504 | ], 3505 | [ 3506 | 0.000023, 3507 | "s" 3508 | ], 3509 | [ 3510 | 0.000016, 3511 | "h" 3512 | ], 3513 | [ 3514 | 0.000038, 3515 | " " 3516 | ], 3517 | [ 3518 | 0.000010, 3519 | "c" 3520 | ], 3521 | [ 3522 | 0.000025, 3523 | "r" 3524 | ], 3525 | [ 3526 | 0.000022, 3527 | "e" 3528 | ], 3529 | [ 3530 | 0.000024, 3531 | "a" 3532 | ], 3533 | [ 3534 | 0.000022, 3535 | "t" 3536 | ], 3537 | [ 3538 | 0.000023, 3539 | "e" 3540 | ], 3541 | [ 3542 | 0.000028, 3543 | " " 3544 | ], 3545 | [ 3546 | 0.000033, 3547 | "-" 3548 | ], 3549 | [ 3550 | 0.000009, 3551 | "f" 3552 | ], 3553 | [ 3554 | 0.000024, 3555 | " " 3556 | ], 3557 | [ 3558 | 0.000025, 3559 | "k" 3560 | ], 3561 | [ 3562 | 0.000021, 3563 | "u" 3564 | ], 3565 | [ 3566 | 0.000029, 3567 | "b" 3568 | ], 3569 | [ 3570 | 0.000026, 3571 | "e" 3572 | ], 3573 | [ 3574 | 0.000016, 3575 | "r" 3576 | ], 3577 | [ 3578 | 0.000022, 3579 | "n" 3580 | ], 3581 | [ 3582 | 0.000007, 3583 | "e" 3584 | ], 3585 | [ 3586 | 0.000023, 3587 | "t" 3588 | ], 3589 | [ 3590 | 0.000017, 3591 | "e" 3592 | ], 3593 | [ 3594 | 0.000006, 3595 | "s" 3596 | ], 3597 | [ 3598 | 0.000022, 3599 | "-" 3600 | ], 3601 | [ 3602 | 0.000024, 3603 | "j" 3604 | ], 3605 | [ 3606 | 0.000007, 3607 | "e" 3608 | ], 3609 | [ 3610 | 0.000025, 3611 | "n" 3612 | ], 3613 | [ 3614 | 0.000009, 3615 | "k" 3616 | ], 3617 | [ 3618 | 0.000022, 3619 | "i" 3620 | ], 3621 | [ 3622 | 0.000019, 3623 | "n" 3624 | ], 3625 | [ 3626 | 0.000020, 3627 | "s" 3628 | ], 3629 | [ 3630 | 0.000015, 3631 | "/" 3632 | ], 3633 | [ 3634 | 0.000028, 3635 | "r" 3636 | ], 3637 | [ 3638 | 0.000017, 3639 | "e" 3640 | ], 3641 | [ 3642 | 0.000019, 3643 | "p" 3644 | ], 3645 | [ 3646 | 0.000079, 3647 | "lica" 3648 | ], 3649 | [ 3650 | 0.000017, 3651 | "t" 3652 | ], 3653 | [ 3654 | 0.000018, 3655 | "i" 3656 | ], 3657 | [ 3658 | 0.000020, 3659 | "o" 3660 | ], 3661 | [ 3662 | 0.000019, 3663 | "n" 3664 | ], 3665 | [ 3666 | 0.000022, 3667 | "." 3668 | ], 3669 | [ 3670 | 0.000020, 3671 | "j" 3672 | ], 3673 | [ 3674 | 0.000023, 3675 | "s" 3676 | ], 3677 | [ 3678 | 0.000026, 3679 | "o" 3680 | ], 3681 | [ 3682 | 0.000025, 3683 | "n\r\n" 3684 | ], 3685 | [ 3686 | 0.055984, 3687 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 3688 | ], 3689 | [ 3690 | 0.000077, 3691 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl create -f kubernetes-jenkins/replication.json\r\n" 3692 | ], 3693 | [ 3694 | 0.868704, 3695 | "jenkins-slave\r\n" 3696 | ], 3697 | [ 3698 | 0.001913, 3699 | "bash-3.2$ " 3700 | ], 3701 | [ 3702 | 1.000000, 3703 | "c" 3704 | ], 3705 | [ 3706 | 0.000011, 3707 | "lu" 3708 | ], 3709 | [ 3710 | 0.000019, 3711 | "s" 3712 | ], 3713 | [ 3714 | 0.000007, 3715 | "t" 3716 | ], 3717 | [ 3718 | 0.000041, 3719 | "e" 3720 | ], 3721 | [ 3722 | 0.000010, 3723 | "r/" 3724 | ], 3725 | [ 3726 | 0.000021, 3727 | "k" 3728 | ], 3729 | [ 3730 | 0.000006, 3731 | "u" 3732 | ], 3733 | [ 3734 | 0.000045, 3735 | "be" 3736 | ], 3737 | [ 3738 | 0.000007, 3739 | "c" 3740 | ], 3741 | [ 3742 | 0.000027, 3743 | "t" 3744 | ], 3745 | [ 3746 | 0.000007, 3747 | "l" 3748 | ], 3749 | [ 3750 | 0.000028, 3751 | "." 3752 | ], 3753 | [ 3754 | 0.000009, 3755 | "s" 3756 | ], 3757 | [ 3758 | 0.000026, 3759 | "h" 3760 | ], 3761 | [ 3762 | 0.000024, 3763 | " " 3764 | ], 3765 | [ 3766 | 0.000018, 3767 | "g" 3768 | ], 3769 | [ 3770 | 0.000039, 3771 | "e" 3772 | ], 3773 | [ 3774 | 0.000063, 3775 | "t p" 3776 | ], 3777 | [ 3778 | 0.000009, 3779 | "o" 3780 | ], 3781 | [ 3782 | 0.000036, 3783 | "d" 3784 | ], 3785 | [ 3786 | 0.000008, 3787 | "s" 3788 | ], 3789 | [ 3790 | 0.000005, 3791 | "\r\n" 3792 | ], 3793 | [ 3794 | 0.059530, 3795 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 3796 | ], 3797 | [ 3798 | 0.000160, 3799 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl get pods\r\n" 3800 | ], 3801 | [ 3802 | 1.000000, 3803 | "POD IP CONTAINER(S) IMAGE(S) HOST " 3804 | ], 3805 | [ 3806 | 0.000014, 3807 | " LABELS STATUS CREATED\r\nelasticsearch-logging-controller-fplln 10.244.0.3 elasticsearch-logging kubernetes/elasticsearch:1.0 k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79" 3808 | ], 3809 | [ 3810 | 0.000005, 3811 | " kubernetes.io/cluster-service=true,name=elasticsearch-logging Running " 3812 | ], 3813 | [ 3814 | 0.000005, 3815 | "27 minutes\r\njenkins" 3816 | ], 3817 | [ 3818 | 0.000005, 3819 | " " 3820 | ], 3821 | [ 3822 | 0.000004, 3823 | " 10.244.1.4 " 3824 | ], 3825 | [ 3826 | 0.000003, 3827 | " jenkins " 3828 | ], 3829 | [ 3830 | 0.000003, 3831 | " " 3832 | ], 3833 | [ 3834 | 0.000004, 3835 | "csanchez/jenkins-swarm:1.565.3.3 k8s-jenkins-minion-axrl.c.gce-my-project.internal/104.154.53.149" 3836 | ], 3837 | [ 3838 | 0.000004, 3839 | " name=jenkins " 3840 | ], 3841 | [ 3842 | 0.000003, 3843 | " " 3844 | ], 3845 | [ 3846 | 0.000004, 3847 | " " 3848 | ], 3849 | [ 3850 | 0.000003, 3851 | " " 3852 | ], 3853 | [ 3854 | 0.000020, 3855 | " Running " 3856 | ], 3857 | [ 3858 | 0.000005, 3859 | " 14 minutes\r\njenkins-slave-h2gdn " 3860 | ], 3861 | [ 3862 | 0.000004, 3863 | " " 3864 | ], 3865 | [ 3866 | 0.000003, 3867 | "10.244.1.5 " 3868 | ], 3869 | [ 3870 | 0.000003, 3871 | "jenkins-slave " 3872 | ], 3873 | [ 3874 | 0.000003, 3875 | " csanchez/jenkins-swarm-slave:1.21" 3876 | ], 3877 | [ 3878 | 0.000003, 3879 | " k8s-jenkins-minion-axrl.c.gce-my-project.internal/104.154.53.149" 3880 | ], 3881 | [ 3882 | 0.000004, 3883 | " name=jenkins-slave" 3884 | ], 3885 | [ 3886 | 0.000003, 3887 | " " 3888 | ], 3889 | [ 3890 | 0.000003, 3891 | " " 3892 | ], 3893 | [ 3894 | 0.000003, 3895 | " " 3896 | ], 3897 | [ 3898 | 0.000003, 3899 | " Pending" 3900 | ], 3901 | [ 3902 | 0.000003, 3903 | " " 3904 | ], 3905 | [ 3906 | 0.000003, 3907 | "5 seconds\r\n" 3908 | ], 3909 | [ 3910 | 0.000003, 3911 | "kibana-logging-controller-ls6k1 " 3912 | ], 3913 | [ 3914 | 0.000003, 3915 | " 10.244.0.7" 3916 | ], 3917 | [ 3918 | 0.000003, 3919 | " " 3920 | ], 3921 | [ 3922 | 0.000003, 3923 | "kibana-logging " 3924 | ], 3925 | [ 3926 | 0.000003, 3927 | " kubernetes/kibana:1.1" 3928 | ], 3929 | [ 3930 | 0.000003, 3931 | " " 3932 | ], 3933 | [ 3934 | 0.000003, 3935 | "k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 " 3936 | ], 3937 | [ 3938 | 0.000003, 3939 | "kubernetes.io/cluster-service=true,name=kibana-logging " 3940 | ], 3941 | [ 3942 | 0.000003, 3943 | " " 3944 | ], 3945 | [ 3946 | 0.000003, 3947 | "Running " 3948 | ], 3949 | [ 3950 | 0.000003, 3951 | " 27 minutes" 3952 | ], 3953 | [ 3954 | 0.000003, 3955 | "\r\nkube-dns-gziey" 3956 | ], 3957 | [ 3958 | 0.000003, 3959 | " " 3960 | ], 3961 | [ 3962 | 0.000003, 3963 | " " 3964 | ], 3965 | [ 3966 | 0.000003, 3967 | "10.244.0.4 " 3968 | ], 3969 | [ 3970 | 0.000003, 3971 | " etcd" 3972 | ], 3973 | [ 3974 | 0.000003, 3975 | " " 3976 | ], 3977 | [ 3978 | 0.000003, 3979 | " quay.io/coreos/etcd:v2.0.3" 3980 | ], 3981 | [ 3982 | 0.000003, 3983 | " " 3984 | ], 3985 | [ 3986 | 0.000057, 3987 | "k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 " 3988 | ], 3989 | [ 3990 | 0.000011, 3991 | "k8s-app=kube-dns,kubernetes.io/cluster-service=true,name=kube-dns Running 27 minutes\r\n kube2sky kubernetes/kube2sky:1.1 \r\n " 3992 | ], 3993 | [ 3994 | 0.000015, 3995 | " " 3996 | ], 3997 | [ 3998 | 0.000003, 3999 | " " 4000 | ], 4001 | [ 4002 | 0.000003, 4003 | "skydns " 4004 | ], 4005 | [ 4006 | 0.000003, 4007 | " " 4008 | ], 4009 | [ 4010 | 0.000003, 4011 | "kubernetes/skydns:2015-03-11-001 " 4012 | ], 4013 | [ 4014 | 0.000003, 4015 | " " 4016 | ], 4017 | [ 4018 | 0.000003, 4019 | " " 4020 | ], 4021 | [ 4022 | 0.000003, 4023 | " " 4024 | ], 4025 | [ 4026 | 0.000003, 4027 | " " 4028 | ], 4029 | [ 4030 | 0.000003, 4031 | " " 4032 | ], 4033 | [ 4034 | 0.000003, 4035 | " " 4036 | ], 4037 | [ 4038 | 0.000003, 4039 | " " 4040 | ], 4041 | [ 4042 | 0.000003, 4043 | " " 4044 | ], 4045 | [ 4046 | 0.000003, 4047 | " " 4048 | ], 4049 | [ 4050 | 0.000003, 4051 | " " 4052 | ], 4053 | [ 4054 | 0.000003, 4055 | " " 4056 | ], 4057 | [ 4058 | 0.000003, 4059 | "\r\nmonitoring-heapster-controller-0133o" 4060 | ], 4061 | [ 4062 | 0.000003, 4063 | " " 4064 | ], 4065 | [ 4066 | 0.000003, 4067 | "10.244.0.6 " 4068 | ], 4069 | [ 4070 | 0.000003, 4071 | " heapster" 4072 | ], 4073 | [ 4074 | 0.000003, 4075 | " " 4076 | ], 4077 | [ 4078 | 0.000003, 4079 | "kubernetes/heapster:v0.8 " 4080 | ], 4081 | [ 4082 | 0.000003, 4083 | " k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79" 4084 | ], 4085 | [ 4086 | 0.000003, 4087 | " kubernetes.io/cluster-service=true,name=heapster,uses=monitoring-influxdb" 4088 | ], 4089 | [ 4090 | 0.000003, 4091 | " Running" 4092 | ], 4093 | [ 4094 | 0.000003, 4095 | " " 4096 | ], 4097 | [ 4098 | 0.000048, 4099 | "27 minutes\r\n" 4100 | ], 4101 | [ 4102 | 0.000009, 4103 | "monitoring-influx-grafana-controller-oh43e 10.244.0.5 influxdb kubernetes/heapster_influxdb:v0.3 k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 kubernetes.io/cluster-service=true,name=influxGrafana Running 27 minutes\r\n grafana kubernetes/heapster_grafana:v0.4 " 4104 | ], 4105 | [ 4106 | 0.000007, 4107 | " " 4108 | ], 4109 | [ 4110 | 0.000003, 4111 | " " 4112 | ], 4113 | [ 4114 | 0.000003, 4115 | " " 4116 | ], 4117 | [ 4118 | 0.000003, 4119 | " " 4120 | ], 4121 | [ 4122 | 0.000004, 4123 | " " 4124 | ], 4125 | [ 4126 | 0.000003, 4127 | " " 4128 | ], 4129 | [ 4130 | 0.000003, 4131 | " " 4132 | ], 4133 | [ 4134 | 0.000002, 4135 | "\r\n" 4136 | ], 4137 | [ 4138 | 0.001329, 4139 | "bash-3.2$ " 4140 | ], 4141 | [ 4142 | 1.000000, 4143 | "c" 4144 | ], 4145 | [ 4146 | 0.000012, 4147 | "lu" 4148 | ], 4149 | [ 4150 | 0.000007, 4151 | "s" 4152 | ], 4153 | [ 4154 | 0.000005, 4155 | "t" 4156 | ], 4157 | [ 4158 | 0.000018, 4159 | "er" 4160 | ], 4161 | [ 4162 | 0.000022, 4163 | "/" 4164 | ], 4165 | [ 4166 | 0.000014, 4167 | "k" 4168 | ], 4169 | [ 4170 | 0.000007, 4171 | "u" 4172 | ], 4173 | [ 4174 | 0.000027, 4175 | "b" 4176 | ], 4177 | [ 4178 | 0.000008, 4179 | "e" 4180 | ], 4181 | [ 4182 | 0.000006, 4183 | "c" 4184 | ], 4185 | [ 4186 | 0.000023, 4187 | "t" 4188 | ], 4189 | [ 4190 | 0.000028, 4191 | "l" 4192 | ], 4193 | [ 4194 | 0.000008, 4195 | "." 4196 | ], 4197 | [ 4198 | 0.000014, 4199 | "s" 4200 | ], 4201 | [ 4202 | 0.000017, 4203 | "h" 4204 | ], 4205 | [ 4206 | 0.000018, 4207 | " " 4208 | ], 4209 | [ 4210 | 0.000015, 4211 | "g" 4212 | ], 4213 | [ 4214 | 0.000020, 4215 | "e" 4216 | ], 4217 | [ 4218 | 0.000018, 4219 | "t" 4220 | ], 4221 | [ 4222 | 0.000029, 4223 | " " 4224 | ], 4225 | [ 4226 | 0.000005, 4227 | "p" 4228 | ], 4229 | [ 4230 | 0.000024, 4231 | "o" 4232 | ], 4233 | [ 4234 | 0.000017, 4235 | "d" 4236 | ], 4237 | [ 4238 | 0.000015, 4239 | "s" 4240 | ], 4241 | [ 4242 | 0.000005, 4243 | "\r\n" 4244 | ], 4245 | [ 4246 | 0.056499, 4247 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 4248 | ], 4249 | [ 4250 | 0.000090, 4251 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl get pods\r\n" 4252 | ], 4253 | [ 4254 | 1.000000, 4255 | "POD IP CONTAINER(S) IMAGE(S) HOST " 4256 | ], 4257 | [ 4258 | 0.000013, 4259 | " LABELS STATUS CREATED\r\nelasticsearch-logging-controller-fplln 10.244.0.3 elasticsearch-logging kubernetes/elasticsearch:1.0 k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 kubernetes.io/cluster-service=true,name=elasticsearch-logging" 4260 | ], 4261 | [ 4262 | 0.000004, 4263 | " Running " 4264 | ], 4265 | [ 4266 | 0.000004, 4267 | "27 minutes\r\njenkins" 4268 | ], 4269 | [ 4270 | 0.000004, 4271 | " " 4272 | ], 4273 | [ 4274 | 0.000004, 4275 | " 10.244.1.4" 4276 | ], 4277 | [ 4278 | 0.000004, 4279 | " jenkins " 4280 | ], 4281 | [ 4282 | 0.000003, 4283 | " csanchez/jenkins-swarm:1.565.3.3" 4284 | ], 4285 | [ 4286 | 0.000003, 4287 | " k8s-jenkins-minion-axrl.c.gce-my-project.internal/104.154.53.149" 4288 | ], 4289 | [ 4290 | 0.000004, 4291 | " name=jenkins" 4292 | ], 4293 | [ 4294 | 0.000002, 4295 | " " 4296 | ], 4297 | [ 4298 | 0.000003, 4299 | " " 4300 | ], 4301 | [ 4302 | 0.000002, 4303 | " " 4304 | ], 4305 | [ 4306 | 0.000003, 4307 | " Running" 4308 | ], 4309 | [ 4310 | 0.000003, 4311 | " " 4312 | ], 4313 | [ 4314 | 0.000007, 4315 | "14 minutes\r\njenkins-slave-h2gdn " 4316 | ], 4317 | [ 4318 | 0.000013, 4319 | " 10.244.1.5" 4320 | ], 4321 | [ 4322 | 0.000010, 4323 | " jenkins-slave csanchez/jenkins-swarm-slave:1.21 k8s-jenkins-minion-axrl.c.gce-my-project.internal/104.154.53.149 name=jenkins-slave " 4324 | ], 4325 | [ 4326 | 0.000021, 4327 | " Running 37 seconds\r\nkibana-logging-controller-ls6k1 10.244.0.7 kibana-logging " 4328 | ], 4329 | [ 4330 | 0.000004, 4331 | " kubernetes/kibana:1.1 k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79" 4332 | ], 4333 | [ 4334 | 0.000003, 4335 | " kubernetes.io/cluster-service=true,name=kibana-logging" 4336 | ], 4337 | [ 4338 | 0.000003, 4339 | " " 4340 | ], 4341 | [ 4342 | 0.000003, 4343 | " Running" 4344 | ], 4345 | [ 4346 | 0.000003, 4347 | " " 4348 | ], 4349 | [ 4350 | 0.000003, 4351 | "27 minutes\r\nkube-dns-gziey" 4352 | ], 4353 | [ 4354 | 0.000003, 4355 | " " 4356 | ], 4357 | [ 4358 | 0.000003, 4359 | " 10.244.0.4" 4360 | ], 4361 | [ 4362 | 0.000003, 4363 | " etcd" 4364 | ], 4365 | [ 4366 | 0.000004, 4367 | " " 4368 | ], 4369 | [ 4370 | 0.000003, 4371 | "quay.io/coreos/etcd:v2.0.3 " 4372 | ], 4373 | [ 4374 | 0.000003, 4375 | " k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79" 4376 | ], 4377 | [ 4378 | 0.000004, 4379 | " k8s-app=kube-dns,kubernetes.io/cluster-service=true,name=kube-dns" 4380 | ], 4381 | [ 4382 | 0.000003, 4383 | " Running" 4384 | ], 4385 | [ 4386 | 0.000003, 4387 | " 27 minutes" 4388 | ], 4389 | [ 4390 | 0.000130, 4391 | "\r\n " 4392 | ], 4393 | [ 4394 | 0.000143, 4395 | " kube2sky kubernetes/kube2sky:1.1 \r\n skydns kubernetes/skydns:2015-03-11-001 \r\nmonitoring-heapster-controller-0133o 10.244.0.6 heapster kubernetes/heapster:v0.8 k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 kubernetes.io/cluster-service=true,name=heapster,uses=monitoring-influxdb Running 27 minutes\r\nmonitoring-influx-grafana-controller-oh43e 10.244.0.5 influxdb kubernetes/heapster_influxdb:v0.3 k8s-jenkins-minion-5025.c.hig" 4396 | ], 4397 | [ 4398 | 0.000010, 4399 | "h-cistern-340.internal/162.222.179.79 kubernetes.io/cluster-service=true,name=influxGrafana Running 27 minutes\r\n grafana kubernetes/heapster_grafana:v0.4 \r\n" 4400 | ], 4401 | [ 4402 | 0.001269, 4403 | "bash-3.2$ " 4404 | ], 4405 | [ 4406 | 1.000000, 4407 | "h" 4408 | ], 4409 | [ 4410 | 0.000012, 4411 | "t" 4412 | ], 4413 | [ 4414 | 0.000007, 4415 | "t" 4416 | ], 4417 | [ 4418 | 0.000019, 4419 | "p" 4420 | ], 4421 | [ 4422 | 0.000007, 4423 | ":" 4424 | ], 4425 | [ 4426 | 0.000050, 4427 | "/" 4428 | ], 4429 | [ 4430 | 0.000009, 4431 | "/1" 4432 | ], 4433 | [ 4434 | 0.000007, 4435 | "3" 4436 | ], 4437 | [ 4438 | 0.000021, 4439 | "0" 4440 | ], 4441 | [ 4442 | 0.000036, 4443 | ".2" 4444 | ], 4445 | [ 4446 | 0.000008, 4447 | "1" 4448 | ], 4449 | [ 4450 | 0.000029, 4451 | "1" 4452 | ], 4453 | [ 4454 | 0.000008, 4455 | "." 4456 | ], 4457 | [ 4458 | 0.000019, 4459 | "1" 4460 | ], 4461 | [ 4462 | 0.000007, 4463 | "3" 4464 | ], 4465 | [ 4466 | 0.000007, 4467 | "1" 4468 | ], 4469 | [ 4470 | 0.000016, 4471 | "." 4472 | ], 4473 | [ 4474 | 0.000007, 4475 | "9" 4476 | ], 4477 | [ 4478 | 0.000018, 4479 | "2" 4480 | ], 4481 | [ 4482 | 0.000007, 4483 | ":" 4484 | ], 4485 | [ 4486 | 0.000025, 4487 | "8" 4488 | ], 4489 | [ 4490 | 0.000007, 4491 | "8" 4492 | ], 4493 | [ 4494 | 0.000005, 4495 | "8" 4496 | ], 4497 | [ 4498 | 0.000025, 4499 | "8" 4500 | ], 4501 | [ 4502 | 0.000007, 4503 | "/" 4504 | ], 4505 | [ 4506 | 0.000025, 4507 | "c" 4508 | ], 4509 | [ 4510 | 0.000008, 4511 | "o" 4512 | ], 4513 | [ 4514 | 0.000016, 4515 | "m" 4516 | ], 4517 | [ 4518 | 0.000008, 4519 | "p" 4520 | ], 4521 | [ 4522 | 0.000021, 4523 | "u" 4524 | ], 4525 | [ 4526 | 0.000019, 4527 | "t" 4528 | ], 4529 | [ 4530 | 0.000007, 4531 | "e" 4532 | ], 4533 | [ 4534 | 0.000017, 4535 | "r" 4536 | ], 4537 | [ 4538 | 0.000018, 4539 | "/" 4540 | ], 4541 | [ 4542 | 0.000006, 4543 | "a" 4544 | ], 4545 | [ 4546 | 0.000027, 4547 | "p" 4548 | ], 4549 | [ 4550 | 0.000007, 4551 | "i" 4552 | ], 4553 | [ 4554 | 0.000022, 4555 | "/" 4556 | ], 4557 | [ 4558 | 0.000016, 4559 | "j" 4560 | ], 4561 | [ 4562 | 0.000023, 4563 | "s" 4564 | ], 4565 | [ 4566 | 0.000008, 4567 | "o" 4568 | ], 4569 | [ 4570 | 0.000018, 4571 | "n" 4572 | ], 4573 | [ 4574 | 1.000000, 4575 | "\r\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C" 4576 | ], 4577 | [ 4578 | 0.376765, 4579 | "chttp://130.211.131.92:8888/computer/api/json\r\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C" 4580 | ], 4581 | [ 4582 | 0.127812, 4583 | "uhttp://130.211.131.92:8888/computer/api/json\r\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C" 4584 | ], 4585 | [ 4586 | 0.264139, 4587 | "rhttp://130.211.131.92:8888/computer/api/json\r\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C" 4588 | ], 4589 | [ 4590 | 0.119950, 4591 | "lhttp://130.211.131.92:8888/computer/api/json\r\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C" 4592 | ], 4593 | [ 4594 | 0.096018, 4595 | " http://130.211.131.92:8888/computer/api/json\r\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C" 4596 | ], 4597 | [ 4598 | 0.535974, 4599 | "\r\n" 4600 | ], 4601 | [ 4602 | 0.327984, 4603 | "{\"busyExecutors\":0,\"computer\":[{\"actions\":[],\"displayName\":\"master\",\"executors\":[],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":false,\"launchSupported\":true,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monitorData\":{\"hudson.node_monitors.SwapSpaceMonitor\":{\"availablePhysicalMemory\":79925248,\"availableSwapSpace\":0,\"totalPhysicalMemory\":1787035648,\"totalSwapSpace\":0},\"hudson.node_monitors.ArchitectureMonitor\":\"Linux (amd64)\",\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":0},\"hudson.node_monitors.TemporarySpaceMonitor\":{\"path\":\"/tmp\",\"size\":7311716352},\"hudson.node_monitors.DiskSpaceMonitor\":{\"path\":\"/var/jenkins_home\",\"size\":7311716352},\"hudson.node_monitors.ClockMonitor\":{\"diff\":0}},\"numExecutors\":0,\"offline\":false,\"offlineCause\":null,\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarilyOffline\":false},{\"actions\":[],\"displayName\":\"jenkins-slave-h2gdn\",\"executors\":[{}],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":true,\"launchSupported\":false,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monito" 4604 | ], 4605 | [ 4606 | 0.000128, 4607 | "rData\":{\"hudson.node_monitors.SwapSpaceMonitor\":{\"availablePhysicalMemory\":76836864,\"availableSwapSpace\":0,\"totalPhysicalMemory\":1787035648,\"totalSwapSpace\":0},\"hudson.node_monitors.ArchitectureMonitor\":\"Linux (amd64)\",\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":1296},\"hudson.node_monitors.TemporarySpaceMonitor\":{\"path\":\"/tmp\",\"size\":7308951552},\"hudson.node_monitors.DiskSpaceMonitor\":{\"path\":\"/home/jenkins-slave\",\"size\":7308972032},\"hudson.node_monitors.ClockMonitor\":{\"diff\":-638}},\"numExecutors\":1,\"offline\":false,\"offlineCause\":null,\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarilyOffline\":false}],\"displayName\":\"nodes\",\u001b[01;32m\"totalExecutors\":1\u001b[00m}" 4608 | ], 4609 | [ 4610 | 0.001257, 4611 | "bash-3.2$ " 4612 | ], 4613 | [ 4614 | 1.000000, 4615 | "\r\n" 4616 | ], 4617 | [ 4618 | 0.000213, 4619 | "bash-3.2$ " 4620 | ], 4621 | [ 4622 | 1.000000, 4623 | "c" 4624 | ], 4625 | [ 4626 | 0.000011, 4627 | "l" 4628 | ], 4629 | [ 4630 | 0.000006, 4631 | "u" 4632 | ], 4633 | [ 4634 | 0.000024, 4635 | "s" 4636 | ], 4637 | [ 4638 | 0.000008, 4639 | "t" 4640 | ], 4641 | [ 4642 | 0.000019, 4643 | "e" 4644 | ], 4645 | [ 4646 | 0.000037, 4647 | "r" 4648 | ], 4649 | [ 4650 | 0.000010, 4651 | "/" 4652 | ], 4653 | [ 4654 | 0.000006, 4655 | "k" 4656 | ], 4657 | [ 4658 | 0.000033, 4659 | "ub" 4660 | ], 4661 | [ 4662 | 0.000028, 4663 | "e" 4664 | ], 4665 | [ 4666 | 0.000009, 4667 | "c" 4668 | ], 4669 | [ 4670 | 0.000104, 4671 | "tl.sh " 4672 | ], 4673 | [ 4674 | 0.000006, 4675 | "r" 4676 | ], 4677 | [ 4678 | 0.000025, 4679 | "e" 4680 | ], 4681 | [ 4682 | 0.000024, 4683 | "s" 4684 | ], 4685 | [ 4686 | 0.000014, 4687 | "i" 4688 | ], 4689 | [ 4690 | 0.000023, 4691 | "z" 4692 | ], 4693 | [ 4694 | 0.000025, 4695 | "e" 4696 | ], 4697 | [ 4698 | 0.000007, 4699 | " " 4700 | ], 4701 | [ 4702 | 0.000027, 4703 | "r" 4704 | ], 4705 | [ 4706 | 0.000023, 4707 | "e" 4708 | ], 4709 | [ 4710 | 0.000040, 4711 | "p" 4712 | ], 4713 | [ 4714 | 0.000010, 4715 | "l" 4716 | ], 4717 | [ 4718 | 0.000019, 4719 | "i" 4720 | ], 4721 | [ 4722 | 0.000021, 4723 | "c" 4724 | ], 4725 | [ 4726 | 0.000019, 4727 | "a" 4728 | ], 4729 | [ 4730 | 0.000025, 4731 | "t" 4732 | ], 4733 | [ 4734 | 0.000020, 4735 | "i" 4736 | ], 4737 | [ 4738 | 0.000027, 4739 | "o" 4740 | ], 4741 | [ 4742 | 0.000018, 4743 | "n" 4744 | ], 4745 | [ 4746 | 0.000027, 4747 | "c" 4748 | ], 4749 | [ 4750 | 0.000024, 4751 | "o" 4752 | ], 4753 | [ 4754 | 0.000025, 4755 | "n" 4756 | ], 4757 | [ 4758 | 0.000023, 4759 | "t" 4760 | ], 4761 | [ 4762 | 0.000024, 4763 | "r" 4764 | ], 4765 | [ 4766 | 0.000023, 4767 | "o" 4768 | ], 4769 | [ 4770 | 0.000025, 4771 | "l" 4772 | ], 4773 | [ 4774 | 0.000025, 4775 | "l" 4776 | ], 4777 | [ 4778 | 0.000036, 4779 | "e" 4780 | ], 4781 | [ 4782 | 0.000029, 4783 | "r" 4784 | ], 4785 | [ 4786 | 0.000017, 4787 | "s" 4788 | ], 4789 | [ 4790 | 0.000025, 4791 | " " 4792 | ], 4793 | [ 4794 | 0.000043, 4795 | "-" 4796 | ], 4797 | [ 4798 | 0.000009, 4799 | "-" 4800 | ], 4801 | [ 4802 | 0.000028, 4803 | "r" 4804 | ], 4805 | [ 4806 | 0.000029, 4807 | "e" 4808 | ], 4809 | [ 4810 | 0.000023, 4811 | "p" 4812 | ], 4813 | [ 4814 | 0.000023, 4815 | "l" 4816 | ], 4817 | [ 4818 | 0.000023, 4819 | "i" 4820 | ], 4821 | [ 4822 | 0.000027, 4823 | "c" 4824 | ], 4825 | [ 4826 | 0.000033, 4827 | "a" 4828 | ], 4829 | [ 4830 | 0.000022, 4831 | "s" 4832 | ], 4833 | [ 4834 | 0.000045, 4835 | "=" 4836 | ], 4837 | [ 4838 | 0.000029, 4839 | "2" 4840 | ], 4841 | [ 4842 | 0.000019, 4843 | " " 4844 | ], 4845 | [ 4846 | 0.000030, 4847 | "j" 4848 | ], 4849 | [ 4850 | 0.000043, 4851 | "e" 4852 | ], 4853 | [ 4854 | 0.000031, 4855 | "n" 4856 | ], 4857 | [ 4858 | 0.000019, 4859 | "k" 4860 | ], 4861 | [ 4862 | 0.000045, 4863 | "i" 4864 | ], 4865 | [ 4866 | 0.000019, 4867 | "n" 4868 | ], 4869 | [ 4870 | 0.000031, 4871 | "s" 4872 | ], 4873 | [ 4874 | 0.000033, 4875 | "-" 4876 | ], 4877 | [ 4878 | 0.000025, 4879 | "s" 4880 | ], 4881 | [ 4882 | 0.000030, 4883 | "l" 4884 | ], 4885 | [ 4886 | 0.000027, 4887 | "a" 4888 | ], 4889 | [ 4890 | 0.000025, 4891 | "v" 4892 | ], 4893 | [ 4894 | 0.000024, 4895 | "e" 4896 | ], 4897 | [ 4898 | 0.000005, 4899 | "\r\n" 4900 | ], 4901 | [ 4902 | 0.057235, 4903 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 4904 | ], 4905 | [ 4906 | 0.000120, 4907 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl resize replicationcontrollers --replicas=2 jenkins-slave\r\n" 4908 | ], 4909 | [ 4910 | 1.000000, 4911 | "resized\r\n" 4912 | ], 4913 | [ 4914 | 0.001857, 4915 | "bash-3.2$ " 4916 | ], 4917 | [ 4918 | 1.000000, 4919 | "cluster/kubectl.sh resize replicationcontrollers --replicas=2 jenkins-slave" 4920 | ], 4921 | [ 4922 | 0.159730, 4923 | "\r\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[26Purl http://130.211.131.92:8888/computer/api/json" 4924 | ], 4925 | [ 4926 | 0.656079, 4927 | "\r\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[22Pluster/kubectl.sh get pods" 4928 | ], 4929 | [ 4930 | 1.000000, 4931 | "\r\n" 4932 | ], 4933 | [ 4934 | 0.063242, 4935 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 4936 | ], 4937 | [ 4938 | 0.000108, 4939 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl get pods\r\n" 4940 | ], 4941 | [ 4942 | 1.000000, 4943 | "POD IP CONTAINER(S) IMAGE(S) HOST " 4944 | ], 4945 | [ 4946 | 0.000013, 4947 | " LABELS STATUS CREATED\r\nelasticsearch-logging-controller-fplln 10.244.0.3 elasticsearch-logging kubernetes/elasticsearch:1.0 " 4948 | ], 4949 | [ 4950 | 0.000006, 4951 | "k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 kubernetes.io/cluster-service=true,name=elasticsearch-logging Running" 4952 | ], 4953 | [ 4954 | 0.000004, 4955 | " 30 minutes\r\n" 4956 | ], 4957 | [ 4958 | 0.000004, 4959 | "jenkins " 4960 | ], 4961 | [ 4962 | 0.000004, 4963 | " " 4964 | ], 4965 | [ 4966 | 0.000003, 4967 | "10.244.1.4 " 4968 | ], 4969 | [ 4970 | 0.000003, 4971 | " jenkins " 4972 | ], 4973 | [ 4974 | 0.000004, 4975 | " " 4976 | ], 4977 | [ 4978 | 0.000004, 4979 | "csanchez/jenkins-swarm:1.565.3.3 k8s-jenkins-minion-axrl.c.gce-my-project.internal/104.154.53.149" 4980 | ], 4981 | [ 4982 | 0.000004, 4983 | " name=jenkins " 4984 | ], 4985 | [ 4986 | 0.000003, 4987 | " " 4988 | ], 4989 | [ 4990 | 0.000003, 4991 | " " 4992 | ], 4993 | [ 4994 | 0.000003, 4995 | " Running" 4996 | ], 4997 | [ 4998 | 0.000003, 4999 | " " 5000 | ], 5001 | [ 5002 | 0.000003, 5003 | "17 minutes\r\njenkins-slave-h2gdn" 5004 | ], 5005 | [ 5006 | 0.000026, 5007 | " " 5008 | ], 5009 | [ 5010 | 0.000006, 5011 | "10.244.1.5 jenkins-slave csanchez/jenkins-swarm-slave:1.21" 5012 | ], 5013 | [ 5014 | 0.000003, 5015 | " k8s-jenkins-minion-axrl.c.gce-my-project.internal/104.154.53.149 name=jenkins-slave" 5016 | ], 5017 | [ 5018 | 0.000003, 5019 | " " 5020 | ], 5021 | [ 5022 | 0.000003, 5023 | " " 5024 | ], 5025 | [ 5026 | 0.000003, 5027 | " " 5028 | ], 5029 | [ 5030 | 0.000003, 5031 | "Running " 5032 | ], 5033 | [ 5034 | 0.000003, 5035 | " 3 minutes" 5036 | ], 5037 | [ 5038 | 0.000004, 5039 | "\r\njenkins-slave-yxxvi" 5040 | ], 5041 | [ 5042 | 0.000003, 5043 | " " 5044 | ], 5045 | [ 5046 | 0.000003, 5047 | " 10.244.1.6 " 5048 | ], 5049 | [ 5050 | 0.000003, 5051 | " jenkins-slave " 5052 | ], 5053 | [ 5054 | 0.000004, 5055 | " csanchez/jenkins-swarm-slave:1.21 " 5056 | ], 5057 | [ 5058 | 0.000005, 5059 | "k8s-jenkins-minion-axrl.c.gce-my-project.internal/104.154.53.149 name=jenkins-slave" 5060 | ], 5061 | [ 5062 | 0.000003, 5063 | " " 5064 | ], 5065 | [ 5066 | 0.000003, 5067 | " " 5068 | ], 5069 | [ 5070 | 0.000003, 5071 | " " 5072 | ], 5073 | [ 5074 | 0.000003, 5075 | " Running " 5076 | ], 5077 | [ 5078 | 0.000003, 5079 | " 7 seconds" 5080 | ], 5081 | [ 5082 | 0.000003, 5083 | "\r\nkibana-logging-controller-ls6k1 " 5084 | ], 5085 | [ 5086 | 0.000004, 5087 | " 10.244.0.7 " 5088 | ], 5089 | [ 5090 | 0.000003, 5091 | " kibana-logging" 5092 | ], 5093 | [ 5094 | 0.000004, 5095 | " " 5096 | ], 5097 | [ 5098 | 0.000004, 5099 | "kubernetes/kibana:1.1 " 5100 | ], 5101 | [ 5102 | 0.000078, 5103 | "k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 kubernetes.io/cluster-service=true,name=kibana-logging" 5104 | ], 5105 | [ 5106 | 0.000018, 5107 | " Running 30 minutes\r\nkube-dns-gziey 10.244.0.4 etcd quay.io/coreos/etcd:v2.0.3 k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 k8s-app=kube-dns,kubernetes.io/cluster-service=true,name=kube-dns Running 30 minutes\r\n kube2sky kubernetes/kube2sky:1.1 " 5108 | ], 5109 | [ 5110 | 0.000007, 5111 | " " 5112 | ], 5113 | [ 5114 | 0.000010, 5115 | " " 5116 | ], 5117 | [ 5118 | 0.000004, 5119 | " " 5120 | ], 5121 | [ 5122 | 0.000003, 5123 | " " 5124 | ], 5125 | [ 5126 | 0.000003, 5127 | "\r\n " 5128 | ], 5129 | [ 5130 | 0.000002, 5131 | " " 5132 | ], 5133 | [ 5134 | 0.000003, 5135 | " " 5136 | ], 5137 | [ 5138 | 0.000003, 5139 | " " 5140 | ], 5141 | [ 5142 | 0.000003, 5143 | " " 5144 | ], 5145 | [ 5146 | 0.000003, 5147 | "skydns" 5148 | ], 5149 | [ 5150 | 0.000004, 5151 | " " 5152 | ], 5153 | [ 5154 | 0.000004, 5155 | "kubernetes/skydns:2015-03-11-001 " 5156 | ], 5157 | [ 5158 | 0.000003, 5159 | " " 5160 | ], 5161 | [ 5162 | 0.000003, 5163 | " " 5164 | ], 5165 | [ 5166 | 0.000003, 5167 | " " 5168 | ], 5169 | [ 5170 | 0.000003, 5171 | " " 5172 | ], 5173 | [ 5174 | 0.000003, 5175 | " " 5176 | ], 5177 | [ 5178 | 0.000003, 5179 | " " 5180 | ], 5181 | [ 5182 | 0.000010, 5183 | " " 5184 | ], 5185 | [ 5186 | 0.000004, 5187 | " \r\n" 5188 | ], 5189 | [ 5190 | 0.000022, 5191 | "monitoring-heapster-controller-0133o " 5192 | ], 5193 | [ 5194 | 0.000007, 5195 | " 10.244.0.6 heapster kubernetes/heapster:v0.8 k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79 kubernetes.io/cluster-service=true,name=heapster,uses=monitoring-influxdb Running 30 minutes\r\nmonitoring-influx-grafana-controller-oh43e" 5196 | ], 5197 | [ 5198 | 0.000005, 5199 | " 10.244.0.5 influxdb" 5200 | ], 5201 | [ 5202 | 0.000004, 5203 | " kubernetes/heapster_influxdb:v0.3" 5204 | ], 5205 | [ 5206 | 0.000004, 5207 | " k8s-jenkins-minion-5025.c.gce-my-project.internal/162.222.179.79" 5208 | ], 5209 | [ 5210 | 0.000003, 5211 | " kubernetes.io/cluster-service=true,name=influxGrafana" 5212 | ], 5213 | [ 5214 | 0.000003, 5215 | " " 5216 | ], 5217 | [ 5218 | 0.000003, 5219 | " Running" 5220 | ], 5221 | [ 5222 | 0.000003, 5223 | " " 5224 | ], 5225 | [ 5226 | 0.000002, 5227 | "30 minutes" 5228 | ], 5229 | [ 5230 | 0.000003, 5231 | "\r\n " 5232 | ], 5233 | [ 5234 | 0.000003, 5235 | " " 5236 | ], 5237 | [ 5238 | 0.000004, 5239 | " " 5240 | ], 5241 | [ 5242 | 0.000004, 5243 | " " 5244 | ], 5245 | [ 5246 | 0.000003, 5247 | " grafana" 5248 | ], 5249 | [ 5250 | 0.000002, 5251 | " " 5252 | ], 5253 | [ 5254 | 0.000003, 5255 | " kubernetes/heapster_grafana:v0.4" 5256 | ], 5257 | [ 5258 | 0.000003, 5259 | " " 5260 | ], 5261 | [ 5262 | 0.000002, 5263 | " " 5264 | ], 5265 | [ 5266 | 0.000003, 5267 | " " 5268 | ], 5269 | [ 5270 | 0.000003, 5271 | " " 5272 | ], 5273 | [ 5274 | 0.000008, 5275 | " " 5276 | ], 5277 | [ 5278 | 0.000004, 5279 | " " 5280 | ], 5281 | [ 5282 | 0.000020, 5283 | " " 5284 | ], 5285 | [ 5286 | 0.000006, 5287 | " " 5288 | ], 5289 | [ 5290 | 0.000005, 5291 | " " 5292 | ], 5293 | [ 5294 | 0.000003, 5295 | " \r\n" 5296 | ], 5297 | [ 5298 | 0.001399, 5299 | "bash-3.2$ " 5300 | ], 5301 | [ 5302 | 1.000000, 5303 | "cluster/kubectl.sh get pods" 5304 | ], 5305 | [ 5306 | 0.743933, 5307 | "\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008resize replicationcontrollers --replicas=2 jenkins-slave" 5308 | ], 5309 | [ 5310 | 0.984123, 5311 | "\r\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[26Purl http://130.211.131.92:8888/computer/api/json" 5312 | ], 5313 | [ 5314 | 1.000000, 5315 | "\r\n" 5316 | ], 5317 | [ 5318 | 0.399606, 5319 | "{\"busyExecutors\":0,\"computer\":[{\"actions\":[],\"displayName\":\"master\",\"executors\":[],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":false,\"launchSupported\":true,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monitorData\":{\"hudson.node_monitors.SwapSpaceMonitor\":{\"availablePhysicalMemory\":65511424,\"availableSwapSpace\":0,\"totalPhysicalMemory\":1787035648,\"totalSwapSpace\":0},\"hudson.node_monitors.ArchitectureMonitor\":\"Linux (amd64)\",\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":0},\"hudson.node_monitors.TemporarySpaceMonitor\":{\"path\":\"/tmp\",\"size\":7293964288},\"hudson.node_monitors.DiskSpaceMonitor\":{\"path\":\"/var/jenkins_home\",\"size\":7293964288},\"hudson.node_monitors.ClockMonitor\":{\"diff\":0}},\"numExecutors\":0,\"offline\":false,\"offlineCause\":null,\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarilyOffline\":false},{\"actions\":[],\"displayName\":\"jenkins-slave-h2gdn\",\"executors\":[{}],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":true,\"launchSupported\":false,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monito" 5320 | ], 5321 | [ 5322 | 0.000158, 5323 | "rData\":{\"hudson.node_monitors.SwapSpaceMonitor\":{\"availablePhysicalMemory\":65511424,\"availableSwapSpace\":0,\"totalPhysicalMemory\":1787035648,\"totalSwapSpace\":0},\"hudson.node_monitors.ArchitectureMonitor\":\"Linux (amd64)\",\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":940},\"hudson.node_monitors.TemporarySpaceMonitor\":{\"path\":\"/tmp\",\"size\":7293964288},\"hudson.node_monitors.DiskSpaceMonitor\":{\"path\":\"/home/jenkins-slave\",\"size\":7293964288},\"hudson.node_monitors.ClockMonitor\":{\"diff\":165}},\"numExecutors\":1,\"offline\":false,\"offlineCause\":null,\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarilyOffline\":false},{\"actions\":[],\"displayName\":\"jenkins-slave-yxxvi\",\"executors\":[{}],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":true,\"launchSupported\":false,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monitorData\":{\"hudson.node_monitors.SwapSpaceMonitor\":{\"availablePhysicalMemory\":78561280,\"availableSwapSpace\":0,\"totalPhysicalMemory\":1787035648,\"totalSwapSpace\":0},\"hudson.node_monitors.ArchitectureMonitor\":\"Li" 5324 | ], 5325 | [ 5326 | 0.000516, 5327 | "nux (amd64)\",\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":585},\"hudson.node_monitors.TemporarySpaceMonitor\":{\"path\":\"/tmp\",\"size\":7293857792},\"hudson.node_monitors.DiskSpaceMonitor\":{\"path\":\"/home/jenkins-slave\",\"size\":7293648896},\"hudson.node_monitors.ClockMonitor\":{\"diff\":84}},\"numExecutors\":1,\"offline\":false,\"offlineCause\":null,\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarilyOffline\":false}],\"displayName\":\"nodes\",\u001b[01;32m\"totalExecutors\":2\u001b[00m}" 5328 | ], 5329 | [ 5330 | 0.000771, 5331 | "bash-3.2$ " 5332 | ], 5333 | [ 5334 | 1.000000, 5335 | "\r\n" 5336 | ], 5337 | [ 5338 | 0.000261, 5339 | "bash-3.2$ " 5340 | ], 5341 | [ 5342 | 0.863997, 5343 | "curl http://130.211.131.92:8888/computer/api/json" 5344 | ], 5345 | [ 5346 | 0.400181, 5347 | "\r\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[22Pluster/kubectl.sh get pods" 5348 | ], 5349 | [ 5350 | 0.463861, 5351 | "\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008resize replicationcontrollers --replicas=2 jenkins-slave" 5352 | ], 5353 | [ 5354 | 0.727114, 5355 | "\u0008" 5356 | ], 5357 | [ 5358 | 0.501785, 5359 | "\u0008" 5360 | ], 5361 | [ 5362 | 0.084383, 5363 | "\u0008" 5364 | ], 5365 | [ 5366 | 0.084446, 5367 | "\u0008" 5368 | ], 5369 | [ 5370 | 0.084413, 5371 | "\u0008" 5372 | ], 5373 | [ 5374 | 0.084387, 5375 | "\u0008" 5376 | ], 5377 | [ 5378 | 0.084313, 5379 | "\u0008" 5380 | ], 5381 | [ 5382 | 0.083738, 5383 | "\u0008" 5384 | ], 5385 | [ 5386 | 0.084278, 5387 | "\u0008" 5388 | ], 5389 | [ 5390 | 0.084321, 5391 | "\u0008" 5392 | ], 5393 | [ 5394 | 0.084301, 5395 | "\u0008" 5396 | ], 5397 | [ 5398 | 0.084663, 5399 | "\u0008" 5400 | ], 5401 | [ 5402 | 0.084278, 5403 | "\u0008" 5404 | ], 5405 | [ 5406 | 0.323494, 5407 | "\u0008" 5408 | ], 5409 | [ 5410 | 1.000000, 5411 | "\u0008\u001b[1P jenkins-slave\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008" 5412 | ], 5413 | [ 5414 | 1.000000, 5415 | "3 jenkins-slave\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008" 5416 | ], 5417 | [ 5418 | 0.591705, 5419 | "\r\n" 5420 | ], 5421 | [ 5422 | 0.063447, 5423 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 5424 | ], 5425 | [ 5426 | 0.000138, 5427 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl resize replicationcontrollers --replicas=3 jenkins-slave\r\n" 5428 | ], 5429 | [ 5430 | 1.000000, 5431 | "resized\r\n" 5432 | ], 5433 | [ 5434 | 0.001874, 5435 | "bash-3.2$ " 5436 | ], 5437 | [ 5438 | 0.601066, 5439 | "cluster/kubectl.sh resize replicationcontrollers --replicas=3 jenkins-slave" 5440 | ], 5441 | [ 5442 | 0.510944, 5443 | "\r\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[26Purl http://130.211.131.92:8888/computer/api/json" 5444 | ], 5445 | [ 5446 | 1.000000, 5447 | "\r\n" 5448 | ], 5449 | [ 5450 | 0.365693, 5451 | "{\"busyExecutors\":0,\"computer\":[{\"actions\":[],\"displayName\":\"master\",\"executors\":[],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":false,\"launchSupported\":true,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monitorData\":{\"hudson.node_monitors.SwapSpaceMonitor\":{\"availablePhysicalMemory\":65511424,\"availableSwapSpace\":0,\"totalPhysicalMemory\":1787035648,\"totalSwapSpace\":0},\"hudson.node_monitors.ArchitectureMonitor\":\"Linux (amd64)\",\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":0},\"hudson.node_monitors.TemporarySpaceMonitor\":{\"path\":\"/tmp\",\"size\":7293964288},\"hudson.node_monitors.DiskSpaceMonitor\":{\"path\":\"/var/jenkins_home\",\"size\":7293964288},\"hudson.node_monitors.ClockMonitor\":{\"diff\":0}},\"numExecutors\":0,\"offline\":false,\"offlineCause\":null,\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarilyOffline\":false},{\"actions\":[],\"displayName\":\"jenkins-slave-7hvsz\",\"executors\":[{}],\"icon\":\"computer-x.png\",\"idle\":true,\"jnlpAgent\":true,\"launchSupported\":false,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"moni" 5452 | ], 5453 | [ 5454 | 0.000124, 5455 | "torData\":{\"hudson.node_monitors.SwapSpaceMonitor\":null,\"hudson.node_monitors.ArchitectureMonitor\":null,\"hudson.node_monitors.ResponseTimeMonitor\":null,\"hudson.node_monitors.TemporarySpaceMonitor\":null,\"hudson.node_monitors.DiskSpaceMonitor\":null,\"hudson.node_monitors.ClockMonitor\":null},\"numExecutors\":1,\"offline\":true,\"offlineCause\":{},\"offlineCauseReason\":\"This node is offline because Jenkins failed to launch the slave agent on it.\",\"oneOffExecutors\":[],\"temporarilyOffline\":false},{\"actions\":[],\"displayName\":\"jenkins-slave-h2gdn\",\"executors\":[{}],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":true,\"launchSupported\":false,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monitorData\":{\"hudson.node_monitors.SwapSpaceMonitor\":{\"availablePhysicalMemory\":65511424,\"availableSwapSpace\":0,\"totalPhysicalMemory\":1787035648,\"totalSwapSpace\":0},\"hudson.node_monitors.ArchitectureMonitor\":\"Linux (amd64)\",\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":940},\"hudson.node_monitors.TemporarySpaceMonitor\":{\"path\":\"/tmp\",\"si" 5456 | ], 5457 | [ 5458 | 0.000455, 5459 | "ze\":7293964288},\"hudson.node_monitors.DiskSpaceMonitor\":{\"path\":\"/home/jenkins-slave\",\"size\":7293964288},\"hudson.node_monitors.ClockMonitor\":{\"diff\":165}},\"numExecutors\":1,\"offline\":false,\"offlineCause\":null,\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarilyOffline\":false},{\"actions\":[],\"displayName\":\"jenkins-slave-yxxvi\",\"executors\":[{}],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":true,\"launchSupported\":false,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monitorData\":{\"hudson.node_monitors.SwapSpaceMonitor\":{\"availablePhysicalMemory\":78561280,\"availableSwapSpace\":0,\"totalPhysicalMemory\":1787035648,\"totalSwapSpace\":0},\"hudson.node_monitors.ArchitectureMonitor\":\"Linux (amd64)\",\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":585},\"hudson.node_monitors.TemporarySpaceMonitor\":{\"path\":\"/tmp\",\"size\":7293857792},\"hudson.node_monitors.DiskSpaceMonitor\":{\"path\":\"/home/jenkins-slave\",\"size\":7293648896},\"hudson.node_monitors.ClockMonitor\":{\"diff\":84}},\"numExecutors\":1,\"offline\":false,\"offlineCause\":null" 5460 | ], 5461 | [ 5462 | 0.000264, 5463 | ",\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarilyOffline\":false}],\"displayName\":\"nodes\",\u001b[01;32m\"totalExecutors\":2\u001b[00m}" 5464 | ], 5465 | [ 5466 | 0.000754, 5467 | "bash-3.2$ " 5468 | ], 5469 | [ 5470 | 1.000000, 5471 | "curl http://130.211.131.92:8888/computer/api/json" 5472 | ], 5473 | [ 5474 | 1.000000, 5475 | "\r\n" 5476 | ], 5477 | [ 5478 | 0.421096, 5479 | "{\"busyExecutors\":0,\"computer\":[{\"actions\":[],\"displayName\":\"master\",\"executors\":[],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":false,\"launchSupported\":true,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monitorData\":{\"hudson.node_monitors.SwapSpaceMonitor\":{\"availablePhysicalMemory\":160464896,\"availableSwapSpace\":0,\"totalPhysicalMemory\":1787035648,\"totalSwapSpace\":0},\"hudson.node_monitors.ArchitectureMonitor\":\"Linux (amd64)\",\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":0},\"hudson.node_monitors.TemporarySpaceMonitor\":{\"path\":\"/tmp\",\"size\":7292837888},\"hudson.node_monitors.DiskSpaceMonitor\":{\"path\":\"/var/jenkins_home\",\"size\":7292919808},\"hudson.node_monitors.ClockMonitor\":{\"diff\":0}},\"numExecutors\":0,\"offline\":false,\"offlineCause\":null,\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarilyOffline\":false},{\"actions\":[],\"displayName\":\"jenkins-slave-7hvsz\",\"executors\":[{}],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":true,\"launchSupported\":false,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monit" 5480 | ], 5481 | [ 5482 | 0.000114, 5483 | "orData\":{\"hudson.node_monitors.SwapSpaceMonitor\":null,\"hudson.node_monitors.ArchitectureMonitor\":null,\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":5000},\"hudson.node_monitors.TemporarySpaceMonitor\":null,\"hudson.node_monitors.DiskSpaceMonitor\":null,\"hudson.node_monitors.ClockMonitor\":null},\"numExecutors\":1,\"offline\":false,\"offlineCause\":null,\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarilyOffline\":false},{\"actions\":[],\"displayName\":\"jenkins-slave-h2gdn\",\"executors\":[{}],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":true,\"launchSupported\":false,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monitorData\":{\"hudson.node_monitors.SwapSpaceMonitor\":{\"availablePhysicalMemory\":160190464,\"availableSwapSpace\":0,\"totalPhysicalMemory\":1787035648,\"totalSwapSpace\":0},\"hudson.node_monitors.ArchitectureMonitor\":\"Linux (amd64)\",\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":710},\"hudson.node_monitors.TemporarySpaceMonitor\":{\"path\":\"/tmp\",\"size\":7292755968},\"hudson.node_monitors.DiskSpaceMonitor\":{\"pat" 5484 | ], 5485 | [ 5486 | 0.000538, 5487 | "h\":\"/home/jenkins-slave\",\"size\":7292788736},\"hudson.node_monitors.ClockMonitor\":{\"diff\":188}},\"numExecutors\":1,\"offline\":false,\"offlineCause\":null,\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarilyOffline\":false},{\"actions\":[],\"displayName\":\"jenkins-slave-yxxvi\",\"executors\":[{}],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":true,\"launchSupported\":false,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monitorData\":{\"hudson.node_monitors.SwapSpaceMonitor\":{\"availablePhysicalMemory\":154550272,\"availableSwapSpace\":0,\"totalPhysicalMemory\":1787035648,\"totalSwapSpace\":0},\"hudson.node_monitors.ArchitectureMonitor\":\"Linux (amd64)\",\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":418},\"hudson.node_monitors.TemporarySpaceMonitor\":{\"path\":\"/tmp\",\"size\":7292149760},\"hudson.node_monitors.DiskSpaceMonitor\":{\"path\":\"/home/jenkins-slave\",\"size\":7292149760},\"hudson.node_monitors.ClockMonitor\":{\"diff\":-207}},\"numExecutors\":1,\"offline\":false,\"offlineCause\":null,\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarily" 5488 | ], 5489 | [ 5490 | 0.000289, 5491 | "Offline\":false}],\"displayName\":\"nodes\",\u001b[01;32m\"totalExecutors\":3\u001b[00m}" 5492 | ], 5493 | [ 5494 | 0.000671, 5495 | "bash-3.2$ " 5496 | ], 5497 | [ 5498 | 1.000000, 5499 | "\r\n" 5500 | ], 5501 | [ 5502 | 0.000176, 5503 | "bash-3.2$ " 5504 | ], 5505 | [ 5506 | 0.752923, 5507 | "curl http://130.211.131.92:8888/computer/api/json" 5508 | ], 5509 | [ 5510 | 0.512161, 5511 | "\r\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[Cluster/kubectl.sh resize replicationcontrollers --replicas=3 jenkins-slave" 5512 | ], 5513 | [ 5514 | 1.000000, 5515 | "\u0008" 5516 | ], 5517 | [ 5518 | 0.501166, 5519 | "\u0008" 5520 | ], 5521 | [ 5522 | 0.084427, 5523 | "\u0008" 5524 | ], 5525 | [ 5526 | 0.084245, 5527 | "\u0008" 5528 | ], 5529 | [ 5530 | 0.084614, 5531 | "\u0008" 5532 | ], 5533 | [ 5534 | 0.084233, 5535 | "\u0008" 5536 | ], 5537 | [ 5538 | 0.084242, 5539 | "\u0008" 5540 | ], 5541 | [ 5542 | 0.084473, 5543 | "\u0008" 5544 | ], 5545 | [ 5546 | 0.084464, 5547 | "\u0008" 5548 | ], 5549 | [ 5550 | 0.084395, 5551 | "\u0008" 5552 | ], 5553 | [ 5554 | 0.084386, 5555 | "\u0008" 5556 | ], 5557 | [ 5558 | 0.084358, 5559 | "\u0008" 5560 | ], 5561 | [ 5562 | 0.084541, 5563 | "\u0008" 5564 | ], 5565 | [ 5566 | 0.402599, 5567 | "\u0008" 5568 | ], 5569 | [ 5570 | 0.376058, 5571 | "\u0008\u001b[1P jenkins-slave\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008" 5572 | ], 5573 | [ 5574 | 0.528408, 5575 | "0 jenkins-slave\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008\u0008" 5576 | ], 5577 | [ 5578 | 0.871377, 5579 | "\r\n" 5580 | ], 5581 | [ 5582 | 0.062345, 5583 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 5584 | ], 5585 | [ 5586 | 0.000159, 5587 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl resize replicationcontrollers --replicas=0 jenkins-slave\r\n" 5588 | ], 5589 | [ 5590 | 1.000000, 5591 | "resized\r\n" 5592 | ], 5593 | [ 5594 | 0.001997, 5595 | "bash-3.2$ " 5596 | ], 5597 | [ 5598 | 1.000000, 5599 | "cluster/kubectl.sh resize replicationcontrollers --replicas=0 jenkins-slave" 5600 | ], 5601 | [ 5602 | 0.927754, 5603 | "\r\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[26Purl http://130.211.131.92:8888/computer/api/json" 5604 | ], 5605 | [ 5606 | 1.000000, 5607 | "\r\n" 5608 | ], 5609 | [ 5610 | 0.332470, 5611 | "{\"busyExecutors\":0,\"computer\":[{\"actions\":[],\"displayName\":\"master\",\"executors\":[],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":false,\"launchSupported\":true,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monitorData\":{\"hudson.node_monitors.SwapSpaceMonitor\":{\"availablePhysicalMemory\":122941440,\"availableSwapSpace\":0,\"totalPhysicalMemory\":1787035648,\"totalSwapSpace\":0},\"hudson.node_monitors.ArchitectureMonitor\":\"Linux (amd64)\",\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":0},\"hudson.node_monitors.TemporarySpaceMonitor\":{\"path\":\"/tmp\",\"size\":7278104576},\"hudson.node_monitors.DiskSpaceMonitor\":{\"path\":\"/var/jenkins_home\",\"size\":7278104576},\"hudson.node_monitors.ClockMonitor\":{\"diff\":0}},\"numExecutors\":0,\"offline\":false,\"offlineCause\":null,\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarilyOffline\":false},{\"actions\":[],\"displayName\":\"jenkins-slave-7hvsz\",\"executors\":[{}],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":true,\"launchSupported\":false,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monit" 5612 | ], 5613 | [ 5614 | 0.000149, 5615 | "orData\":{\"hudson.node_monitors.SwapSpaceMonitor\":{\"availablePhysicalMemory\":122445824,\"availableSwapSpace\":0,\"totalPhysicalMemory\":1787035648,\"totalSwapSpace\":0},\"hudson.node_monitors.ArchitectureMonitor\":\"Linux (amd64)\",\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":2593},\"hudson.node_monitors.TemporarySpaceMonitor\":{\"path\":\"/tmp\",\"size\":7278104576},\"hudson.node_monitors.DiskSpaceMonitor\":{\"path\":\"/home/jenkins-slave\",\"size\":7278104576},\"hudson.node_monitors.ClockMonitor\":{\"diff\":-2}},\"numExecutors\":1,\"offline\":false,\"offlineCause\":null,\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarilyOffline\":false},{\"actions\":[],\"displayName\":\"jenkins-slave-h2gdn\",\"executors\":[{}],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":true,\"launchSupported\":false,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monitorData\":{\"hudson.node_monitors.SwapSpaceMonitor\":{\"availablePhysicalMemory\":122941440,\"availableSwapSpace\":0,\"totalPhysicalMemory\":1787035648,\"totalSwapSpace\":0},\"hudson.node_monitors.ArchitectureMonitor\":" 5616 | ], 5617 | [ 5618 | 0.000442, 5619 | "\"Linux (amd64)\",\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":533},\"hudson.node_monitors.TemporarySpaceMonitor\":{\"path\":\"/tmp\",\"size\":7278104576},\"hudson.node_monitors.DiskSpaceMonitor\":{\"path\":\"/home/jenkins-slave\",\"size\":7278104576},\"hudson.node_monitors.ClockMonitor\":{\"diff\":0}},\"numExecutors\":1,\"offline\":false,\"offlineCause\":null,\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarilyOffline\":false},{\"actions\":[],\"displayName\":\"jenkins-slave-yxxvi\",\"executors\":[{}],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":true,\"launchSupported\":false,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monitorData\":{\"hudson.node_monitors.SwapSpaceMonitor\":{\"availablePhysicalMemory\":122888192,\"availableSwapSpace\":0,\"totalPhysicalMemory\":1787035648,\"totalSwapSpace\":0},\"hudson.node_monitors.ArchitectureMonitor\":\"Linux (amd64)\",\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":279},\"hudson.node_monitors.TemporarySpaceMonitor\":{\"path\":\"/tmp\",\"size\":7278104576},\"hudson.node_monitors.DiskSpaceMonitor\":{\"path\":\"/hom" 5620 | ], 5621 | [ 5622 | 0.000280, 5623 | "e/jenkins-slave\",\"size\":7278104576},\"hudson.node_monitors.ClockMonitor\":{\"diff\":-1}},\"numExecutors\":1,\"offline\":false,\"offlineCause\":null,\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarilyOffline\":false}],\"displayName\":\"nodes\",\u001b[01;32m\"totalExecutors\":3\u001b[00m}" 5624 | ], 5625 | [ 5626 | 0.000712, 5627 | "bash-3.2$ " 5628 | ], 5629 | [ 5630 | 1.000000, 5631 | "curl http://130.211.131.92:8888/computer/api/json" 5632 | ], 5633 | [ 5634 | 1.000000, 5635 | "\r\n" 5636 | ], 5637 | [ 5638 | 0.349668, 5639 | "{\"busyExecutors\":0,\"computer\":[{\"actions\":[],\"displayName\":\"master\",\"executors\":[],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":false,\"launchSupported\":true,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monitorData\":{\"hudson.node_monitors.SwapSpaceMonitor\":{\"availablePhysicalMemory\":122941440,\"availableSwapSpace\":0,\"totalPhysicalMemory\":1787035648,\"totalSwapSpace\":0},\"hudson.node_monitors.ArchitectureMonitor\":\"Linux (amd64)\",\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":0},\"hudson.node_monitors.TemporarySpaceMonitor\":{\"path\":\"/tmp\",\"size\":7278104576},\"hudson.node_monitors.DiskSpaceMonitor\":{\"path\":\"/var/jenkins_home\",\"size\":7278104576},\"hudson.node_monitors.ClockMonitor\":{\"diff\":0}},\"numExecutors\":0,\"offline\":false,\"offlineCause\":null,\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarilyOffline\":false},{\"actions\":[],\"displayName\":\"jenkins-slave-7hvsz\",\"executors\":[{}],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":true,\"launchSupported\":false,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monit" 5640 | ], 5641 | [ 5642 | 0.000172, 5643 | "orData\":{\"hudson.node_monitors.SwapSpaceMonitor\":{\"availablePhysicalMemory\":122445824,\"availableSwapSpace\":0,\"totalPhysicalMemory\":1787035648,\"totalSwapSpace\":0},\"hudson.node_monitors.ArchitectureMonitor\":\"Linux (amd64)\",\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":2593},\"hudson.node_monitors.TemporarySpaceMonitor\":{\"path\":\"/tmp\",\"size\":7278104576},\"hudson.node_monitors.DiskSpaceMonitor\":{\"path\":\"/home/jenkins-slave\",\"size\":7278104576},\"hudson.node_monitors.ClockMonitor\":{\"diff\":-2}},\"numExecutors\":1,\"offline\":false,\"offlineCause\":null,\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarilyOffline\":false},{\"actions\":[],\"displayName\":\"jenkins-slave-yxxvi\",\"executors\":[{}],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":true,\"launchSupported\":false,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monitorData\":{\"hudson.node_monitors.SwapSpaceMonitor\":{\"availablePhysicalMemory\":122888192,\"availableSwapSpace\":0,\"totalPhysicalMemory\":1787035648,\"totalSwapSpace\":0},\"hudson.node_monitors.ArchitectureMonitor\":" 5644 | ], 5645 | [ 5646 | 0.000464, 5647 | "\"Linux (amd64)\",\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":279},\"hudson.node_monitors.TemporarySpaceMonitor\":{\"path\":\"/tmp\",\"size\":7278104576},\"hudson.node_monitors.DiskSpaceMonitor\":{\"path\":\"/home/jenkins-slave\",\"size\":7278104576},\"hudson.node_monitors.ClockMonitor\":{\"diff\":-1}},\"numExecutors\":1,\"offline\":false,\"offlineCause\":null,\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarilyOffline\":false}],\"displayName\":\"nodes\",\u001b[01;32m\"totalExecutors\":2\u001b[00m}" 5648 | ], 5649 | [ 5650 | 0.000800, 5651 | "bash-3.2$ " 5652 | ], 5653 | [ 5654 | 1.000000, 5655 | "\r\n" 5656 | ], 5657 | [ 5658 | 0.000267, 5659 | "bash-3.2$ " 5660 | ], 5661 | [ 5662 | 1.000000, 5663 | "curl http://130.211.131.92:8888/computer/api/json" 5664 | ], 5665 | [ 5666 | 0.239405, 5667 | "\r\n" 5668 | ], 5669 | [ 5670 | 0.332189, 5671 | "{\"busyExecutors\":0,\"computer\":[{\"actions\":[],\"displayName\":\"master\",\"executors\":[],\"icon\":\"computer.png\",\"idle\":true,\"jnlpAgent\":false,\"launchSupported\":true,\"loadStatistics\":{},\"manualLaunchAllowed\":true,\"monitorData\":{\"hudson.node_monitors.SwapSpaceMonitor\":{\"availablePhysicalMemory\":122941440,\"availableSwapSpace\":0,\"totalPhysicalMemory\":1787035648,\"totalSwapSpace\":0},\"hudson.node_monitors.ArchitectureMonitor\":\"Linux (amd64)\",\"hudson.node_monitors.ResponseTimeMonitor\":{\"average\":0},\"hudson.node_monitors.TemporarySpaceMonitor\":{\"path\":\"/tmp\",\"size\":7278104576},\"hudson.node_monitors.DiskSpaceMonitor\":{\"path\":\"/var/jenkins_home\",\"size\":7278104576},\"hudson.node_monitors.ClockMonitor\":{\"diff\":0}},\"numExecutors\":0,\"offline\":false,\"offlineCause\":null,\"offlineCauseReason\":\"\",\"oneOffExecutors\":[],\"temporarilyOffline\":false}],\"displayName\":\"nodes\",\u001b[01;32m\"totalExecutors\":0\u001b[00m}" 5672 | ], 5673 | [ 5674 | 0.001183, 5675 | "bash-3.2$ " 5676 | ], 5677 | [ 5678 | 1.000000, 5679 | "\r\n" 5680 | ], 5681 | [ 5682 | 0.000222, 5683 | "bash-3.2$ " 5684 | ], 5685 | [ 5686 | 1.000000, 5687 | "exit\r\n" 5688 | ] 5689 | ] 5690 | } -------------------------------------------------------------------------------- /demo/3-teardown.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "width": 181, 4 | "height": 48, 5 | "duration": 33, 6 | "command": "/bin/bash", 7 | "title": "", 8 | "env": { 9 | "TERM": "xterm-color", 10 | "SHELL": "/bin/bash" 11 | }, 12 | "stdout": [ 13 | [ 14 | 0.010671, 15 | "bash-3.2$ " 16 | ], 17 | [ 18 | 0.872705, 19 | "c" 20 | ], 21 | [ 22 | 0.000017, 23 | "lu" 24 | ], 25 | [ 26 | 0.000022, 27 | "s" 28 | ], 29 | [ 30 | 0.000006, 31 | "t" 32 | ], 33 | [ 34 | 0.000012, 35 | "e" 36 | ], 37 | [ 38 | 0.000019, 39 | "r" 40 | ], 41 | [ 42 | 0.000028, 43 | "/" 44 | ], 45 | [ 46 | 0.000068, 47 | "k" 48 | ], 49 | [ 50 | 0.000024, 51 | "ub" 52 | ], 53 | [ 54 | 0.000007, 55 | "e" 56 | ], 57 | [ 58 | 0.000028, 59 | "c" 60 | ], 61 | [ 62 | 0.000026, 63 | "t" 64 | ], 65 | [ 66 | 0.000009, 67 | "l." 68 | ], 69 | [ 70 | 0.000025, 71 | "s" 72 | ], 73 | [ 74 | 0.000029, 75 | "h" 76 | ], 77 | [ 78 | 0.000005, 79 | " " 80 | ], 81 | [ 82 | 0.000011, 83 | "s" 84 | ], 85 | [ 86 | 0.000024, 87 | "t" 88 | ], 89 | [ 90 | 0.000020, 91 | "o" 92 | ], 93 | [ 94 | 0.000032, 95 | "p" 96 | ], 97 | [ 98 | 0.000005, 99 | " " 100 | ], 101 | [ 102 | 0.000018, 103 | "j" 104 | ], 105 | [ 106 | 0.000026, 107 | "e" 108 | ], 109 | [ 110 | 0.000029, 111 | "n" 112 | ], 113 | [ 114 | 0.000005, 115 | "k" 116 | ], 117 | [ 118 | 0.000022, 119 | "i" 120 | ], 121 | [ 122 | 0.000019, 123 | "n" 124 | ], 125 | [ 126 | 0.000021, 127 | "s" 128 | ], 129 | [ 130 | 0.000017, 131 | "-" 132 | ], 133 | [ 134 | 0.000020, 135 | "s" 136 | ], 137 | [ 138 | 0.000022, 139 | "l" 140 | ], 141 | [ 142 | 0.000021, 143 | "a" 144 | ], 145 | [ 146 | 0.000035, 147 | "v" 148 | ], 149 | [ 150 | 0.000016, 151 | "e" 152 | ], 153 | [ 154 | 0.000006, 155 | "\r\n" 156 | ], 157 | [ 158 | 0.057475, 159 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 160 | ], 161 | [ 162 | 0.000071, 163 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl stop jenkins-slave\r\n" 164 | ], 165 | [ 166 | 0.041894, 167 | "F0320 14:17:17.278316 48924 stop.go:69] Client error processing command: you must provide one or more resources by argument or filename\r\n" 168 | ], 169 | [ 170 | 0.002121, 171 | "bash-3.2$ c" 172 | ], 173 | [ 174 | 0.000010, 175 | "luster/kubectl" 176 | ], 177 | [ 178 | 0.000014, 179 | "." 180 | ], 181 | [ 182 | 0.000004, 183 | "s" 184 | ], 185 | [ 186 | 0.000025, 187 | "h " 188 | ], 189 | [ 190 | 0.000004, 191 | "d" 192 | ], 193 | [ 194 | 0.000021, 195 | "e" 196 | ], 197 | [ 198 | 0.000006, 199 | "l" 200 | ], 201 | [ 202 | 0.000003, 203 | "e" 204 | ], 205 | [ 206 | 0.000019, 207 | "t" 208 | ], 209 | [ 210 | 0.000004, 211 | "e" 212 | ], 213 | [ 214 | 0.000014, 215 | " " 216 | ], 217 | [ 218 | 0.000013, 219 | "r" 220 | ], 221 | [ 222 | 0.000013, 223 | "e" 224 | ], 225 | [ 226 | 0.000013, 227 | "p" 228 | ], 229 | [ 230 | 0.000013, 231 | "l" 232 | ], 233 | [ 234 | 0.000015, 235 | "i" 236 | ], 237 | [ 238 | 0.000013, 239 | "c" 240 | ], 241 | [ 242 | 0.000014, 243 | "a" 244 | ], 245 | [ 246 | 0.000013, 247 | "t" 248 | ], 249 | [ 250 | 0.000014, 251 | "i" 252 | ], 253 | [ 254 | 0.000014, 255 | "o" 256 | ], 257 | [ 258 | 0.000015, 259 | "n" 260 | ], 261 | [ 262 | 0.000023, 263 | "c" 264 | ], 265 | [ 266 | 0.000023, 267 | "o" 268 | ], 269 | [ 270 | 0.000019, 271 | "n" 272 | ], 273 | [ 274 | 0.000031, 275 | "t" 276 | ], 277 | [ 278 | 0.000022, 279 | "r" 280 | ], 281 | [ 282 | 0.000031, 283 | "o" 284 | ], 285 | [ 286 | 0.000004, 287 | "l" 288 | ], 289 | [ 290 | 0.000018, 291 | "l" 292 | ], 293 | [ 294 | 0.000015, 295 | "e" 296 | ], 297 | [ 298 | 0.000019, 299 | "r" 300 | ], 301 | [ 302 | 0.000015, 303 | "s" 304 | ], 305 | [ 306 | 0.000018, 307 | " " 308 | ], 309 | [ 310 | 0.000013, 311 | "j" 312 | ], 313 | [ 314 | 0.000018, 315 | "e" 316 | ], 317 | [ 318 | 0.000014, 319 | "n" 320 | ], 321 | [ 322 | 0.000016, 323 | "k" 324 | ], 325 | [ 326 | 0.000018, 327 | "i" 328 | ], 329 | [ 330 | 0.000018, 331 | "n" 332 | ], 333 | [ 334 | 0.000019, 335 | "s" 336 | ], 337 | [ 338 | 0.000016, 339 | "-" 340 | ], 341 | [ 342 | 0.000029, 343 | "s" 344 | ], 345 | [ 346 | 0.000020, 347 | "l" 348 | ], 349 | [ 350 | 0.000020, 351 | "a" 352 | ], 353 | [ 354 | 0.000017, 355 | "v" 356 | ], 357 | [ 358 | 0.000023, 359 | "e" 360 | ], 361 | [ 362 | 0.000005, 363 | "\r\n" 364 | ], 365 | [ 366 | 0.057775, 367 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 368 | ], 369 | [ 370 | 0.000119, 371 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl delete replicationcontrollers jenkins-slave\r\n" 372 | ], 373 | [ 374 | 1.000000, 375 | "jenkins-slave\r\n" 376 | ], 377 | [ 378 | 0.002196, 379 | "bash-3.2$ " 380 | ], 381 | [ 382 | 0.000014, 383 | "clu" 384 | ], 385 | [ 386 | 0.000008, 387 | "s" 388 | ], 389 | [ 390 | 0.000031, 391 | "te" 392 | ], 393 | [ 394 | 0.000009, 395 | "r" 396 | ], 397 | [ 398 | 0.000027, 399 | "/" 400 | ], 401 | [ 402 | 0.000009, 403 | "k" 404 | ], 405 | [ 406 | 0.000039, 407 | "u" 408 | ], 409 | [ 410 | 0.000008, 411 | "b" 412 | ], 413 | [ 414 | 0.000027, 415 | "e" 416 | ], 417 | [ 418 | 0.000008, 419 | "c" 420 | ], 421 | [ 422 | 0.000029, 423 | "t" 424 | ], 425 | [ 426 | 0.000008, 427 | "l" 428 | ], 429 | [ 430 | 0.000031, 431 | "." 432 | ], 433 | [ 434 | 0.000009, 435 | "s" 436 | ], 437 | [ 438 | 0.000028, 439 | "h" 440 | ], 441 | [ 442 | 0.000009, 443 | " " 444 | ], 445 | [ 446 | 0.000032, 447 | "d" 448 | ], 449 | [ 450 | 0.000008, 451 | "e" 452 | ], 453 | [ 454 | 0.000035, 455 | "l" 456 | ], 457 | [ 458 | 0.000008, 459 | "e" 460 | ], 461 | [ 462 | 0.000024, 463 | "t" 464 | ], 465 | [ 466 | 0.000017, 467 | "e" 468 | ], 469 | [ 470 | 0.000034, 471 | " " 472 | ], 473 | [ 474 | 0.000010, 475 | "p" 476 | ], 477 | [ 478 | 0.000026, 479 | "o" 480 | ], 481 | [ 482 | 0.000023, 483 | "d" 484 | ], 485 | [ 486 | 0.000024, 487 | "s" 488 | ], 489 | [ 490 | 0.000034, 491 | " " 492 | ], 493 | [ 494 | 0.000009, 495 | "j" 496 | ], 497 | [ 498 | 0.000036, 499 | "e" 500 | ], 501 | [ 502 | 0.000029, 503 | "n" 504 | ], 505 | [ 506 | 0.000014, 507 | "k" 508 | ], 509 | [ 510 | 0.000030, 511 | "i" 512 | ], 513 | [ 514 | 0.000022, 515 | "n" 516 | ], 517 | [ 518 | 0.000038, 519 | "s\r\n" 520 | ], 521 | [ 522 | 0.060157, 523 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 524 | ], 525 | [ 526 | 0.000112, 527 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl delete pods jenkins\r\n" 528 | ], 529 | [ 530 | 1.000000, 531 | "jenkins\r\n" 532 | ], 533 | [ 534 | 0.001756, 535 | "bash-3.2$ " 536 | ], 537 | [ 538 | 0.000008, 539 | "clu" 540 | ], 541 | [ 542 | 0.000004, 543 | "s" 544 | ], 545 | [ 546 | 0.000004, 547 | "t" 548 | ], 549 | [ 550 | 0.000014, 551 | "e" 552 | ], 553 | [ 554 | 0.000005, 555 | "r" 556 | ], 557 | [ 558 | 0.000022, 559 | "/" 560 | ], 561 | [ 562 | 0.000006, 563 | "ku" 564 | ], 565 | [ 566 | 0.000020, 567 | "b" 568 | ], 569 | [ 570 | 0.000006, 571 | "e" 572 | ], 573 | [ 574 | 0.000008, 575 | "c" 576 | ], 577 | [ 578 | 0.000018, 579 | "t" 580 | ], 581 | [ 582 | 0.000005, 583 | "l" 584 | ], 585 | [ 586 | 0.000017, 587 | "." 588 | ], 589 | [ 590 | 0.000018, 591 | "s" 592 | ], 593 | [ 594 | 0.000033, 595 | "h" 596 | ], 597 | [ 598 | 0.000021, 599 | " " 600 | ], 601 | [ 602 | 0.000006, 603 | "d" 604 | ], 605 | [ 606 | 0.000041, 607 | "el" 608 | ], 609 | [ 610 | 0.000005, 611 | "e" 612 | ], 613 | [ 614 | 0.000011, 615 | "t" 616 | ], 617 | [ 618 | 0.000021, 619 | "e" 620 | ], 621 | [ 622 | 0.000006, 623 | " " 624 | ], 625 | [ 626 | 0.000020, 627 | "s" 628 | ], 629 | [ 630 | 0.000018, 631 | "e" 632 | ], 633 | [ 634 | 0.000006, 635 | "r" 636 | ], 637 | [ 638 | 0.000024, 639 | "v" 640 | ], 641 | [ 642 | 0.000018, 643 | "i" 644 | ], 645 | [ 646 | 0.000019, 647 | "c" 648 | ], 649 | [ 650 | 0.000011, 651 | "e" 652 | ], 653 | [ 654 | 0.000013, 655 | "s" 656 | ], 657 | [ 658 | 0.000021, 659 | " " 660 | ], 661 | [ 662 | 0.000015, 663 | "j" 664 | ], 665 | [ 666 | 0.000016, 667 | "e" 668 | ], 669 | [ 670 | 0.000024, 671 | "n" 672 | ], 673 | [ 674 | 0.000006, 675 | "k" 676 | ], 677 | [ 678 | 0.000020, 679 | "i" 680 | ], 681 | [ 682 | 0.000023, 683 | "n" 684 | ], 685 | [ 686 | 0.000006, 687 | "s" 688 | ], 689 | [ 690 | 0.000005, 691 | "\r\n" 692 | ], 693 | [ 694 | 0.060479, 695 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 696 | ], 697 | [ 698 | 0.000121, 699 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl delete services jenkins\r\n" 700 | ], 701 | [ 702 | 1.000000, 703 | "jenkins\r\n" 704 | ], 705 | [ 706 | 0.002241, 707 | "bash-3.2$ c" 708 | ], 709 | [ 710 | 0.000013, 711 | "lus" 712 | ], 713 | [ 714 | 0.000007, 715 | "t" 716 | ], 717 | [ 718 | 0.000007, 719 | "e" 720 | ], 721 | [ 722 | 0.000027, 723 | "r" 724 | ], 725 | [ 726 | 0.000009, 727 | "/" 728 | ], 729 | [ 730 | 0.000007, 731 | "k" 732 | ], 733 | [ 734 | 0.000020, 735 | "u" 736 | ], 737 | [ 738 | 0.000033, 739 | "b" 740 | ], 741 | [ 742 | 0.000009, 743 | "e" 744 | ], 745 | [ 746 | 0.000006, 747 | "c" 748 | ], 749 | [ 750 | 0.000025, 751 | "t" 752 | ], 753 | [ 754 | 0.000008, 755 | "l" 756 | ], 757 | [ 758 | 0.000027, 759 | "." 760 | ], 761 | [ 762 | 0.000030, 763 | "s" 764 | ], 765 | [ 766 | 0.000009, 767 | "h" 768 | ], 769 | [ 770 | 0.000048, 771 | " " 772 | ], 773 | [ 774 | 0.000034, 775 | "d" 776 | ], 777 | [ 778 | 0.000009, 779 | "e" 780 | ], 781 | [ 782 | 0.000032, 783 | "l" 784 | ], 785 | [ 786 | 0.000025, 787 | "e" 788 | ], 789 | [ 790 | 0.000071, 791 | "t" 792 | ], 793 | [ 794 | 0.000033, 795 | "e" 796 | ], 797 | [ 798 | 0.000021, 799 | " " 800 | ], 801 | [ 802 | 0.000031, 803 | "s" 804 | ], 805 | [ 806 | 0.000036, 807 | "e" 808 | ], 809 | [ 810 | 0.000008, 811 | "r" 812 | ], 813 | [ 814 | 0.000037, 815 | "v" 816 | ], 817 | [ 818 | 0.000007, 819 | "i" 820 | ], 821 | [ 822 | 0.000032, 823 | "c" 824 | ], 825 | [ 826 | 0.000010, 827 | "e" 828 | ], 829 | [ 830 | 0.000054, 831 | "s " 832 | ], 833 | [ 834 | 0.000027, 835 | "j" 836 | ], 837 | [ 838 | 0.000034, 839 | "e" 840 | ], 841 | [ 842 | 0.000031, 843 | "n" 844 | ], 845 | [ 846 | 0.000008, 847 | "k" 848 | ], 849 | [ 850 | 0.000039, 851 | "i" 852 | ], 853 | [ 854 | 0.000032, 855 | "n" 856 | ], 857 | [ 858 | 0.000028, 859 | "s" 860 | ], 861 | [ 862 | 0.000027, 863 | "-" 864 | ], 865 | [ 866 | 0.000060, 867 | "s" 868 | ], 869 | [ 870 | 0.000029, 871 | "l" 872 | ], 873 | [ 874 | 0.000040, 875 | "a" 876 | ], 877 | [ 878 | 0.000029, 879 | "v" 880 | ], 881 | [ 882 | 0.000047, 883 | "e\r\n" 884 | ], 885 | [ 886 | 0.059730, 887 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 888 | ], 889 | [ 890 | 0.000105, 891 | "Running: cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl delete services jenkins-slave\r\n" 892 | ], 893 | [ 894 | 1.000000, 895 | "jenkins-slave\r\n" 896 | ], 897 | [ 898 | 0.002280, 899 | "bash-3.2$ " 900 | ], 901 | [ 902 | 1.000000, 903 | "c" 904 | ], 905 | [ 906 | 1.000000, 907 | "l" 908 | ], 909 | [ 910 | 0.224479, 911 | "u" 912 | ], 913 | [ 914 | 0.076127, 915 | "sterdb " 916 | ], 917 | [ 918 | 0.819852, 919 | "\u0008\u001b[K" 920 | ], 921 | [ 922 | 0.151955, 923 | "\u0008\u001b[K" 924 | ], 925 | [ 926 | 0.152191, 927 | "\u0008\u001b[K" 928 | ], 929 | [ 930 | 0.679851, 931 | "/" 932 | ], 933 | [ 934 | 0.568092, 935 | "k" 936 | ], 937 | [ 938 | 0.199813, 939 | "u" 940 | ], 941 | [ 942 | 0.073198, 943 | "\r\n" 944 | ], 945 | [ 946 | 0.000159, 947 | "kube-down.sh* kube-push.sh* kube-up.sh* kubectl.sh* \r\n" 948 | ], 949 | [ 950 | 0.000014, 951 | "bash-3.2$ cluster/kube" 952 | ], 953 | [ 954 | 1.000000, 955 | "-" 956 | ], 957 | [ 958 | 0.511849, 959 | "o" 960 | ], 961 | [ 962 | 0.463503, 963 | "\u0008\u001b[K" 964 | ], 965 | [ 966 | 0.072495, 967 | "d" 968 | ], 969 | [ 970 | 0.104072, 971 | "o" 972 | ], 973 | [ 974 | 0.112290, 975 | "wn.sh " 976 | ], 977 | [ 978 | 0.943717, 979 | "\r\n" 980 | ], 981 | [ 982 | 0.024002, 983 | "Bringing down cluster using provider: gce\r\n" 984 | ], 985 | [ 986 | 0.319899, 987 | "Project: gce-my-project\r\n" 988 | ], 989 | [ 990 | 0.000026, 991 | "Zone: us-central1-a\r\n" 992 | ], 993 | [ 994 | 1.000000, 995 | "Deleted [https://www.googleapis.com/compute/v1/projects/gce-my-project/global/firewalls/k8s-jenkins-fluentd-elasticsearch-logging].\r\n" 996 | ], 997 | [ 998 | 0.091817, 999 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 1000 | ], 1001 | [ 1002 | 0.000108, 1003 | "Running: cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl delete services elasticsearch-logging\r\n" 1004 | ], 1005 | [ 1006 | 1.000000, 1007 | "elasticsearch-logging\r\n" 1008 | ], 1009 | [ 1010 | 0.063785, 1011 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 1012 | ], 1013 | [ 1014 | 0.000152, 1015 | "Running: cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl delete services kibana-logging\r\n" 1016 | ], 1017 | [ 1018 | 1.000000, 1019 | "kibana-logging\r\n" 1020 | ], 1021 | [ 1022 | 0.002010, 1023 | "Bringing down cluster\r\n" 1024 | ], 1025 | [ 1026 | 1.000000, 1027 | "Managed instance group k8s-jenkins-minion-group is being deleted. Operation: operation-1426857489830-4a5228ff-0c54-484f-aa5d-05a704fa3581\r\n" 1028 | ], 1029 | [ 1030 | 1.000000, 1031 | "Deleted [https://www.googleapis.com/compute/v1/projects/gce-my-project/global/instanceTemplates/k8s-jenkins-minion-template].\r\n" 1032 | ], 1033 | [ 1034 | 1.000000, 1035 | "Updated [https://www.googleapis.com/compute/v1/projects/gce-my-project/zones/us-central1-a/instances/k8s-jenkins-master].\r\n" 1036 | ], 1037 | [ 1038 | 1.000000, 1039 | "Deleted [https://www.googleapis.com/compute/v1/projects/gce-my-project/zones/us-central1-a/instances/k8s-jenkins-master].\r\n" 1040 | ], 1041 | [ 1042 | 1.000000, 1043 | "\u001b[1;31mERROR:\u001b[0m (gcloud.compute.disks.delete) Some requests did not succeed:\r\n - The resource 'projects/gce-my-project/zones/us-central1-a/disks/k8s-jenkins-master-pd' was not found\r\n\r\n" 1044 | ], 1045 | [ 1046 | 1.000000, 1047 | "Deleted [https://www.googleapis.com/compute/v1/projects/gce-my-project/global/firewalls/k8s-jenkins-master-https].\r\n" 1048 | ], 1049 | [ 1050 | 1.000000, 1051 | "Deleted [https://www.googleapis.com/compute/v1/projects/gce-my-project/global/firewalls/k8s-jenkins-minion-all].\r\n" 1052 | ], 1053 | [ 1054 | 1.000000, 1055 | "Deleting routes k8s-jenkins-minion-5025 k8s-jenkins-minion-axrl\r\n" 1056 | ], 1057 | [ 1058 | 1.000000, 1059 | "Deleted [https://www.googleapis.com/compute/v1/projects/gce-my-project/global/routes/k8s-jenkins-minion-5025].\r\n" 1060 | ], 1061 | [ 1062 | 0.000174, 1063 | "Deleted [https://www.googleapis.com/compute/v1/projects/gce-my-project/global/routes/k8s-jenkins-minion-axrl].\r\n" 1064 | ], 1065 | [ 1066 | 1.000000, 1067 | "Deleted [https://www.googleapis.com/compute/v1/projects/gce-my-project/regions/us-central1/addresses/k8s-jenkins-master-ip].\r\n" 1068 | ], 1069 | [ 1070 | 0.110218, 1071 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 1072 | ], 1073 | [ 1074 | 0.000139, 1075 | "Running: cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl config unset clusters.gce-my-project_k8s-jenkins\r\n" 1076 | ], 1077 | [ 1078 | 0.095165, 1079 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 1080 | ], 1081 | [ 1082 | 0.000150, 1083 | "Running: cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl config unset users.gce-my-project_k8s-jenkins\r\n" 1084 | ], 1085 | [ 1086 | 0.056753, 1087 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 1088 | ], 1089 | [ 1090 | 0.000111, 1091 | "Running: cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl config unset contexts.gce-my-project_k8s-jenkins\r\n" 1092 | ], 1093 | [ 1094 | 0.048651, 1095 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 1096 | ], 1097 | [ 1098 | 0.000213, 1099 | "Running: cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl config view -o template --template={{ index . \"current-context\" }}\r\n" 1100 | ], 1101 | [ 1102 | 0.052493, 1103 | "current-context: \"gce-my-project_k8s-jenkins\"\r\n" 1104 | ], 1105 | [ 1106 | 0.000175, 1107 | "Running: cluster/../cluster/gce/../../cluster/../cluster/../cluster/gce/../../cluster/../platforms/darwin/amd64/kubectl config unset current-context\r\n" 1108 | ], 1109 | [ 1110 | 0.010844, 1111 | "Cleared config for gce-my-project_k8s-jenkins from /Users/csanchez/.kube/.kubeconfig\r\n" 1112 | ], 1113 | [ 1114 | 0.000124, 1115 | "Done\r\n" 1116 | ], 1117 | [ 1118 | 0.014460, 1119 | "bash-3.2$ " 1120 | ], 1121 | [ 1122 | 1.000000, 1123 | "g" 1124 | ], 1125 | [ 1126 | 0.000012, 1127 | "c" 1128 | ], 1129 | [ 1130 | 0.000022, 1131 | "lo" 1132 | ], 1133 | [ 1134 | 0.000006, 1135 | "u" 1136 | ], 1137 | [ 1138 | 0.000031, 1139 | "d" 1140 | ], 1141 | [ 1142 | 0.000057, 1143 | " " 1144 | ], 1145 | [ 1146 | 0.000008, 1147 | "c" 1148 | ], 1149 | [ 1150 | 0.000029, 1151 | "o" 1152 | ], 1153 | [ 1154 | 0.000017, 1155 | "mp" 1156 | ], 1157 | [ 1158 | 0.000025, 1159 | "u" 1160 | ], 1161 | [ 1162 | 0.000027, 1163 | "t" 1164 | ], 1165 | [ 1166 | 0.000014, 1167 | "e" 1168 | ], 1169 | [ 1170 | 0.000006, 1171 | " " 1172 | ], 1173 | [ 1174 | 0.000023, 1175 | "f" 1176 | ], 1177 | [ 1178 | 0.000013, 1179 | "i" 1180 | ], 1181 | [ 1182 | 0.000023, 1183 | "r" 1184 | ], 1185 | [ 1186 | 0.000024, 1187 | "e" 1188 | ], 1189 | [ 1190 | 0.000021, 1191 | "w" 1192 | ], 1193 | [ 1194 | 0.000065, 1195 | "a" 1196 | ], 1197 | [ 1198 | 0.000010, 1199 | "l" 1200 | ], 1201 | [ 1202 | 0.000024, 1203 | "l" 1204 | ], 1205 | [ 1206 | 0.000008, 1207 | "-" 1208 | ], 1209 | [ 1210 | 0.000031, 1211 | "r" 1212 | ], 1213 | [ 1214 | 0.000008, 1215 | "u" 1216 | ], 1217 | [ 1218 | 0.000060, 1219 | "l" 1220 | ], 1221 | [ 1222 | 0.000017, 1223 | "e" 1224 | ], 1225 | [ 1226 | 0.000007, 1227 | "s" 1228 | ], 1229 | [ 1230 | 0.000025, 1231 | " " 1232 | ], 1233 | [ 1234 | 0.000007, 1235 | "d" 1236 | ], 1237 | [ 1238 | 0.000019, 1239 | "e" 1240 | ], 1241 | [ 1242 | 0.000014, 1243 | "l" 1244 | ], 1245 | [ 1246 | 0.000017, 1247 | "e" 1248 | ], 1249 | [ 1250 | 0.000014, 1251 | "t" 1252 | ], 1253 | [ 1254 | 0.000006, 1255 | "e" 1256 | ], 1257 | [ 1258 | 0.000023, 1259 | " " 1260 | ], 1261 | [ 1262 | 0.000008, 1263 | "j" 1264 | ], 1265 | [ 1266 | 0.000023, 1267 | "e" 1268 | ], 1269 | [ 1270 | 0.000015, 1271 | "n" 1272 | ], 1273 | [ 1274 | 0.000020, 1275 | "k" 1276 | ], 1277 | [ 1278 | 0.000016, 1279 | "i" 1280 | ], 1281 | [ 1282 | 0.000019, 1283 | "n" 1284 | ], 1285 | [ 1286 | 0.000020, 1287 | "s" 1288 | ], 1289 | [ 1290 | 0.000019, 1291 | "-" 1292 | ], 1293 | [ 1294 | 0.000016, 1295 | "n" 1296 | ], 1297 | [ 1298 | 0.000023, 1299 | "o" 1300 | ], 1301 | [ 1302 | 0.000020, 1303 | "d" 1304 | ], 1305 | [ 1306 | 0.000024, 1307 | "e" 1308 | ], 1309 | [ 1310 | 0.000016, 1311 | "-" 1312 | ], 1313 | [ 1314 | 0.000011, 1315 | "m" 1316 | ], 1317 | [ 1318 | 0.000024, 1319 | "a" 1320 | ], 1321 | [ 1322 | 0.000023, 1323 | "s" 1324 | ], 1325 | [ 1326 | 0.000026, 1327 | "t" 1328 | ], 1329 | [ 1330 | 0.000026, 1331 | "e" 1332 | ], 1333 | [ 1334 | 0.000020, 1335 | "r" 1336 | ], 1337 | [ 1338 | 0.660418, 1339 | "\r\n" 1340 | ], 1341 | [ 1342 | 1.000000, 1343 | "The following firewalls will be deleted:\r\n - [jenkins-node-master]\r\n\r\nDo you want to continue (Y/n)? " 1344 | ], 1345 | [ 1346 | 0.854120, 1347 | "\r\n" 1348 | ], 1349 | [ 1350 | 0.000082, 1351 | "\r\n" 1352 | ], 1353 | [ 1354 | 1.000000, 1355 | "Deleted [https://www.googleapis.com/compute/v1/projects/gce-my-project/global/firewalls/jenkins-node-master].\r\n" 1356 | ], 1357 | [ 1358 | 0.046926, 1359 | "bash-3.2$ " 1360 | ], 1361 | [ 1362 | 1.000000, 1363 | "exit\r\n" 1364 | ] 1365 | ] 1366 | } -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | # Docker Compose definition for a one node Kubernetes cluster 2 | # Based on Docker Cookbook example 3 | # https://github.com/how2dock/docbook/ch05/docker 4 | etcd: 5 | image: gcr.io/google_containers/etcd:2.0.12 6 | net: "host" 7 | command: /usr/local/bin/etcd --addr=127.0.0.1:4001 --bind-addr=0.0.0.0:4001 --data-dir=/var/etcd/data 8 | master: 9 | image: gcr.io/google_containers/hyperkube:v1.1.3 10 | net: "host" 11 | pid: "host" 12 | privileged: true 13 | volumes: 14 | - /:/rootfs:ro 15 | - /sys:/sys:ro 16 | - /dev:/dev 17 | - /var/lib/docker/:/var/lib/docker:ro 18 | - /var/lib/kubelet/:/var/lib/kubelet:rw 19 | - /var/run:/var/run:rw 20 | - /var/run/docker.sock:/var/run/docker.sock 21 | command: /hyperkube kubelet --containerized --hostname-override="127.0.0.1" --address="0.0.0.0" --api-servers=http://localhost:8080 --config=/etc/kubernetes/manifests 22 | 23 | proxy: 24 | image: gcr.io/google_containers/hyperkube:v1.1.3 25 | net: "host" 26 | privileged: true 27 | command: /hyperkube proxy --master=http://127.0.0.1:8080 --v=2 28 | -------------------------------------------------------------------------------- /jenkins-master-aws.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: "v1" 3 | kind: "ReplicationController" 4 | metadata: 5 | name: "jenkins" 6 | labels: 7 | name: "jenkins" 8 | spec: 9 | replicas: 1 10 | template: 11 | metadata: 12 | name: "jenkins" 13 | labels: 14 | name: "jenkins" 15 | spec: 16 | containers: 17 | - name: "jenkins" 18 | image: "csanchez/jenkins-swarm:1.625.1-for-volumes" 19 | ports: 20 | - containerPort: 8080 21 | - containerPort: 50000 22 | volumeMounts: 23 | - name: "jenkins-data" 24 | mountPath: "/var/jenkins_home" 25 | livenessProbe: 26 | httpGet: 27 | path: / 28 | port: 8080 29 | initialDelaySeconds: 60 30 | timeoutSeconds: 5 31 | volumes: 32 | - name: "jenkins-data" 33 | awsElasticBlockStore: 34 | volumeID: "vol-002d2b99000000000" 35 | fsType: ext4 36 | 37 | -------------------------------------------------------------------------------- /jenkins-master-gke.yml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: "v1" 3 | kind: "ReplicationController" 4 | metadata: 5 | name: "jenkins" 6 | labels: 7 | name: "jenkins" 8 | spec: 9 | replicas: 1 10 | template: 11 | metadata: 12 | name: "jenkins" 13 | labels: 14 | name: "jenkins" 15 | spec: 16 | containers: 17 | - name: "jenkins" 18 | image: "csanchez/jenkins-swarm:1.625.1-for-volumes" 19 | ports: 20 | - containerPort: 8080 21 | - containerPort: 50000 22 | volumeMounts: 23 | - name: "jenkins-data" 24 | mountPath: "/var/jenkins_home" 25 | livenessProbe: 26 | httpGet: 27 | path: / 28 | port: 8080 29 | initialDelaySeconds: 60 30 | timeoutSeconds: 5 31 | volumes: 32 | - name: "jenkins-data" 33 | gcePersistentDisk: 34 | pdName: jenkins-data-disk 35 | fsType: ext4 36 | -------------------------------------------------------------------------------- /jenkins-master-vagrant.yml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: "v1" 3 | kind: "ReplicationController" 4 | metadata: 5 | name: "jenkins" 6 | labels: 7 | name: "jenkins" 8 | spec: 9 | replicas: 1 10 | template: 11 | metadata: 12 | name: "jenkins" 13 | labels: 14 | name: "jenkins" 15 | spec: 16 | containers: 17 | - 18 | name: "jenkins" 19 | image: "csanchez/jenkins-swarm:1.625.1-for-volumes" 20 | ports: 21 | - 22 | containerPort: 8080 23 | - 24 | containerPort: 50000 25 | volumeMounts: 26 | - 27 | name: "jenkins-data" 28 | mountPath: "/var/jenkins_home" 29 | livenessProbe: 30 | httpGet: 31 | path: / 32 | port: 8080 33 | initialDelaySeconds: 60 34 | timeoutSeconds: 5 35 | volumes: 36 | - 37 | name: "jenkins-data" 38 | hostPath: 39 | path: "/var/jenkins" 40 | -------------------------------------------------------------------------------- /jenkins-slaves-v2.yml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: "v1" 3 | kind: "ReplicationController" 4 | metadata: 5 | name: "jenkins-slave-v2" 6 | labels: 7 | name: "jenkins-slave" 8 | spec: 9 | replicas: 2 10 | template: 11 | metadata: 12 | name: "jenkins-slave" 13 | labels: 14 | name: "jenkins-slave-v2" 15 | spec: 16 | containers: 17 | - name: "jenkins-slave" 18 | image: "csanchez/jenkins-swarm-slave:2.0-net-tools" 19 | env: 20 | # these env vars are a hack only needed when running under docker-compose in one host 21 | # - 22 | # name: "JENKINS_SERVICE_HOST" 23 | # value: "10.0.2.15" 24 | # - 25 | # name: "JENKINS_SLAVE_SERVICE_HOST" 26 | # value: "10.0.2.15" 27 | command: 28 | - "/usr/local/bin/jenkins-slave.sh" 29 | - "-master" 30 | - "http://jenkins:$(JENKINS_SERVICE_PORT_HTTP)" 31 | - "-tunnel" 32 | - "jenkins:$(JENKINS_SERVICE_PORT_SLAVE)" 33 | - "-username" 34 | - "jenkins" 35 | - "-password" 36 | - "jenkins" 37 | - "-executors" 38 | - "1" 39 | livenessProbe: 40 | exec: 41 | command: 42 | - sh 43 | - -c 44 | - "netstat -tan | grep ESTABLISHED" 45 | initialDelaySeconds: 60 46 | timeoutSeconds: 1 47 | -------------------------------------------------------------------------------- /jenkins-slaves.yml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: "v1" 3 | kind: "ReplicationController" 4 | metadata: 5 | name: "jenkins-slave" 6 | labels: 7 | name: "jenkins-slave" 8 | spec: 9 | replicas: 1 10 | template: 11 | metadata: 12 | name: "jenkins-slave" 13 | labels: 14 | name: "jenkins-slave" 15 | spec: 16 | containers: 17 | - name: "jenkins-slave" 18 | image: "csanchez/jenkins-swarm-slave:2.0-net-tools" 19 | env: 20 | # these env vars are a hack only needed when running under docker-compose in one host 21 | # - 22 | # name: "JENKINS_SERVICE_HOST" 23 | # value: "10.0.2.15" 24 | # - 25 | # name: "JENKINS_SLAVE_SERVICE_HOST" 26 | # value: "10.0.2.15" 27 | command: 28 | - "/usr/local/bin/jenkins-slave.sh" 29 | - "-master" 30 | - "http://jenkins:$(JENKINS_SERVICE_PORT_HTTP)" 31 | - "-tunnel" 32 | - "jenkins:$(JENKINS_SERVICE_PORT_SLAVE)" 33 | - "-username" 34 | - "jenkins" 35 | - "-password" 36 | - "jenkins" 37 | - "-executors" 38 | - "1" 39 | livenessProbe: 40 | exec: 41 | command: 42 | - sh 43 | - -c 44 | - "netstat -tan | grep ESTABLISHED" 45 | initialDelaySeconds: 60 46 | timeoutSeconds: 1 47 | -------------------------------------------------------------------------------- /pod.json: -------------------------------------------------------------------------------- 1 | { 2 | "kind": "Pod", 3 | "apiVersion": "v1", 4 | "metadata": { 5 | "name": "jenkins", 6 | "labels": { 7 | "name": "jenkins" 8 | } 9 | }, 10 | "spec": { 11 | "containers": [ 12 | { 13 | "name": "jenkins", 14 | "image": "csanchez/jenkins-swarm:1.609.2", 15 | "ports": [ 16 | { 17 | "containerPort": 8080, 18 | "hostPort": 8090 19 | }, 20 | { 21 | "containerPort": 50000, 22 | "hostPort": 50000 23 | } 24 | ], 25 | "volumeMounts": [ 26 | { 27 | "name": "jenkins-data", 28 | "mountPath": "/var/jenkins_home" 29 | } 30 | ] 31 | } 32 | ], 33 | "volumes": [ 34 | { 35 | "name": "jenkins-data", 36 | "hostPath": { 37 | "path": "/home/docker/jenkins" 38 | } 39 | } 40 | ] 41 | } 42 | } -------------------------------------------------------------------------------- /replication-v2.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiVersion": "v1", 3 | "kind": "ReplicationController", 4 | "metadata": { 5 | "name": "jenkins-slave-v2", 6 | "labels": { 7 | "name": "jenkins-slave" 8 | } 9 | }, 10 | "spec": { 11 | "replicas": 2, 12 | "template": { 13 | "metadata": { 14 | "name": "jenkins-slave", 15 | "labels": { 16 | "name": "jenkins-slave-v2" 17 | } 18 | }, 19 | "spec": { 20 | "containers": [ 21 | { 22 | "name": "jenkins-slave", 23 | "image": "csanchez/jenkins-swarm-slave:2.0", 24 | "env": [ 25 | { 26 | "name": "NOTE", 27 | "value": "these env vars are only needed when running under docker-compose in one host" 28 | }, 29 | { 30 | "name": "JENKINS_SERVICE_HOST", 31 | "value": "10.0.2.15" 32 | }, 33 | { 34 | "name": "JENKINS_SLAVE_SERVICE_HOST", 35 | "value": "10.0.2.15" 36 | } 37 | ], 38 | "command": [ 39 | "/usr/local/bin/jenkins-slave.sh", 40 | "-master", 41 | "http://$(JENKINS_SERVICE_HOST):$(JENKINS_SERVICE_PORT)", 42 | "-tunnel", 43 | "$(JENKINS_SLAVE_SERVICE_HOST):$(JENKINS_SLAVE_SERVICE_PORT)", 44 | "-username", 45 | "jenkins", 46 | "-password", 47 | "jenkins", 48 | "-executors", 49 | "1" 50 | ] 51 | } 52 | ] 53 | } 54 | } 55 | } 56 | } -------------------------------------------------------------------------------- /replication.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiVersion": "v1", 3 | "kind": "ReplicationController", 4 | "metadata": { 5 | "name": "jenkins-slave", 6 | "labels": { 7 | "name": "jenkins-slave" 8 | } 9 | }, 10 | "spec": { 11 | "replicas": 1, 12 | "template": { 13 | "metadata": { 14 | "name": "jenkins-slave", 15 | "labels": { 16 | "name": "jenkins-slave" 17 | } 18 | }, 19 | "spec": { 20 | "containers": [ 21 | { 22 | "name": "jenkins-slave", 23 | "image": "csanchez/jenkins-swarm-slave:2.0", 24 | "env": [ 25 | { 26 | "name": "NOTE", 27 | "value": "these env vars are only needed when running under docker-compose in one host" 28 | }, 29 | { 30 | "name": "JENKINS_SERVICE_HOST", 31 | "value": "10.0.2.15" 32 | }, 33 | { 34 | "name": "JENKINS_SLAVE_SERVICE_HOST", 35 | "value": "10.0.2.15" 36 | } 37 | ], 38 | "command": [ 39 | "/usr/local/bin/jenkins-slave.sh", 40 | "-master", 41 | "http://$(JENKINS_SERVICE_HOST):$(JENKINS_SERVICE_PORT)", 42 | "-tunnel", 43 | "$(JENKINS_SLAVE_SERVICE_HOST):$(JENKINS_SLAVE_SERVICE_PORT)", 44 | "-username", 45 | "jenkins", 46 | "-password", 47 | "jenkins", 48 | "-executors", 49 | "1" 50 | ] 51 | } 52 | ] 53 | } 54 | } 55 | } 56 | } -------------------------------------------------------------------------------- /service-aws.yml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: "v1" 3 | kind: "Service" 4 | metadata: 5 | name: "jenkins" 6 | spec: 7 | type: "LoadBalancer" 8 | selector: 9 | name: "jenkins" 10 | ports: 11 | - 12 | name: "http" 13 | port: 80 14 | targetPort: 8080 15 | protocol: "TCP" 16 | - 17 | name: "slave" 18 | port: 50000 19 | protocol: "TCP" 20 | -------------------------------------------------------------------------------- /service-gke.yml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: "v1" 3 | kind: "Service" 4 | metadata: 5 | name: "jenkins" 6 | spec: 7 | type: "LoadBalancer" 8 | selector: 9 | name: "jenkins" 10 | ports: 11 | - 12 | name: "http" 13 | port: 80 14 | targetPort: 8080 15 | protocol: "TCP" 16 | - 17 | name: "slave" 18 | port: 50000 19 | protocol: "TCP" 20 | -------------------------------------------------------------------------------- /service-http.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiVersion": "v1", 3 | "kind": "Service", 4 | "metadata": { 5 | "name": "jenkins" 6 | }, 7 | "spec": { 8 | "type": "NodePort", 9 | "selector": { 10 | "name": "jenkins" 11 | }, 12 | "ports": [ 13 | { 14 | "name": "http", 15 | "port": 8090, 16 | "nodePort": 32080, 17 | "protocol": "TCP" 18 | } 19 | ] 20 | } 21 | } -------------------------------------------------------------------------------- /service-slave.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiVersion": "v1", 3 | "kind": "Service", 4 | "metadata": { 5 | "name": "jenkins-slave" 6 | }, 7 | "spec": { 8 | "type": "NodePort", 9 | "selector": { 10 | "name": "jenkins" 11 | }, 12 | "ports": [ 13 | { 14 | "name": "http", 15 | "port": 50000, 16 | "nodePort": 32050, 17 | "protocol": "TCP" 18 | } 19 | ] 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /service-vagrant.yml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: "v1" 3 | kind: "Service" 4 | metadata: 5 | name: "jenkins" 6 | spec: 7 | type: "NodePort" 8 | selector: 9 | name: "jenkins" 10 | ports: 11 | - 12 | name: "http" 13 | port: 8080 14 | protocol: "TCP" 15 | - 16 | name: "slave" 17 | port: 50000 18 | protocol: "TCP" 19 | --------------------------------------------------------------------------------