forked from dsoffner/agile-integration-customers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyfuseprojecttemplate.yaml
2624 lines (2624 loc) · 114 KB
/
myfuseprojecttemplate.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
apiVersion: v1
kind: Template
metadata:
creationTimestamp: null
name: myfuselab-template
objects:
- apiVersion: v1
kind: DeploymentConfig
metadata:
annotations:
fabric8.io/iconUrl: img/icons/camel.svg
fabric8.io/metrics-path: dashboard/file/camel-routes.json/?var-project=camel-ose-springboot-xml&var-version=1.0.0-SNAPSHOT
creationTimestamp: null
generation: 1
labels:
app: camel-ose-springboot-xml
group: org.mycompany
provider: fabric8
version: 1.0.0-SNAPSHOT
name: camel-ose-springboot-xml
spec:
replicas: 1
revisionHistoryLimit: 2
selector:
app: camel-ose-springboot-xml
group: org.mycompany
provider: fabric8
strategy:
activeDeadlineSeconds: 21600
resources: {}
rollingParams:
intervalSeconds: 1
maxSurge: 25%
maxUnavailable: 25%
timeoutSeconds: 3600
updatePeriodSeconds: 1
type: Rolling
template:
metadata:
annotations:
fabric8.io/iconUrl: img/icons/camel.svg
fabric8.io/metrics-path: dashboard/file/camel-routes.json/?var-project=camel-ose-springboot-xml&var-version=1.0.0-SNAPSHOT
creationTimestamp: null
labels:
app: camel-ose-springboot-xml
group: org.mycompany
provider: fabric8
version: 1.0.0-SNAPSHOT
spec:
containers:
- env:
- name: SPRING_APPLICATION_JSON
value: '{"server":{"tomcat":{"max-threads":1}}}'
- name: KUBERNETES_NAMESPACE
valueFrom:
fieldRef:
apiVersion: v1
fieldPath: metadata.namespace
image: 172.30.1.1:5000/myfuseproject/camel-ose-springboot-xml@sha256:79b497270996978d0d6bc3bbc5219bba548d0c0ec7bf6594e9ed6c56a91e6785
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 3
httpGet:
path: /health
port: 8081
scheme: HTTP
initialDelaySeconds: 180
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
name: spring-boot
ports:
- containerPort: 8080
name: http
protocol: TCP
- containerPort: 9779
name: prometheus
protocol: TCP
- containerPort: 8778
name: jolokia
protocol: TCP
readinessProbe:
failureThreshold: 3
httpGet:
path: /health
port: 8081
scheme: HTTP
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
resources:
limits:
cpu: "1"
requests:
cpu: 200m
securityContext:
privileged: false
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
dnsPolicy: ClusterFirst
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
terminationGracePeriodSeconds: 30
test: false
triggers:
- type: ConfigChange
- imageChangeParams:
automatic: true
containerNames:
- spring-boot
from:
kind: ImageStreamTag
name: camel-ose-springboot-xml:latest
namespace: myfuseproject
type: ImageChange
status:
availableReplicas: 0
latestVersion: 0
observedGeneration: 0
replicas: 0
unavailableReplicas: 0
updatedReplicas: 0
- apiVersion: v1
kind: DeploymentConfig
metadata:
annotations:
openshift.io/generated-by: OpenShiftWebConsole
creationTimestamp: null
generation: 1
labels:
app: customersweb
name: customersweb
spec:
replicas: 3
selector:
deploymentconfig: customersweb
strategy:
activeDeadlineSeconds: 21600
resources: {}
rollingParams:
intervalSeconds: 1
maxSurge: 25%
maxUnavailable: 25%
timeoutSeconds: 600
updatePeriodSeconds: 1
type: Rolling
template:
metadata:
creationTimestamp: null
labels:
app: customersweb
deploymentconfig: customersweb
spec:
containers:
- image: 172.30.1.1:5000/myfuseproject/customersweb@sha256:e95d073a9f0079da928774c812cb282c91c3d46e035ceb60b8af873bbbc7f06a
imagePullPolicy: Always
name: customersweb
ports:
- containerPort: 8080
protocol: TCP
resources: {}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
dnsPolicy: ClusterFirst
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
terminationGracePeriodSeconds: 30
test: false
triggers:
- imageChangeParams:
automatic: true
containerNames:
- customersweb
from:
kind: ImageStreamTag
name: customersweb:latest
namespace: myfuseproject
type: ImageChange
- type: ConfigChange
status:
availableReplicas: 0
latestVersion: 0
observedGeneration: 0
replicas: 0
unavailableReplicas: 0
updatedReplicas: 0
- apiVersion: v1
kind: DeploymentConfig
metadata:
annotations:
template.alpha.openshift.io/wait-for-ready: "true"
creationTimestamp: null
generation: 1
labels:
template: mysql-ephemeral-template
name: mysql
spec:
replicas: 1
selector:
name: mysql
strategy:
activeDeadlineSeconds: 21600
recreateParams:
timeoutSeconds: 600
resources: {}
type: Recreate
template:
metadata:
creationTimestamp: null
labels:
name: mysql
spec:
containers:
- env:
- name: MYSQL_USER
valueFrom:
secretKeyRef:
key: database-user
name: mysql
- name: MYSQL_PASSWORD
valueFrom:
secretKeyRef:
key: database-password
name: mysql
- name: MYSQL_ROOT_PASSWORD
valueFrom:
secretKeyRef:
key: database-root-password
name: mysql
- name: MYSQL_DATABASE
valueFrom:
secretKeyRef:
key: database-name
name: mysql
image: registry.access.redhat.com/rhscl/mysql-57-rhel7@sha256:154cd19e9c2a9df09ad61ce61139b955499aecd2247eb32df299104c750c6feb
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 3
initialDelaySeconds: 30
periodSeconds: 10
successThreshold: 1
tcpSocket:
port: 3306
timeoutSeconds: 1
name: mysql
ports:
- containerPort: 3306
protocol: TCP
readinessProbe:
exec:
command:
- /bin/sh
- -i
- -c
- MYSQL_PWD="$MYSQL_PASSWORD" mysql -h 127.0.0.1 -u $MYSQL_USER -D $MYSQL_DATABASE
-e 'SELECT 1'
failureThreshold: 3
initialDelaySeconds: 5
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
resources:
limits:
memory: 512Mi
securityContext:
capabilities: {}
privileged: false
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /var/lib/mysql/data
name: mysql-data
dnsPolicy: ClusterFirst
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
terminationGracePeriodSeconds: 30
volumes:
- emptyDir: {}
name: mysql-data
test: false
triggers:
- imageChangeParams:
automatic: true
containerNames:
- mysql
from:
kind: ImageStreamTag
name: mysql:5.7
namespace: openshift
type: ImageChange
- type: ConfigChange
status:
availableReplicas: 0
latestVersion: 0
observedGeneration: 0
replicas: 0
unavailableReplicas: 0
updatedReplicas: 0
- apiVersion: v1
kind: BuildConfig
metadata:
creationTimestamp: null
labels:
app: camel-ose-springboot-xml
group: org.mycompany
provider: fabric8
version: 1.0.0-SNAPSHOT
name: camel-ose-springboot-xml-s2i
spec:
failedBuildsHistoryLimit: 5
nodeSelector: {}
output:
to:
kind: ImageStreamTag
name: camel-ose-springboot-xml:latest
postCommit: {}
resources: {}
runPolicy: Serial
source:
binary: {}
type: Binary
strategy:
sourceStrategy:
from:
kind: DockerImage
name: registry.access.redhat.com/fuse7/fuse-java-openshift
type: Source
successfulBuildsHistoryLimit: 5
triggers: []
status:
lastVersion: 0
- apiVersion: v1
kind: BuildConfig
metadata:
annotations:
openshift.io/generated-by: OpenShiftWebConsole
creationTimestamp: null
labels:
app: customersweb
name: customersweb
spec:
nodeSelector: null
output:
to:
kind: ImageStreamTag
name: customersweb:latest
postCommit: {}
resources: {}
runPolicy: Serial
source:
git:
ref: master
uri: https://github.com/mandibuswell/agile-integration-customers.git
type: Git
strategy:
sourceStrategy:
from:
kind: ImageStreamTag
name: nodejs:8
namespace: openshift
type: Source
triggers:
- imageChange: {}
type: ImageChange
- type: ConfigChange
- generic:
secret: c27d692e5de165fb
type: Generic
- github:
secret: 15404b31c0cd8ef6
type: GitHub
status:
lastVersion: 0
- apiVersion: v1
kind: Build
metadata:
annotations:
openshift.io/build-config.name: camel-ose-springboot-xml-s2i
openshift.io/build.number: "1"
openshift.io/build.pod-name: camel-ose-springboot-xml-s2i-1-build
creationTimestamp: null
labels:
app: camel-ose-springboot-xml
buildconfig: camel-ose-springboot-xml-s2i
group: org.mycompany
openshift.io/build-config.name: camel-ose-springboot-xml-s2i
openshift.io/build.start-policy: Serial
provider: fabric8
version: 1.0.0-SNAPSHOT
name: camel-ose-springboot-xml-s2i-1
ownerReferences:
- apiVersion: build.openshift.io/v1
controller: true
kind: BuildConfig
name: camel-ose-springboot-xml-s2i
uid: a3694d15-a1fa-11e8-8784-080027653811
spec:
nodeSelector: {}
output:
pushSecret:
name: builder-dockercfg-hlkdv
to:
kind: ImageStreamTag
name: camel-ose-springboot-xml:latest
postCommit: {}
resources: {}
serviceAccount: builder
source:
binary: {}
type: Binary
strategy:
sourceStrategy:
from:
kind: DockerImage
name: registry.access.redhat.com/fuse7/fuse-java-openshift
type: Source
triggeredBy: null
status:
config:
name: camel-ose-springboot-xml-s2i
output:
to:
imageDigest: sha256:00299a414b1231f5fd5a6fd3d1565cc76c310a1149006c37919c78e8b69c3d12
outputDockerImageReference: 172.30.1.1:5000/myfuseproject/camel-ose-springboot-xml:latest
phase: New
stages:
- durationMilliseconds: 7945
name: CommitContainer
startTime: 2018-08-17T08:54:46Z
steps:
- durationMilliseconds: 7945
name: CommitContainer
startTime: 2018-08-17T08:54:46Z
- durationMilliseconds: 33575
name: Assemble
startTime: 2018-08-17T08:54:21Z
steps:
- durationMilliseconds: 33575
name: AssembleBuildScripts
startTime: 2018-08-17T08:54:21Z
- durationMilliseconds: 119425
name: PushImage
startTime: 2018-08-17T08:54:55Z
steps:
- durationMilliseconds: 119425
name: PushImage
startTime: 2018-08-17T08:54:55Z
- apiVersion: v1
kind: Build
metadata:
annotations:
openshift.io/build-config.name: camel-ose-springboot-xml-s2i
openshift.io/build.number: "2"
openshift.io/build.pod-name: camel-ose-springboot-xml-s2i-2-build
creationTimestamp: null
labels:
app: camel-ose-springboot-xml
buildconfig: camel-ose-springboot-xml-s2i
group: org.mycompany
openshift.io/build-config.name: camel-ose-springboot-xml-s2i
openshift.io/build.start-policy: Serial
provider: fabric8
version: 1.0.0-SNAPSHOT
name: camel-ose-springboot-xml-s2i-2
ownerReferences:
- apiVersion: build.openshift.io/v1
controller: true
kind: BuildConfig
name: camel-ose-springboot-xml-s2i
uid: a3694d15-a1fa-11e8-8784-080027653811
spec:
nodeSelector: {}
output:
pushSecret:
name: builder-dockercfg-hlkdv
to:
kind: ImageStreamTag
name: camel-ose-springboot-xml:latest
postCommit: {}
resources: {}
serviceAccount: builder
source:
binary: {}
type: Binary
strategy:
sourceStrategy:
from:
kind: DockerImage
name: registry.access.redhat.com/fuse7/fuse-java-openshift
type: Source
triggeredBy: null
status:
config:
name: camel-ose-springboot-xml-s2i
output:
to:
imageDigest: sha256:8dcb94949509480e69cbf02ed5d4a117330a7d772eac01577d0dd891a54ea4ae
outputDockerImageReference: 172.30.1.1:5000/myfuseproject/camel-ose-springboot-xml:latest
phase: New
stages:
- durationMilliseconds: 14260
name: CommitContainer
startTime: 2018-08-17T09:00:11Z
steps:
- durationMilliseconds: 14260
name: CommitContainer
startTime: 2018-08-17T09:00:11Z
- durationMilliseconds: 31353
name: Assemble
startTime: 2018-08-17T08:59:56Z
steps:
- durationMilliseconds: 31353
name: AssembleBuildScripts
startTime: 2018-08-17T08:59:56Z
- durationMilliseconds: 16748
name: PushImage
startTime: 2018-08-17T09:00:27Z
steps:
- durationMilliseconds: 16748
name: PushImage
startTime: 2018-08-17T09:00:27Z
- apiVersion: v1
kind: Build
metadata:
annotations:
openshift.io/build-config.name: camel-ose-springboot-xml-s2i
openshift.io/build.number: "3"
openshift.io/build.pod-name: camel-ose-springboot-xml-s2i-3-build
creationTimestamp: null
labels:
app: camel-ose-springboot-xml
buildconfig: camel-ose-springboot-xml-s2i
group: org.mycompany
openshift.io/build-config.name: camel-ose-springboot-xml-s2i
openshift.io/build.start-policy: Serial
provider: fabric8
version: 1.0.0-SNAPSHOT
name: camel-ose-springboot-xml-s2i-3
ownerReferences:
- apiVersion: build.openshift.io/v1
controller: true
kind: BuildConfig
name: camel-ose-springboot-xml-s2i
uid: a3694d15-a1fa-11e8-8784-080027653811
spec:
nodeSelector: {}
output:
pushSecret:
name: builder-dockercfg-hlkdv
to:
kind: ImageStreamTag
name: camel-ose-springboot-xml:latest
postCommit: {}
resources: {}
serviceAccount: builder
source:
binary: {}
type: Binary
strategy:
sourceStrategy:
from:
kind: DockerImage
name: registry.access.redhat.com/fuse7/fuse-java-openshift
type: Source
triggeredBy: null
status:
config:
name: camel-ose-springboot-xml-s2i
output:
to:
imageDigest: sha256:50de0275e97594484eb2955fe7e941f236eed54d54314243d01a9ff84b74abe3
outputDockerImageReference: 172.30.1.1:5000/myfuseproject/camel-ose-springboot-xml:latest
phase: New
stages:
- durationMilliseconds: 21566
name: CommitContainer
startTime: 2018-08-17T09:13:37Z
steps:
- durationMilliseconds: 21566
name: CommitContainer
startTime: 2018-08-17T09:13:37Z
- durationMilliseconds: 47393
name: Assemble
startTime: 2018-08-17T09:13:14Z
steps:
- durationMilliseconds: 47393
name: AssembleBuildScripts
startTime: 2018-08-17T09:13:14Z
- durationMilliseconds: 22409
name: PushImage
startTime: 2018-08-17T09:14:02Z
steps:
- durationMilliseconds: 22409
name: PushImage
startTime: 2018-08-17T09:14:02Z
- apiVersion: v1
kind: Build
metadata:
annotations:
openshift.io/build-config.name: camel-ose-springboot-xml-s2i
openshift.io/build.number: "4"
openshift.io/build.pod-name: camel-ose-springboot-xml-s2i-4-build
creationTimestamp: null
labels:
app: camel-ose-springboot-xml
buildconfig: camel-ose-springboot-xml-s2i
group: org.mycompany
openshift.io/build-config.name: camel-ose-springboot-xml-s2i
openshift.io/build.start-policy: Serial
provider: fabric8
version: 1.0.0-SNAPSHOT
name: camel-ose-springboot-xml-s2i-4
ownerReferences:
- apiVersion: build.openshift.io/v1
controller: true
kind: BuildConfig
name: camel-ose-springboot-xml-s2i
uid: a3694d15-a1fa-11e8-8784-080027653811
spec:
nodeSelector: {}
output:
pushSecret:
name: builder-dockercfg-hlkdv
to:
kind: ImageStreamTag
name: camel-ose-springboot-xml:latest
postCommit: {}
resources: {}
serviceAccount: builder
source:
binary: {}
type: Binary
strategy:
sourceStrategy:
from:
kind: DockerImage
name: registry.access.redhat.com/fuse7/fuse-java-openshift
type: Source
triggeredBy: null
status:
config:
name: camel-ose-springboot-xml-s2i
output:
to:
imageDigest: sha256:79b497270996978d0d6bc3bbc5219bba548d0c0ec7bf6594e9ed6c56a91e6785
outputDockerImageReference: 172.30.1.1:5000/myfuseproject/camel-ose-springboot-xml:latest
phase: New
stages:
- durationMilliseconds: 14786
name: CommitContainer
startTime: 2018-08-17T09:20:16Z
steps:
- durationMilliseconds: 14786
name: CommitContainer
startTime: 2018-08-17T09:20:16Z
- durationMilliseconds: 53234
name: Assemble
startTime: 2018-08-17T09:19:40Z
steps:
- durationMilliseconds: 53234
name: AssembleBuildScripts
startTime: 2018-08-17T09:19:40Z
- durationMilliseconds: 21542
name: PushImage
startTime: 2018-08-17T09:20:33Z
steps:
- durationMilliseconds: 21542
name: PushImage
startTime: 2018-08-17T09:20:33Z
- apiVersion: v1
kind: Build
metadata:
annotations:
openshift.io/build-config.name: customersweb
openshift.io/build.number: "1"
openshift.io/build.pod-name: customersweb-1-build
creationTimestamp: null
labels:
app: customersweb
buildconfig: customersweb
openshift.io/build-config.name: customersweb
openshift.io/build.start-policy: Serial
name: customersweb-1
ownerReferences:
- apiVersion: build.openshift.io/v1
controller: true
kind: BuildConfig
name: customersweb
uid: dbfbfde3-a203-11e8-8784-080027653811
spec:
nodeSelector: null
output:
pushSecret:
name: builder-dockercfg-hlkdv
to:
kind: ImageStreamTag
name: customersweb:latest
postCommit: {}
resources: {}
revision:
git:
author:
email: [email protected]
name: mandibuswell
commit: 503a2dd2e725b7a38b1b7581ad912d0ca4f8bef2
committer:
email: [email protected]
name: GitHub
message: update ip address
type: Git
serviceAccount: builder
source:
git:
ref: master
uri: https://github.com/mandibuswell/agile-integration-customers.git
type: Git
strategy:
sourceStrategy:
from:
kind: DockerImage
name: registry.access.redhat.com/rhscl/nodejs-8-rhel7@sha256:7b26a9d8ace47e939a9fcdca61620dbe47d1b936e68983e252cca50991704c7c
type: Source
triggeredBy:
- imageChangeBuild:
fromRef:
kind: ImageStreamTag
name: nodejs:8
namespace: openshift
imageID: registry.access.redhat.com/rhscl/nodejs-8-rhel7@sha256:7b26a9d8ace47e939a9fcdca61620dbe47d1b936e68983e252cca50991704c7c
message: Image change
status:
config:
name: customersweb
output:
to:
imageDigest: sha256:e95d073a9f0079da928774c812cb282c91c3d46e035ceb60b8af873bbbc7f06a
outputDockerImageReference: 172.30.1.1:5000/myfuseproject/customersweb:latest
phase: New
stages:
- durationMilliseconds: 7279
name: FetchInputs
startTime: 2018-08-17T09:56:56Z
steps:
- durationMilliseconds: 7279
name: FetchGitSource
startTime: 2018-08-17T09:56:56Z
- durationMilliseconds: 4214
name: CommitContainer
startTime: 2018-08-17T09:58:26Z
steps:
- durationMilliseconds: 4214
name: CommitContainer
startTime: 2018-08-17T09:58:26Z
- durationMilliseconds: 29722
name: Assemble
startTime: 2018-08-17T09:58:01Z
steps:
- durationMilliseconds: 29722
name: AssembleBuildScripts
startTime: 2018-08-17T09:58:01Z
- durationMilliseconds: 61753
name: PushImage
startTime: 2018-08-17T09:58:31Z
steps:
- durationMilliseconds: 61753
name: PushImage
startTime: 2018-08-17T09:58:31Z
- apiVersion: v1
kind: ImageStream
metadata:
creationTimestamp: null
generation: 1
labels:
app: camel-ose-springboot-xml
group: org.mycompany
provider: fabric8
version: 1.0.0-SNAPSHOT
name: camel-ose-springboot-xml
spec:
lookupPolicy:
local: false
tags:
- annotations: null
from:
kind: DockerImage
name: 172.30.1.1:5000/myfuseproject/camel-ose-springboot-xml:latest
generation: null
importPolicy: {}
name: latest
referencePolicy:
type: ""
status:
dockerImageRepository: ""
- apiVersion: v1
kind: ImageStream
metadata:
annotations:
openshift.io/generated-by: OpenShiftWebConsole
creationTimestamp: null
generation: 1
labels:
app: customersweb
name: customersweb
spec:
lookupPolicy:
local: false
tags:
- annotations: null
from:
kind: DockerImage
name: 172.30.1.1:5000/myfuseproject/customersweb:latest
generation: null
importPolicy: {}
name: latest
referencePolicy:
type: ""
status:
dockerImageRepository: ""
- apiVersion: v1
kind: Route
metadata:
annotations:
openshift.io/host.generated: "true"
creationTimestamp: null
labels:
app: camel-ose-springboot-xml
expose: "true"
group: org.mycompany
provider: fabric8
version: 1.0.0-SNAPSHOT
name: camel-ose-springboot-xml
spec:
host: camel-ose-springboot-xml-myfuseproject.10.0.2.15.nip.io
port:
targetPort: 8080
to:
kind: Service
name: camel-ose-springboot-xml
weight: 100
wildcardPolicy: None
status:
ingress:
- conditions:
- lastTransitionTime: 2018-08-17T09:00:55Z
status: "True"
type: Admitted
host: camel-ose-springboot-xml-myfuseproject.10.0.2.15.nip.io
routerName: router
wildcardPolicy: None
- apiVersion: v1
kind: Route
metadata:
annotations:
openshift.io/generated-by: OpenShiftWebConsole
openshift.io/host.generated: "true"
creationTimestamp: null
labels:
app: customersweb
name: customersweb
spec:
host: customersweb-myfuseproject.10.0.2.15.nip.io
port:
targetPort: 8080-tcp
to:
kind: Service
name: customersweb
weight: 100
wildcardPolicy: None
status:
ingress:
- conditions:
- lastTransitionTime: 2018-08-17T09:56:49Z
status: "True"
type: Admitted
host: customersweb-myfuseproject.10.0.2.15.nip.io
routerName: router
wildcardPolicy: None
- apiVersion: v1
kind: Pod
metadata:
annotations:
fabric8.io/iconUrl: img/icons/camel.svg
fabric8.io/metrics-path: dashboard/file/camel-routes.json/?var-project=camel-ose-springboot-xml&var-version=1.0.0-SNAPSHOT
openshift.io/deployment-config.latest-version: "3"
openshift.io/deployment-config.name: camel-ose-springboot-xml
openshift.io/deployment.name: camel-ose-springboot-xml-3
openshift.io/scc: restricted
creationTimestamp: null
generateName: camel-ose-springboot-xml-3-
labels:
app: camel-ose-springboot-xml
deployment: camel-ose-springboot-xml-3
deploymentconfig: camel-ose-springboot-xml
group: org.mycompany
provider: fabric8
version: 1.0.0-SNAPSHOT
ownerReferences:
- apiVersion: v1
blockOwnerDeletion: true
controller: true
kind: ReplicationController
name: camel-ose-springboot-xml-3
uid: d8518657-a1fe-11e8-8784-080027653811
spec:
containers:
- env:
- name: SPRING_APPLICATION_JSON
value: '{"server":{"tomcat":{"max-threads":1}}}'
- name: KUBERNETES_NAMESPACE
valueFrom:
fieldRef:
apiVersion: v1
fieldPath: metadata.namespace
image: 172.30.1.1:5000/myfuseproject/camel-ose-springboot-xml@sha256:79b497270996978d0d6bc3bbc5219bba548d0c0ec7bf6594e9ed6c56a91e6785
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 3
httpGet:
path: /health
port: 8081
scheme: HTTP
initialDelaySeconds: 180
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
name: spring-boot
ports:
- containerPort: 8080
name: http
protocol: TCP
- containerPort: 9779
name: prometheus
protocol: TCP
- containerPort: 8778
name: jolokia
protocol: TCP
readinessProbe:
failureThreshold: 3
httpGet:
path: /health
port: 8081
scheme: HTTP
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
resources:
limits:
cpu: "1"
requests:
cpu: 200m
securityContext:
capabilities:
drop:
- KILL
- MKNOD
- SETGID
- SETUID
privileged: false
runAsUser: 1000090000
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /var/run/secrets/kubernetes.io/serviceaccount
name: default-token-kh2lm
readOnly: true
dnsPolicy: ClusterFirst
imagePullSecrets:
- name: default-dockercfg-84fsw
nodeName: localhost
restartPolicy: Always
schedulerName: default-scheduler
securityContext:
fsGroup: 1000090000
seLinuxOptions:
level: s0:c10,c0
serviceAccount: default
serviceAccountName: default
terminationGracePeriodSeconds: 30
tolerations:
- effect: NoSchedule
key: node.kubernetes.io/memory-pressure
operator: Exists
volumes:
- name: default-token-kh2lm
secret:
defaultMode: 420
secretName: default-token-kh2lm
status:
phase: Pending
qosClass: Burstable
- apiVersion: v1
kind: Pod
metadata:
annotations:
openshift.io/build.name: camel-ose-springboot-xml-s2i-1