forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplates.js
13731 lines (13299 loc) · 738 KB
/
templates.js
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
angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function($templateCache) {
'use strict';
$templateCache.put('views/_alerts.html',
"<div ng-attr-row=\"{{toast}}\" ng-attr-wrap=\"{{toast}}\">\n" +
"<div ng-repeat=\"(alertID, alert) in (alerts | filterCollection : filter) track by (alertID + (alert.message || alert.details))\" ng-if=\"!alert.hidden\" class=\"alert-wrapper animate-repeat\" ng-class=\"{'animate-slide': animateSlide}\">\n" +
"<div class=\"alert word-break\" ng-class=\"{\n" +
" 'alert-danger': alert.type === 'error',\n" +
" 'alert-warning': alert.type === 'warning',\n" +
" 'alert-success': alert.type === 'success',\n" +
" 'alert-info': !alert.type || alert.type === 'info',\n" +
" 'toast-pf': toast,\n" +
" 'mar-left-sm': toast\n" +
" }\">\n" +
"<button ng-if=\"!hideCloseButton\" ng-click=\"close(alert)\" type=\"button\" class=\"close\">\n" +
"<span class=\"pficon pficon-close\" aria-hidden=\"true\"></span>\n" +
"<span class=\"sr-only\">Close</span>\n" +
"</button>\n" +
"<span class=\"pficon\" aria-hidden=\"true\" ng-class=\"{\n" +
" 'pficon-error-circle-o': alert.type === 'error',\n" +
" 'pficon-warning-triangle-o': alert.type === 'warning',\n" +
" 'pficon-ok': alert.type === 'success',\n" +
" 'pficon-info': !alert.type || alert.type === 'info'\n" +
" }\"></span>\n" +
"<span class=\"sr-only\">{{alert.type}}</span>\n" +
"<span ng-if=\"alert.message\" style=\"margin-right: 5px\" ng-class=\"{'strong': !toast}\">{{alert.message}}</span><span ng-if=\"alert.details\">{{alert.details}}</span>\n" +
"<span ng-repeat=\"link in alert.links\">\n" +
"<a ng-if=\"!link.href\" href=\"\" ng-click=\"onClick(alert, link)\" role=\"button\" ng-attr-target=\"{{link.target}}\">{{link.label}}</a>\n" +
"<a ng-if=\"link.href\" href=\"{{link.href}}\" ng-click=\"onClick(alert, link)\" ng-attr-target=\"{{link.target}}\">{{link.label}}</a>\n" +
"<span ng-if=\"!$last\" class=\"action-divider\">|</span>\n" +
"</span>\n" +
"</div>\n" +
"</div>\n" +
"</div>"
);
$templateCache.put('views/_build-trends-chart.html',
" <div class=\"build-trends-responsive\" aria-hidden=\"true\" ng-show=\"completeBuilds.length >= minBuilds()\">\n" +
"<div class=\"build-trends-container\">\n" +
"\n" +
"<div ng-attr-id=\"{{chartID}}\" class=\"build-trends-chart\"></div>\n" +
"\n" +
"<div ng-if=\"averageDurationText\" class=\"avg-duration pull-right\">\n" +
"<a href=\"\" ng-click=\"toggleAvgLine()\" title=\"Toggle average line\" role=\"button\" class=\"action-button\">\n" +
"<span class=\"avg-duration-text text-muted\">\n" +
"<svg width=\"25\" height=\"20\">\n" +
"<line class=\"build-trends-avg-line\" x1=\"0\" y1=\"10\" x2=\"25\" y2=\"10\"/>\n" +
"</svg>\n" +
"<span style=\"vertical-align: top\">Average: {{averageDurationText}}</span>\n" +
"</span>\n" +
"</a>\n" +
"</div>\n" +
"</div>\n" +
"</div>\n" +
"\n" +
"<div ng-if=\"completeBuilds.length < minBuilds()\" class=\"gutter-bottom\"></div>\n" +
"<div ng-if=\"averageDurationText\" class=\"sr-only\">\n" +
"Average build duration {{averageDurationText}}\n" +
"</div>"
);
$templateCache.put('views/_cannot-create-project.html',
"<span ng-if=\"!newProjectMessage\">A cluster admin can create a project for you by running the command\n" +
"<code>oc adm new-project <projectname> --admin={{user.metadata.name || '<YourUsername>'}}</code></span>\n" +
"<span ng-if=\"newProjectMessage\" ng-bind-html=\"newProjectMessage | linkify : '_blank'\" class=\"projects-instructions-link\"></span>"
);
$templateCache.put('views/_compute-resource.html',
"<ng-form name=\"form\">\n" +
"<fieldset class=\"form-inline compute-resource\">\n" +
"<label ng-if=\"label\">{{label}}</label>\n" +
"<div class=\"resource-size\" ng-class=\"{ 'has-error': form.$invalid }\">\n" +
"<div class=\"resource-amount\">\n" +
"<label class=\"sr-only\" ng-attr-for=\"{{id}}\">Amount</label>\n" +
"<input type=\"number\" name=\"amount\" ng-attr-id=\"{{id}}\" ng-model=\"input.amount\" min=\"0\" pattern=\"\\d+(\\.\\d+)?\" ng-attr-placeholder=\"{{placeholder}}\" select-on-focus class=\"form-control\" ng-attr-aria-describedby=\"{{description ? id + '-help' : undefined}}\">\n" +
"</div>\n" +
"<div class=\"resource-unit\">\n" +
"<label class=\"sr-only\" ng-attr-for=\"{{id}}-unit\">Unit</label>\n" +
"<ui-select search-enabled=\"false\" ng-model=\"input.unit\" input-id=\"{{id}}-unit\">\n" +
"<ui-select-match>{{$select.selected.label}}</ui-select-match>\n" +
"<ui-select-choices repeat=\"option.value as option in units\" group-by=\"groupUnits\">\n" +
"{{option.label}}\n" +
"</ui-select-choices>\n" +
"</ui-select>\n" +
"</div>\n" +
"</div>\n" +
"<div ng-if=\"description\" class=\"help-block\" ng-attr-id=\"{{id}}-help\">\n" +
"{{description}}\n" +
"</div>\n" +
"<div ng-if=\"form.$invalid\" class=\"has-error\">\n" +
"<div ng-if=\"form.amount.$error.number\" class=\"help-block\">\n" +
"Must be a number.\n" +
"</div>\n" +
"<div ng-if=\"form.amount.$error.min\" class=\"help-block\">\n" +
"Can't be negative.\n" +
"</div>\n" +
"<div ng-if=\"form.amount.$error.limitRangeMin\" class=\"help-block\">\n" +
"Can't be less than {{limitRangeMin | usageWithUnits : type}}.\n" +
"</div>\n" +
"<div ng-if=\"form.amount.$error.limitRangeMax\" class=\"help-block\">\n" +
"Can't be greater than {{limitRangeMax | usageWithUnits : type}}.\n" +
"</div>\n" +
"<div ng-if=\"form.amount.$error.limitLargerThanRequest\" class=\"help-block\">\n" +
"Limit can't be less than request ({{request | usageWithUnits : type}}).\n" +
"</div>\n" +
"<div ng-if=\"form.amount.$error.limitWithinRatio\" class=\"help-block\">\n" +
"<span ng-if=\"!input.amount && !defaultValue\">\n" +
"Limit is required if request is set. (Max Limit/Request Ratio: {{maxLimitRequestRatio}})\n" +
"</span>\n" +
"<span ng-if=\"input.amount || defaultValue\">\n" +
"Limit cannot be more than {{maxLimitRequestRatio}} times request value. (Request: {{request | usageWithUnits : type}},\n" +
"\n" +
"Limit: {{(input.amount ? (input.amount + input.unit) : defaultValue) | usageWithUnits : type}})\n" +
"</span>\n" +
"</div>\n" +
"</div>\n" +
"</fieldset>\n" +
"</ng-form>"
);
$templateCache.put('views/_config-file-params.html',
"<div ng-repeat=\"(serverName, data) in secretData.auths\" class=\"image-source-item\">\n" +
"<h3>{{serverName}}</h3>\n" +
"<dt ng-if-start=\"data.username\">username</dt>\n" +
"<dd ng-if-end class=\"word-break\">{{data.username}}</dd>\n" +
"<dt ng-if-start=\"data.password\">password</dt>\n" +
"<dd ng-if-end>\n" +
"<span ng-if=\"view.showSecret\">\n" +
"<copy-to-clipboard clipboard-text=\"data.password\" display-wide=\"true\"></copy-to-clipboard>\n" +
"</span>\n" +
"<span ng-if=\"!view.showSecret\">*****</span>\n" +
"</dd>\n" +
"<dt ng-if-start=\"data.email\">email</dt>\n" +
"<dd ng-if-end class=\"word-break\">{{data.email}}</dd>\n" +
"<div ng-if=\"!data.username && !data.password && !data.email\">\n" +
"No username and password.\n" +
"</div>\n" +
"</div>\n" +
"<h3 ng-if-start=\"secretData.credsStore\">Credentials Store</h3>\n" +
"<div ng-if-end>\n" +
"<span ng-if=\"view.showSecret\">\n" +
"<copy-to-clipboard clipboard-text=\"secretData.credsStore\" display-wide=\"true\"></copy-to-clipboard>\n" +
"</span>\n" +
"<span ng-if=\"!view.showSecret\">*****</span>\n" +
"</div>"
);
$templateCache.put('views/_container-statuses.html',
" <div ng-if=\"detailed && pod.status.initContainerStatuses.length\">\n" +
"<h4 class=\"mar-bottom-xl\" row ng-if=\"initContainersTerminated\">\n" +
"<span><i class=\"fa fa-check text-success\"></i></span>\n" +
"<span flex>\n" +
"<ng-pluralize count=\"pod.status.initContainerStatuses.length\" when=\"{'1': ' Init container {{pod.status.initContainerStatuses[0].name}}','other': ' {} init containers'}\">\n" +
"</ng-pluralize>\n" +
"completed successfully\n" +
"</span>\n" +
"<span ng-if=\"initContainersTerminated\">\n" +
"<a class=\"page-header-link\" href=\"\" ng-click=\"toggleInitContainer()\">\n" +
"<span ng-if=\"!expandInitContainers\">Show</span>\n" +
"<span ng-if=\"expandInitContainers\">Hide</span>\n" +
"Details\n" +
"</a>\n" +
"</span>\n" +
"</h4>\n" +
"<div class=\"animate-if\" ng-if=\"expandInitContainers\" ng-repeat=\"containerStatus in pod.status.initContainerStatuses track by containerStatus.name\">\n" +
"<h4 class=\"component-label\">Init container {{containerStatus.name}}</h4>\n" +
"<dl class=\"dl-horizontal left\">\n" +
"<dt>State:</dt>\n" +
"<dd>\n" +
"<kubernetes-object-describe-container-state container-state=\"containerStatus.state\"></kubernetes-object-describe-container-state>\n" +
"</dd>\n" +
"<dt ng-if=\"!(containerStatus.lastState | isEmptyObj)\">Last State</dt>\n" +
"<dd ng-if=\"!(containerStatus.lastState | isEmptyObj)\">\n" +
"<kubernetes-object-describe-container-state container-state=\"containerStatus.lastState\"></kubernetes-object-describe-container-state>\n" +
"</dd>\n" +
"<dt>Ready:</dt>\n" +
"<dd>{{containerStatus.ready}}</dd>\n" +
"<dt>Restart Count:</dt>\n" +
"<dd>{{containerStatus.restartCount}}</dd>\n" +
"</dl>\n" +
"</div>\n" +
"</div>\n" +
"<div ng-repeat=\"containerStatus in pod.status.containerStatuses track by containerStatus.name\">\n" +
"<h4>Container {{containerStatus.name}}</h4>\n" +
"<dl class=\"dl-horizontal left\">\n" +
"<dt>State:</dt>\n" +
"<dd>\n" +
"<kubernetes-object-describe-container-state container-state=\"containerStatus.state\"></kubernetes-object-describe-container-state>\n" +
"</dd>\n" +
"<dt ng-if=\"!(containerStatus.lastState | isEmptyObj)\">Last State</dt>\n" +
"<dd ng-if=\"!(containerStatus.lastState | isEmptyObj)\">\n" +
"<kubernetes-object-describe-container-state container-state=\"containerStatus.lastState\"></kubernetes-object-describe-container-state>\n" +
"</dd>\n" +
"<dt>Ready:</dt>\n" +
"<dd>{{containerStatus.ready}}</dd>\n" +
"<dt>Restart Count:</dt>\n" +
"<dd>{{containerStatus.restartCount}}</dd>\n" +
"<div ng-if=\"hasDebugTerminal && showDebugAction(containerStatus) && ('pods' | canI : 'create')\" class=\"debug-pod-action\">\n" +
"<a href=\"\" ng-click=\"debugTerminal(containerStatus.name)\" role=\"button\">Debug in Terminal</a>\n" +
"</div>\n" +
"</dl>\n" +
"</div>"
);
$templateCache.put('views/_edit-request-limit.html',
"<ng-form name=\"form\" ng-if=\"!requestCalculated || !limitCalculated\">\n" +
"<h3>\n" +
"{{type | computeResourceLabel : true}}\n" +
"<small ng-if=\"limits.min && limits.max\">\n" +
"{{limits.min | usageWithUnits : type}} min to {{limits.max | usageWithUnits : type}} max\n" +
"</small>\n" +
"<small ng-if=\"limits.min && !limits.max\">\n" +
"Min: {{limits.min | usageWithUnits : type}}\n" +
"</small>\n" +
"<small ng-if=\"limits.max && !limits.min\">\n" +
"Max: {{limits.max | usageWithUnits : type}}\n" +
"</small>\n" +
"</h3>\n" +
"\n" +
"<compute-resource ng-model=\"resources.requests[type]\" type=\"{{type}}\" label=\"Request\" description=\"The minimum amount of {{type | computeResourceLabel}} the container is guaranteed.\" default-value=\"limits.defaultRequest\" limit-range-min=\"limits.min\" limit-range-max=\"limits.max\" max-limit-request-ratio=\"limits.maxLimitRequestRatio\" ng-if=\"!requestCalculated\">\n" +
"</compute-resource>\n" +
"\n" +
"<compute-resource ng-model=\"resources.limits[type]\" type=\"{{type}}\" label=\"{{requestCalculated ? undefined : 'Limit'}}\" description=\"The maximum amount of {{type | computeResourceLabel}} the container is allowed to use when running.\" default-value=\"limits.defaultLimit\" limit-range-min=\"limits.min\" limit-range-max=\"limits.max\" request=\"requestCalculated ? undefined : resources.requests[type]\" max-limit-request-ratio=\"limits.maxLimitRequestRatio\" ng-if=\"!hideLimit\">\n" +
"</compute-resource>\n" +
"<div class=\"learn-more-block\">\n" +
"<a href=\"\" ng-click=\"showComputeUnitsHelp()\">What are\n" +
"<span ng-if=\"type === 'cpu'\">millicores</span><span ng-if=\"type === 'memory'\">MiB</span>?</a>\n" +
"</div>\n" +
"</ng-form>"
);
$templateCache.put('views/_image-names.html',
"<div class=\"text-prepended-icon\">\n" +
"<span class=\"pficon pficon-image\" aria-hidden=\"true\"></span>\n" +
"<span class=\"word-break-all\">{{podTemplate.spec.containers[0].image | imageStreamName}}\n" +
"<span ng-repeat=\"id in imageIDs\" title=\"{{id}}\">\n" +
"<span class=\"hash nowrap\">{{id | stripSHAPrefix | limitTo: 7}}</span><span ng-if=\"!$last\">,</span>\n" +
"</span>\n" +
"<span class=\"nowrap\" ng-if=\"podTemplate.spec.containers.length > 1\"> and {{podTemplate.spec.containers.length - 1}} other image<span ng-if=\"podTemplate.spec.containers.length > 2\">s</span></span>\n" +
"</span>\n" +
"</div>"
);
$templateCache.put('views/_init-containers-summary.html',
"<span ng-if=\"$ctrl.podTemplate.spec.initContainers.length\" class=\"text-muted small\">\n" +
"<ng-pluralize class=\"mar-right-sm\" count=\"$ctrl.podTemplate.spec.initContainers.length\" when=\"{'1': ' {} init container','other': ' {} init containers'}\">\n" +
"</ng-pluralize>\n" +
"<a ng-href=\"{{$ctrl.apiObject | navigateToTabURL:$ctrl.tab}}\">View Details</a>\n" +
"</span>"
);
$templateCache.put('views/_parse-error.html',
"<div ng-show=\"error && !hidden\" class=\"alert alert-danger animate-show\">\n" +
"<button ng-click=\"hidden = true\" type=\"button\" class=\"close\" aria-hidden=\"true\">\n" +
"<span class=\"pficon pficon-close\"></span>\n" +
"</button>\n" +
"<span class=\"pficon pficon-error-circle-o\"></span>\n" +
"<strong>Failed to process the resource.</strong>\n" +
"<div class=\"pre-wrap\" ng-if=\"error.message\">{{error.message}}</div>\n" +
"</div>"
);
$templateCache.put('views/_pod-template-container.html',
" <div class=\"pod-template\">\n" +
"<div class=\"component-label\"><span ng-bind-template=\"{{labelPrefix||'Container'}}:\"></span> {{container.name}}</div>\n" +
"<div row ng-if=\"container.image\" class=\"pod-template-image icon-row\">\n" +
"<div class=\"icon-wrap\">\n" +
"<span class=\"pficon pficon-image\" aria-hidden=\"true\"></span>\n" +
"</div>\n" +
"<div flex class=\"word-break\">\n" +
"<span class=\"pod-template-key\">Image:</span>\n" +
"<span ng-if=\"!imagesByDockerReference[container.image]\">{{container.image | imageStreamName}}</span>\n" +
"<span ng-if=\"imagesByDockerReference[container.image]\">\n" +
"<a ng-href=\"{{imagesByDockerReference[container.image].imageStreamName | navigateResourceURL : 'ImageStream' : imagesByDockerReference[container.image].imageStreamNamespace}}\">{{container.image | imageStreamName}}</a>\n" +
"<span class=\"hash\" title=\"{{imagesByDockerReference[container.image].metadata.name}}\">{{imagesByDockerReference[container.image].metadata.name | stripSHAPrefix | limitTo: 7}}</span>\n" +
"<span ng-if=\"imagesByDockerReference[container.image].dockerImageMetadata.Size\" class=\"small text-muted nowrap\">\n" +
"{{imagesByDockerReference[container.image].dockerImageMetadata.Size | humanizeSize}}\n" +
"</span>\n" +
"</span>\n" +
"</div>\n" +
"</div>\n" +
"<div ng-if=\"imagesByDockerReference && container.image && (image = imagesByDockerReference[container.image])\" class=\"pod-template-build\">\n" +
"<div row class=\"icon-row\" ng-if=\"build = (image | buildForImage : builds)\">\n" +
"<div class=\"icon-wrap\">\n" +
"<span class=\"fa fa-refresh\" aria-hidden=\"true\"></span>\n" +
"</div>\n" +
"<div flex class=\"word-break\">\n" +
"<span class=\"pod-template-key\">Build:</span>\n" +
"<span ng-if=\"build | configURLForResource\">\n" +
"<a ng-href=\"{{build | configURLForResource}}\">{{build | buildConfigForBuild}}</a>,\n" +
"</span>\n" +
"<a ng-href=\"{{build | navigateResourceURL}}\">\n" +
"<span ng-if=\"(build | annotation : 'buildNumber')\">#{{build | annotation : 'buildNumber'}}</span>\n" +
"<span ng-if=\"!(build | annotation : 'buildNumber')\">{{build.metadata.name}}</span>\n" +
"</a>\n" +
"</div>\n" +
"</div>\n" +
"<div row class=\"icon-row\" ng-if=\"build.spec.source\">\n" +
"<div class=\"icon-wrap\">\n" +
"<span class=\"fa fa-code\" aria-hidden=\"true\"></span>\n" +
"</div>\n" +
"<div flex class=\"word-break\">\n" +
"<span class=\"pod-template-key\">Source:</span>\n" +
"<span ng-switch=\"build.spec.source.type\">\n" +
"<span ng-switch-when=\"Git\">\n" +
"<span ng-if=\"build.spec.revision.git.commit\">\n" +
"{{build.spec.revision.git.message}}\n" +
"<osc-git-link class=\"hash\" uri=\"build.spec.source.git.uri\" ref=\"build.spec.revision.git.commit\">{{build.spec.revision.git.commit | limitTo:7}}</osc-git-link>\n" +
"<span ng-if=\"detailed && build.spec.revision.git.author\">\n" +
"authored by {{build.spec.revision.git.author.name}}\n" +
"</span>\n" +
"</span>\n" +
"<span ng-if=\"!build.spec.revision.git.commit\">\n" +
"<osc-git-link uri=\"build.spec.source.git.uri\">{{build.spec.source.git.uri}}</osc-git-link>\n" +
"</span>\n" +
"</span>\n" +
"<span ng-switch-default>\n" +
"{{build.spec.source.type || 'Unknown'}}\n" +
"</span>\n" +
"</span>\n" +
"</div>\n" +
"</div>\n" +
"</div>\n" +
"<div row ng-if=\"detailed && (container.command.length || container.args.length)\" class=\"icon-row\">\n" +
"<div class=\"icon-wrap\">\n" +
"<span aria-hidden=\"true\" class=\"fa fa-terminal\"></span>\n" +
"</div>\n" +
"<div flex class=\"word-break\">\n" +
"<span class=\"pod-template-key\">\n" +
"Command:\n" +
"</span>\n" +
"<span>\n" +
"<code class=\"command\">\n" +
"<truncate-long-text content=\"container | entrypoint : imagesByDockerReference[container.image]\" limit=\"80\" newline-limit=\"1\" expandable=\"true\" use-word-boundary=\"false\">\n" +
"</truncate-long-text>\n" +
"</code>\n" +
"</span>\n" +
"</div>\n" +
"</div>\n" +
"<div row ng-if=\"container.ports.length > 0\" class=\"pod-template-ports icon-row\">\n" +
"<div class=\"icon-wrap\">\n" +
"<span aria-hidden=\"true\" class=\"pficon pficon-port\"></span>\n" +
"</div>\n" +
"<div flex class=\"word-break\">\n" +
"<span class=\"pod-template-key\">Ports:</span>\n" +
"<span ng-repeat=\"port in container.ports | orderBy: 'containerPort' | limitToOrAll : detailed ? undefined : 1\">\n" +
"<span class=\"nowrap\">{{port.containerPort}}/{{port.protocol}}</span><span ng-if=\"port.name\"><span class=\"nowrap\"> ({{port.name}})</span></span><span ng-if=\"port.hostPort\"><span class=\"nowrap\"><span class=\"port-icon\"> →</span> {{port.hostPort}}</span></span><span ng-if=\"!$last\">, </span>\n" +
"</span>\n" +
"<span ng-if=\"!detailed && container.ports.length >= 2\">\n" +
"and {{container.ports.length - 1}}\n" +
"<span ng-if=\"container.ports.length > 2\">others</span>\n" +
"<span ng-if=\"container.ports.length === 2\">other</span>\n" +
"</span>\n" +
"</div>\n" +
"</div>\n" +
"<div row ng-if=\"detailed\" ng-repeat=\"mount in container.volumeMounts\" class=\"icon-row\">\n" +
"<div class=\"icon-wrap\">\n" +
"<span aria-hidden=\"true\" class=\"fa fa-database\"></span>\n" +
"</div>\n" +
"<div flex class=\"word-break\">\n" +
"<span class=\"pod-template-key\">Mount:</span>\n" +
"<span>\n" +
"{{mount.name}}<span ng-if=\"mount.subPath\">, subpath {{mount.subPath}}</span> → <span>{{mount.mountPath}}</span>\n" +
"<small class=\"text-muted\">{{mount | volumeMountMode : podTemplate.spec.volumes}}</small>\n" +
"</span>\n" +
"</div>\n" +
"</div>\n" +
"<div row ng-if=\"detailed && (container.resources.requests.cpu || container.resources.limits.cpu)\" class=\"icon-row\">\n" +
"<div class=\"icon-wrap\">\n" +
"<i class=\"fa fa-area-chart\" aria-hidden=\"true\"></i>\n" +
"</div>\n" +
"<div flex>\n" +
"<span class=\"pod-template-key\">CPU:</span>\n" +
"<span ng-if=\"container.resources.requests.cpu && container.resources.limits.cpu\">\n" +
"{{container.resources.requests.cpu | usageWithUnits: 'cpu'}} to {{container.resources.limits.cpu | usageWithUnits: 'cpu'}}\n" +
"</span>\n" +
"<span ng-if=\"!container.resources.requests.cpu\">\n" +
"{{container.resources.limits.cpu | usageWithUnits: 'cpu'}} limit\n" +
"</span>\n" +
"<span ng-if=\"!container.resources.limits.cpu\">\n" +
"{{container.resources.requests.cpu | usageWithUnits: 'cpu'}} requested\n" +
"</span>\n" +
"</div>\n" +
"</div>\n" +
"<div row ng-if=\"detailed && (container.resources.requests.memory || container.resources.limits.memory)\" class=\"icon-row\">\n" +
"<div class=\"icon-wrap\">\n" +
"<i class=\"fa fa-area-chart\" aria-hidden=\"true\"></i>\n" +
"</div>\n" +
"<div flex>\n" +
"<span class=\"pod-template-key\">Memory:</span>\n" +
"<span ng-if=\"container.resources.requests.memory && container.resources.limits.memory\">\n" +
"{{container.resources.requests.memory | usageWithUnits: 'memory'}} to {{container.resources.limits.memory | usageWithUnits: 'memory'}}\n" +
"</span>\n" +
"<span ng-if=\"!container.resources.requests.memory\">\n" +
"{{container.resources.limits.memory | usageWithUnits: 'memory'}} limit\n" +
"</span>\n" +
"<span ng-if=\"!container.resources.limits.memory\">\n" +
"{{container.resources.requests.memory | usageWithUnits: 'memory'}} requested\n" +
"</span>\n" +
"</div>\n" +
"</div>\n" +
"<div row ng-if=\"detailed && container.readinessProbe\" class=\"icon-row\">\n" +
"<div class=\"icon-wrap\">\n" +
"<i class=\"fa fa-medkit\" aria-hidden=\"true\"></i>\n" +
"</div>\n" +
"<div flex>\n" +
"<span class=\"pod-template-key\">Readiness Probe:</span>\n" +
"<probe probe=\"container.readinessProbe\"></probe>\n" +
"</div>\n" +
"</div>\n" +
"<div row ng-if=\"detailed && container.livenessProbe\" class=\"icon-row\">\n" +
"<div class=\"icon-wrap\">\n" +
"<i class=\"fa fa-medkit\" aria-hidden=\"true\"></i>\n" +
"</div>\n" +
"<div flex>\n" +
"<span class=\"pod-template-key\">Liveness Probe:</span>\n" +
"<probe probe=\"container.livenessProbe\"></probe>\n" +
"</div>\n" +
"</div>\n" +
"</div>"
);
$templateCache.put('views/_pod-template.html',
" <div ng-if=\"detailed && addHealthCheckUrl && !(podTemplate | hasHealthChecks)\" class=\"alert alert-info\">\n" +
"<span class=\"pficon pficon-info\" aria-hidden=\"true\"></span>\n" +
"<span ng-if=\"podTemplate.spec.containers.length === 1\">Container {{podTemplate.spec.containers[0].name}} does not have health checks</span>\n" +
"<span ng-if=\"podTemplate.spec.containers.length > 1\">Not all containers have health checks</span>\n" +
"to ensure your application is running correctly.\n" +
"<a ng-href=\"{{addHealthCheckUrl}}\" class=\"nowrap\">Add Health Checks</a>\n" +
"</div>\n" +
"<div ng-if=\"detailed && podTemplate.spec.initContainers.length\">\n" +
"<h4>Init Containers</h4>\n" +
"<div class=\"pod-template-container\">\n" +
"<div class=\"pod-template-block\" ng-repeat=\"container in podTemplate.spec.initContainers\">\n" +
"<pod-template-container pod-template-container=\"container\" images-by-docker-reference=\"imagesByDockerReference\" builds=\"builds\" detailed=\"detailed\" label-prefix=\"Init Container\"></pod-template-container>\n" +
"</div>\n" +
"</div>\n" +
"</div>\n" +
"<div>\n" +
"<h4 ng-if=\"detailed\">Containers</h4>\n" +
"<div class=\"pod-template-container\">\n" +
"<div class=\"pod-template-block\" ng-repeat=\"container in podTemplate.spec.containers\">\n" +
"<pod-template-container pod-template-container=\"container\" images-by-docker-reference=\"imagesByDockerReference\" builds=\"builds\" detailed=\"detailed\"></pod-template-container>\n" +
"<div extension-point extension-name=\"container-links\" extension-types=\"link dom\" extension-args=\"[container, podTemplate]\"></div>\n" +
"</div>\n" +
"</div>\n" +
"</div>"
);
$templateCache.put('views/_quota-usage-chart.html',
"<div ng-attr-id=\"{{chartID}}\" ng-style=\"{ width: width + 'px', height: height + 'px' }\" aria-hidden=\"true\">\n" +
"</div>"
);
$templateCache.put('views/_request-access.html',
"<p class=\"gutter-top\">\n" +
"If you need to create resources in this project, a project administrator can grant you additional access by running this command:\n" +
"</p>\n" +
"<code>oc policy add-role-to-user <role> {{user.metadata.name}} -n {{projectName}}</code>"
);
$templateCache.put('views/_sidebar.html',
"<div class=\"nav-pf-vertical nav-pf-vertical-with-sub-menus\" ng-class=\"{\n" +
" collapsed: nav.collapsed && !isMobile,\n" +
" 'hide-mobile-nav': !nav.showMobileNav && isMobile,\n" +
" 'hover-secondary-nav-pf': sidebar.secondaryOpen && !isMobile,\n" +
" 'show-mobile-nav': nav.showMobileNav && isMobile,\n" +
" 'show-mobile-secondary': nav.showMobileNav && sidebar.showMobileSecondary && isMobile\n" +
" }\" on-esc=\"closeNav()\">\n" +
"<nav ng-if=\"view.hasProject\" class=\"nav-vertical-primary\">\n" +
"<ul class=\"list-group\">\n" +
"\n" +
"<li ng-repeat=\"primaryItem in navItems\" ng-class=\"{\n" +
" active: primaryItem === activePrimary,\n" +
" 'is-hover': primaryItem.isHover,\n" +
" 'secondary-nav-item-pf': primaryItem.secondaryNavSections.length\n" +
" }\" ng-if=\"show(primaryItem)\" ng-mouseenter=\"onMouseEnter(primaryItem)\" ng-mouseleave=\"onMouseLeave(primaryItem)\" class=\"list-group-item\">\n" +
"<a ng-if=\"primaryItem.href\" ng-href=\"{{navURL(primaryItem.href)}}\" ng-click=\"itemClicked(primaryItem)\">\n" +
"<span title=\"{{primaryItem.label}}\" class=\"{{primaryItem.iconClass}}\" aria-hidden=\"true\"></span> <span class=\"list-group-item-value\">{{primaryItem.label}}</span> <span ng-if=\"nav.collapsed && !isMobile\" class=\"sr-only\">{{primaryItem.label}}</span>\n" +
"</a>\n" +
"<a ng-if=\"!primaryItem.href\" href=\"\" ng-click=\"itemClicked(primaryItem)\">\n" +
"<span title=\"{{primaryItem.label}}\" class=\"{{primaryItem.iconClass}}\" aria-hidden=\"true\"></span> <span class=\"list-group-item-value\">{{primaryItem.label}}</span> <span ng-if=\"nav.collapsed && !isMobile\" class=\"sr-only\">{{primaryItem.label}}</span>\n" +
"</a>\n" +
"\n" +
"<div ng-if=\"primaryItem.secondaryNavSections.length\" class=\"secondary-nav-item-pf\" ng-class=\"{\n" +
" 'mobile-nav-item-pf': primaryItem.mobileSecondary && isMobile\n" +
" }\">\n" +
"<div class=\"nav-pf-secondary-nav\">\n" +
"<div class=\"nav-item-pf-header\">\n" +
"<a href=\"\" class=\"secondary-collapse-toggle-pf\" ng-click=\"collapseMobileSecondary(primaryItem, $event)\" role=\"button\"><span class=\"sr-only\">Back</span></a>\n" +
"<span>{{primaryItem.label}}</span>\n" +
"</div>\n" +
"<ul class=\"list-group\">\n" +
"<li ng-repeat-start=\"secondarySection in primaryItem.secondaryNavSections\" ng-if=\"secondarySection.header\" class=\"nav-item-pf-header\">\n" +
"{{secondarySection.header}}\n" +
"</li>\n" +
"<li ng-repeat=\"secondaryItem in secondarySection.items\" ng-class=\"{ active: secondaryItem === activeSecondary }\" ng-if=\"show(secondaryItem)\" class=\"list-group-item\">\n" +
"<a ng-href=\"{{navURL(secondaryItem.href)}}\" ng-click=\"primaryItem.mobileSecondary = false;\">\n" +
"<span class=\"list-group-item-value\">{{secondaryItem.label}}</span>\n" +
"</a>\n" +
"</li>\n" +
"<li ng-repeat-end style=\"display:none\"></li>\n" +
"</ul>\n" +
"</div>\n" +
"</div>\n" +
"</li>\n" +
"</ul>\n" +
"</nav>\n" +
"\n" +
"<navbar-utility-mobile></navbar-utility-mobile>\n" +
"</div>"
);
$templateCache.put('views/_templateopt.html',
"<div class=\"template-options\" ng-form=\"paramForm\">\n" +
"<div ng-if=\"!isDialog && parameters.length\" class=\"flow\">\n" +
"<div class=\"flow-block\">\n" +
"<h2>Parameters</h2>\n" +
"</div>\n" +
"<div ng-show=\"canToggle\" class=\"flow-block right\">\n" +
"<a class=\"action action-inline\" href=\"\" ng-click=\"expand = false\" ng-show=\"expand\"><i class=\"pficon pficon-remove\"></i> Collapse</a>\n" +
"<a class=\"action action-inline\" href=\"\" ng-click=\"expand = true\" ng-hide=\"expand\"><i class=\"pficon pficon-edit\"></i> Edit Parameters</a>\n" +
"</div>\n" +
"</div>\n" +
"<div ng-transclude></div>\n" +
"<div class=\"form-group options\" ng-repeat=\"parameter in parameters\" ng-show=\"expand\" ng-init=\"paramID = 'param-' + $index\">\n" +
"<label ng-attr-for=\"{{paramID}}\" ng-attr-title=\"{{parameter.name}}\" ng-class=\"{required: parameter.required}\">{{parameter.displayName || parameter.name}}</label>\n" +
"<div class=\"parameter-input-wrapper\" ng-class=\"{\n" +
" 'has-error': (paramForm[paramID].$error.required && paramForm[paramID].$touched && !cleared),\n" +
" 'has-warning': isOnlyWhitespace(parameter.value)\n" +
" }\">\n" +
"<input ng-if=\"!expandedParameter\" ng-attr-id=\"{{paramID}}\" ng-attr-name=\"{{paramID}}\" class=\"form-control hide-ng-leave\" type=\"text\" placeholder=\"{{ parameter | parameterPlaceholder }}\" ng-model=\"parameter.value\" ng-required=\"parameter.required && !parameter.generate\" ng-blur=\"cleared = false\" ng-trim=\"false\" autocorrect=\"off\" autocapitalize=\"none\" spellcheck=\"false\" ng-attr-aria-describedby=\"{{parameter.description ? (paramID + '-description') : undefined}}\">\n" +
"<a href=\"\" ng-click=\"expandedParameter = !expandedParameter\" class=\"resize-input action-button\" data-toggle=\"tooltip\" data-trigger=\"hover\" dynamic-content=\"{{expandedParameter ? 'Collapse to a single line input. This may strip any new lines you have entered.' : 'Expand to enter multiple lines of content. This is required if you need to include newline characters.'}}\"><i class=\"fa\" ng-class=\"{'fa-expand': !expandedParemeter, 'fa-compress': expandedParameter}\" aria-hidden=\"true\" role=\"presentation\"/><span class=\"sr-only\" ng-if=\"expandedParameter\">Collapse to a single line input</span><span class=\"sr-only\" ng-if=\"!expandedParameter\">Expand to enter multiline input</span></a>\n" +
"<textarea ng-if=\"expandedParameter\" ng-attr-id=\"{{paramID}}\" ng-attr-name=\"{{paramID}}\" class=\"form-control hide-ng-leave\" placeholder=\"{{ parameter | parameterPlaceholder }}\" ng-model=\"parameter.value\" ng-required=\"parameter.required && !parameter.generate\" ng-blur=\"cleared = false\" ng-trim=\"false\" autocorrect=\"off\" autocapitalize=\"none\" spellcheck=\"false\" rows=\"6\" ng-attr-aria-describedby=\"{{parameter.description ? (paramID + '-description') : undefined}}\"></textarea>\n" +
"<div class=\"help-block\" ng-if=\"parameter.description\" ng-attr-id=\"{{paramID}}-description\">{{parameter.description}}</div>\n" +
"<div ng-show=\"paramForm[paramID].$error.required && paramForm[paramID].$touched && !cleared\" class=\"has-error\">\n" +
"<div class=\"help-block\">{{parameter.displayName || parameter.name}} is required.</div>\n" +
"</div>\n" +
"<div ng-show=\"isOnlyWhitespace(parameter.value)\" class=\"has-warning help-block\">\n" +
"The current value is \"{{parameter.value}}\", which is not empty.\n" +
"<span ng-if=\"parameter.generate\">This will prevent a value from being generated.</span>\n" +
"If this isn't what you want,\n" +
"<a href=\"\" ng-click=\"parameter.value=''; cleared = true; focus(paramID)\">clear the value</a>.\n" +
"</div>\n" +
"</div>\n" +
"</div>\n" +
"<ul class=\"list-unstyled env-variable-list\" ng-hide=\"expand\">\n" +
"<li class=\"options\" ng-repeat=\"parameter in parameters\" ng-init=\"paramID = 'param-' + $index\">\n" +
"<label for=\"\" class=\"key truncate\" ng-class=\"{required: parameter.required}\" ng-attr-title=\"{{ parameter.name }}\">{{parameter.name}}</label>\n" +
"<span class=\"value truncate\" ng-attr-title=\"{{parameter | parameterValue}}\">{{ parameter | parameterValue }}</span>\n" +
"<div class=\"help-block\" ng-if=\"parameter.description\">{{parameter.description}}</div>\n" +
"<div ng-show=\"paramForm[paramID].$error.required && paramForm[paramID].$touched\" class=\"has-error\">\n" +
"<div class=\"help-block\">{{parameter.name}} is required.</div>\n" +
"</div>\n" +
"</li>\n" +
"</ul>\n" +
"</div>"
);
$templateCache.put('views/_volume-claim-templates.html',
"<div class=\"pod-template-block\">\n" +
"<div ng-repeat=\"template in templates\" class=\"pod-template\">\n" +
"<div class=\"component-label\">Storage claim: {{template.metadata.name}}</div>\n" +
"<div row class=\"pod-template-image icon-row\">\n" +
"<div class=\"icon-wrap\">\n" +
"<span class=\"fa fa-lock\" aria-hidden=\"true\"></span>\n" +
"</div>\n" +
"<div flex class=\"word-break\">\n" +
"<span class=\"pod-template-key\">Access Modes:</span>\n" +
"<span ng-repeat=\"mode in template.spec.accessModes\">\n" +
"{{mode | sentenceCase }}<span ng-if=\"!$last\">, </span>\n" +
"</span>\n" +
"</div>\n" +
"</div>\n" +
"<div row class=\"pod-template-image icon-row\">\n" +
"<div class=\"icon-wrap\">\n" +
"<span class=\"fa fa-database\" aria-hidden=\"true\"></span>\n" +
"</div>\n" +
"<div flex class=\"word-break\">\n" +
"<span class=\"pod-template-key\">Capacity:</span>\n" +
"<span>\n" +
"{{template.spec.resources.requests.storage}}\n" +
"</span>\n" +
"</div>\n" +
"</div>\n" +
"<div row class=\"pod-template-image icon-row\" ng-if=\"template.spec.selector.matchLabels\">\n" +
"<div class=\"icon-wrap\">\n" +
"<span class=\"fa fa-tag\" aria-hidden=\"true\"></span>\n" +
"</div>\n" +
"<div flex class=\"word-break\">\n" +
"<span class=\"pod-template-key\">Selector:</span>\n" +
"<selector selector=\"template.spec.selector\"></selector>\n" +
"</div>\n" +
"</div>\n" +
"</div>\n" +
"</div>"
);
$templateCache.put('views/_volumes.html',
" <div ng-repeat=\"volume in volumes\">\n" +
"<h4>\n" +
"{{volume.name}}\n" +
"<span ng-if=\"canRemove\" class=\"header-actions\">\n" +
"<a href=\"\" ng-click=\"removeFn({volume: volume})\">Remove</a>\n" +
"</span>\n" +
"</h4>\n" +
"<dl class=\"dl-horizontal left\">\n" +
"<div ng-if=\"volume.secret\">\n" +
"<dt>Type:</dt>\n" +
"<dd>\n" +
"secret\n" +
"<span class=\"small text-muted\">(populated by a secret when the pod is created)</span>\n" +
"</dd>\n" +
"<dt>Secret:</dt>\n" +
"<dd>\n" +
"<span ng-if=\"'secrets' | canI : 'get'\">\n" +
"<a ng-href=\"{{volume.secret.secretName | navigateResourceURL : 'Secret' : namespace}}\">{{volume.secret.secretName}}</a>\n" +
"</span>\n" +
"<span ng-if=\"!('secrets' | canI : 'get')\">\n" +
"{{volume.secret.secretName}}\n" +
"</span>\n" +
"</dd>\n" +
"<div ng-repeat=\"item in volume.secret.items\">\n" +
"<dt>Key to File:</dt>\n" +
"<dd>{{item.key}} → {{item.path}}</dd>\n" +
"</div>\n" +
"</div>\n" +
"<div ng-if=\"volume.persistentVolumeClaim\">\n" +
"<dt>Type:</dt>\n" +
"<dd>\n" +
"persistent volume claim\n" +
"<span class=\"small text-muted\">(reference to a persistent volume claim)</span>\n" +
"</dd>\n" +
"<dt>Claim name:</dt>\n" +
"<dd><a ng-href=\"{{volume.persistentVolumeClaim.claimName | navigateResourceURL : 'PersistentVolumeClaim' : namespace}}\">{{volume.persistentVolumeClaim.claimName}}</a></dd>\n" +
"<dt>Mode:</dt>\n" +
"<dd>\n" +
"<span ng-if=\"volume.persistentVolumeClaim.readOnly\">read-only</span>\n" +
"<span ng-if=\"!volume.persistentVolumeClaim.readOnly\">read-write</span>\n" +
"</dd>\n" +
"</div>\n" +
"<div ng-if=\"volume.hostPath\">\n" +
"<dt>Type:</dt>\n" +
"<dd>\n" +
"host path\n" +
"<span class=\"small text-muted\">(bare host directory volume)</span>\n" +
"</dd>\n" +
"<dt>Path:</dt>\n" +
"<dd>{{volume.hostPath.path}}</dd>\n" +
"</div>\n" +
"<div ng-if=\"volume.emptyDir\">\n" +
"<dt>Type:</dt>\n" +
"<dd>\n" +
"empty dir\n" +
"<span class=\"small text-muted\">(temporary directory destroyed with the pod)</span>\n" +
"</dd>\n" +
"<dt>Medium:</dt>\n" +
"<dd>\n" +
"<span ng-if=\"!volume.emptyDir.medium\">node's default</span>\n" +
"<span ng-if=\"volume.emptyDir.medium\">{{volume.emptyDir.medium}}</span>\n" +
"</dd>\n" +
"</div>\n" +
"<div ng-if=\"volume.gitRepo\">\n" +
"<dt>Type:</dt>\n" +
"<dd>\n" +
"git repo\n" +
"<span class=\"small text-muted\">(pulled from git when the pod is created)</span>\n" +
"</dd>\n" +
"<dt>Repository:</dt>\n" +
"<dd>{{volume.gitRepo.repository}}</dd>\n" +
"<dt ng-if-start=\"volume.gitRepo.revision\">Revision:</dt>\n" +
"<dd ng-if-end>{{volume.gitRepo.revision}}</dd>\n" +
"</div>\n" +
"<div ng-if=\"volume.downwardAPI\">\n" +
"<dt>Type:</dt>\n" +
"<dd>\n" +
"downward API\n" +
"<span class=\"small text-muted\">(populated with information about the pod)</span>\n" +
"</dd>\n" +
"<div ng-repeat=\"item in volume.downwardAPI.items\">\n" +
"<dt>Volume File:</dt>\n" +
"<dd>{{item.fieldRef.fieldPath}} → {{item.path}}</dd>\n" +
"</div>\n" +
"</div>\n" +
"<div ng-if=\"volume.configMap\">\n" +
"<dt>Type:</dt>\n" +
"<dd>\n" +
"config map\n" +
"<span class=\"small text-muted\">(populated by a config map)</span>\n" +
"</dd>\n" +
"<dt>Config Map:</dt>\n" +
"<dd><a ng-href=\"{{volume.configMap.name | navigateResourceURL : 'ConfigMap' : namespace}}\">{{volume.configMap.name}}</a></dd>\n" +
"<div ng-repeat=\"item in volume.configMap.items\">\n" +
"<dt>Key to File:</dt>\n" +
"<dd>{{item.key}} → {{item.path}}</dd>\n" +
"</div>\n" +
"</div>\n" +
"</dl>\n" +
"</div>"
);
$templateCache.put('views/_webhook-trigger-cause.html',
"{{trigger.message === 'GitHub WebHook' ? 'GitHub webhook' : 'Generic webhook'}}: <span ng-if=\"trigger.githubWebHook.revision || trigger.genericWebHook.revision\"> {{trigger.githubWebHook.revision.git.message || trigger.genericWebHook.revision.git.message}}</span>\n" +
"<osc-git-link ng-if=\"trigger.githubWebHook.revision || trigger.genericWebHook.revision\" class=\"hash\" uri=\"build.spec.source.git.uri\" ref=\"trigger.githubWebHook.revision.git.commit || trigger.genericWebHook.revision.git.commit\">{{trigger.githubWebHook.revision.git.commit || trigger.genericWebHook.revision.git.commit | limitTo:7}}\n" +
"</osc-git-link>\n" +
"<span ng-if=\"trigger.githubWebHook.revision || trigger.genericWebHook.revision\">\n" +
"authored by {{trigger.githubWebHook.revision.git.author.name || trigger.genericWebHook.revision.git.author.name}},\n" +
"</span>\n" +
"<span ng-if=\"trigger.genericWebHook && !trigger.genericWebHook.revision\">\n" +
"no revision information,\n" +
"</span>\n" +
"<a href=\"\" ng-if=\"!showSecret\" ng-click=\"toggleSecret()\">Show Obfuscated Secret</a>\n" +
"<span ng-if=\"showSecret\">\n" +
"{{trigger.githubWebHook.secret || trigger.genericWebHook.secret}}\n" +
"</span>"
);
$templateCache.put('views/about.html',
"<div class=\"middle surface-shaded\">\n" +
"<div class=\"middle-content\">\n" +
"<div class=\"container gutter-top\">\n" +
"<div class=\"row\">\n" +
"<div class=\"col-md-12\">\n" +
"<div class=\"about\">\n" +
"<div class=\"row\">\n" +
"<div class=\"col-md-2 about-icon gutter-top hidden-sm hidden-xs\">\n" +
"<img src=\"images/openshift-logo.svg\"/>\n" +
"</div>\n" +
"<div class=\"col-md-9\">\n" +
"<h1>Red Hat OpenShift <span class=\"about-reg\">®</span></h1>\n" +
"<h2>About</h2>\n" +
"<p><a target=\"_blank\" href=\"https://openshift.com\">OpenShift</a> is Red Hat's Platform-as-a-Service (PaaS) that allows developers to quickly develop, host, and scale applications in a cloud environment.</p>\n" +
"<h2 id=\"version\">Version</h2>\n" +
"<dl class=\"dl-horizontal left\">\n" +
"<dt>OpenShift Master:</dt>\n" +
"<dd>{{version.master.openshift || 'unknown'}}</dd>\n" +
"<dt>Kubernetes Master:</dt>\n" +
"<dd>{{version.master.kubernetes || 'unknown'}}</dd>\n" +
"</dl>\n" +
"<p>The <a target=\"_blank\" ng-href=\"{{'welcome' | helpLink}}\">documentation</a> helps you learn about OpenShift and start exploring its features. From getting started with creating your first application to trying out more advanced build and deployment techniques, it provides guidance on setting up and managing your OpenShift environment as an application developer.</p>\n" +
"<p>With the OpenShift command line interface (CLI), you can create applications and manage OpenShift projects from a terminal. To get started using the CLI, visit <a href=\"command-line\">Command Line Tools</a>.\n" +
"</p>\n" +
"<h2>Account</h2>\n" +
"<p>You are currently logged in under the user account <strong>{{user.metadata.name}}</strong>.</p>\n" +
"</div>\n" +
"</div>\n" +
"</div>\n" +
"</div>\n" +
"</div>\n" +
"</div>\n" +
"</div> \n" +
"</div>"
);
$templateCache.put('views/add-config-volume.html',
"<div class=\"add-to-project middle surface-shaded\">\n" +
"<div class=\"container-fluid\">\n" +
"<div class=\"row\">\n" +
"<div class=\"col-md-10\">\n" +
"<breadcrumbs breadcrumbs=\"breadcrumbs\"></breadcrumbs>\n" +
"<div ng-if=\"!error && (!targetObject || !configMaps || !secrets)\">Loading...</div>\n" +
"<div ng-if=\"error\" class=\"empty-state-message text-center\">\n" +
"<h2>The {{kind | humanizeKind}} could not be loaded.</h2>\n" +
"<p>{{error | getErrorDetails}}</p>\n" +
"</div>\n" +
"<div ng-if=\"targetObject && configMaps && secrets\">\n" +
"<div ng-if=\"!configMaps.length && !secrets.length && !(configMapVersion | canI : 'create') && !(secretVersion | canI : 'create')\" class=\"empty-state-message empty-state-full-page text-center\">\n" +
"<h2>No config maps or secrets.</h2>\n" +
"<p>\n" +
"There are no config maps or secrets in project {{project | displayName}} to use as a volume for this {{kind | humanizeKind}}.\n" +
"</p>\n" +
"<p ng-if=\"targetObject\"><a ng-href=\"{{targetObject | navigateResourceURL}}\">Back to {{kind | humanizeKind}} {{name}}</a></p>\n" +
"</div>\n" +
"<div ng-if=\"configMaps.length || secrets.length || (configMapVersion | canI : 'create') || (secretVersion | canI : 'create')\" class=\"mar-top-xl\">\n" +
"<h1>Add Config Files to {{name}}</h1>\n" +
"<div class=\"help-block\">\n" +
"Add values from a config map or secret as volume. This will make the data available as files for {{kind | humanizeKind}} {{name}}.\n" +
"</div>\n" +
"<form name=\"forms.addConfigVolumeForm\" class=\"mar-top-lg\">\n" +
"<fieldset ng-disabled=\"disableInputs\">\n" +
"<div class=\"form-group\">\n" +
"<label class=\"required\">Source</label>\n" +
"<ui-select ng-model=\"attach.source\" ng-required=\"true\">\n" +
"<ui-select-match placeholder=\"Select config map or secret\">\n" +
"<span>\n" +
"{{$select.selected.metadata.name}}\n" +
"<small class=\"text-muted\">– {{$select.selected.kind | humanizeKind : true}}</small>\n" +
"</span>\n" +
"</ui-select-match>\n" +
"<ui-select-choices repeat=\"source in (configMaps.concat(secrets)) | filter : { metadata: { name: $select.search } } track by (source | uid)\" group-by=\"groupByKind\">\n" +
"<span ng-bind-html=\"source.metadata.name | highlight : $select.search\"></span>\n" +
"</ui-select-choices>\n" +
"</ui-select>\n" +
"<div ng-if=\"(configMapVersion | canI : 'create') || (secretVersion | canI : 'create')\" class=\"mar-top-md\">\n" +
"<span ng-if=\"configMapVersion | canI : 'create'\">\n" +
"<a ng-href=\"project/{{project.metadata.name}}/create-config-map\">Create Config Map</a>\n" +
"</span>\n" +
"<span ng-if=\"secretVersion | canI : 'create'\">\n" +
"<span ng-if=\"configMapVersion | canI : 'create'\" class=\"action-divider\" aria-hidden=\"true\">|</span>\n" +
"<a ng-href=\"project/{{project.metadata.name}}/create-secret\">Create Secret</a>\n" +
"</span>\n" +
"</div>\n" +
"<div class=\"help-block\">\n" +
"Pick the config source. Its data will be mounted as a volume in the container.\n" +
"</div>\n" +
"</div>\n" +
"<div class=\"form-group\">\n" +
"<label for=\"mount-path\" class=\"required\">Mount Path</label>\n" +
"<input id=\"mount-path\" class=\"form-control\" type=\"text\" name=\"mountPath\" ng-model=\"attach.mountPath\" required ng-pattern=\"/^\\/.*$/\" osc-unique=\"existingMountPaths\" placeholder=\"example: /data\" autocorrect=\"off\" autocapitalize=\"none\" spellcheck=\"false\" aria-describedby=\"mount-path-help\">\n" +
"<div>\n" +
"<span id=\"mount-path-help\" class=\"help-block\">\n" +
"Mount path for the volume.\n" +
"<span ng-if=\"!attach.pickKeys\">\n" +
"A file will be created in this directory for each key from the config map or secret. The file contents will be the value of the key.\n" +
"</span>\n" +
"</span>\n" +
"</div>\n" +
"<div class=\"has-error\" ng-show=\"forms.addConfigVolumeForm.mountPath.$error.pattern && forms.addConfigVolumeForm.mountPath.$touched\">\n" +
"<span class=\"help-block\">\n" +
"Mount path must be a valid path to a directory starting with <code>/</code>.\n" +
"</span>\n" +
"</div>\n" +
"<div class=\"has-error\" ng-show=\"forms.addConfigVolumeForm.mountPath.$error.oscUnique\">\n" +
"<span class=\"help-block\">\n" +
"The mount path is already used. Please choose another mount path.\n" +
"</span>\n" +
"</div>\n" +
"</div>\n" +
"<div class=\"form-group\">\n" +
"<div class=\"checkbox\">\n" +
"<label>\n" +
"<input id=\"select-keys\" type=\"checkbox\" ng-model=\"attach.pickKeys\" ng-disabled=\"!attach.source\" aria-describedby=\"select-keys-help\">\n" +
"Select specific keys and paths\n" +
"</label>\n" +
"<div id=\"select-keys-help\" class=\"help-block\">\n" +
"Add only certain keys or use paths that are different than the key names.\n" +
"</div>\n" +
"</div>\n" +
"</div>\n" +
"<div ng-if=\"attach.pickKeys && attach.source\" class=\"mar-bottom-md\">\n" +
"<h3>Keys and Paths</h3>\n" +
"<div class=\"help-block mar-bottom-md\">\n" +
"Select the keys to use and the file paths where each key will be exposed. The file paths are relative to the mount path. The contents of each file will be the value of the key.\n" +
"</div>\n" +
"<div ng-repeat=\"item in attach.items\">\n" +
"<div class=\"row\">\n" +
"<div class=\"form-group col-md-6\">\n" +
"<label class=\"required\">Key</label>\n" +
"<ui-select ng-model=\"item.key\" ng-required=\"true\">\n" +
"<ui-select-match placeholder=\"Pick a key\">\n" +
"{{$select.selected}}\n" +
"</ui-select-match>\n" +
"<ui-select-choices repeat=\"key in attach.source.data | keys | filter : $select.search\">\n" +
"<span ng-bind-html=\"key | highlight : $select.search\"></span>\n" +
"</ui-select-choices>\n" +
"</ui-select>\n" +
"</div>\n" +
"<div class=\"form-group col-md-6\">\n" +
"<label ng-attr-for=\"path-{{$id}}\" class=\"required\">Path</label>\n" +
"<input ng-attr-id=\"path-{{$id}}\" class=\"form-control\" ng-class=\"{ 'has-error': forms.addConfigVolumeForm['path-' + $id].$invalid && forms.addConfigVolumeForm['path-' + $id].$touched }\" type=\"text\" name=\"path-{{$id}}\" ng-model=\"item.path\" ng-pattern=\"RELATIVE_PATH_PATTERN\" required osc-unique=\"itemPaths\" placeholder=\"example: config/app.properties\" autocorrect=\"off\" autocapitalize=\"none\" spellcheck=\"false\">\n" +
"<div class=\"has-error\" ng-show=\"forms.addConfigVolumeForm['path-' + $id].$error.pattern\">\n" +
"<span class=\"help-block\">\n" +
"Path must be a relative path. It cannot start with <code>/</code> or contain <code>..</code> path elements.\n" +
"</span>\n" +
"</div>\n" +
"<div class=\"has-error\" ng-show=\"forms.addConfigVolumeForm['path-' + $id].$error.oscUnique\">\n" +
"<span class=\"help-block\">\n" +
"Paths must be unique.\n" +
"</span>\n" +
"</div>\n" +
"</div>\n" +
"</div>\n" +
"<div class=\"mar-bottom-md\">\n" +
"<a ng-hide=\"attach.items.length === 1\" href=\"\" ng-click=\"removeItem($index)\">Remove Item</a>\n" +
"<span ng-if=\"$last\">\n" +
"<span ng-hide=\"attach.items.length === 1\" class=\"action-divider\" aria-hidden=\"true\">|</span>\n" +
"<a href=\"\" ng-click=\"addItem()\">Add Item</a>\n" +
"</span>\n" +
"</div>\n" +
"</div>\n" +
"</div>\n" +
"<div ng-if=\"targetObject.spec.template.spec.containers.length > 1\">\n" +
"<h3 ng-class=\"{ hidden: attach.allContainers && !attach.pickKeys }\">Containers</h3>\n" +
"<div ng-if=\"attach.allContainers\">\n" +
"The volume will be mounted into all containers. You can\n" +
"<a href=\"\" ng-click=\"attach.allContainers = false\">select specific containers</a>\n" +
"instead.\n" +
"</div>\n" +
"<div ng-if=\"!attach.allContainers\" class=\"form-group\">\n" +
"<label class=\"sr-only required\">Containers</label>\n" +
"<select-containers ng-model=\"attach.containers\" pod-template=\"targetObject.spec.template\" ng-required=\"true\" help-text=\"Add the volume to the selected containers.\">\n" +
"</select-containers>\n" +
"</div>\n" +
"</div>\n" +
"<div class=\"button-group gutter-top gutter-bottom\">\n" +
"<button type=\"submit\" class=\"btn btn-primary btn-lg\" ng-click=\"addVolume()\" ng-disabled=\"forms.addConfigVolumeForm.$invalid || disableInputs\">Add</button>\n" +
"<a class=\"btn btn-default btn-lg\" role=\"button\" href=\"\" ng-click=\"cancel()\">Cancel</a>\n" +
"</div>\n" +
"</fieldset>\n" +
"</form>\n" +
"</div>\n" +
"</div>\n" +
"</div>\n" +
"</div>\n" +
"</div>\n" +
"</div>"
);
$templateCache.put('views/attach-pvc.html',
"<div class=\"add-to-project middle surface-shaded\">\n" +
"<div class=\"middle-content\">\n" +
"<div class=\"container-fluid\">\n" +
"<div class=\"row\">\n" +
"<div class=\"col-md-10\">\n" +
"<breadcrumbs breadcrumbs=\"breadcrumbs\"></breadcrumbs>\n" +
"<div ng-show=\"!pvcs || !attach.resource\">Loading...</div>\n" +
"<div ng-show=\"pvcs && !pvcs.length && attach.resource\" class=\"empty-state-message empty-state-full-page text-center\">\n" +
"<h2>No persistent volume claims.</h2>\n" +
"<p>\n" +
"A <b>persistent volume claim</b> is required to attach to this {{kind | humanizeKind}}, but none are loaded on this project.\n" +
"</p>\n" +
"<div ng-if=\"project && (pvcVersion | canI : 'create')\">\n" +
"<a ng-href=\"project/{{project.metadata.name}}/create-pvc\" class=\"btn btn-primary\">Create Storage</a>\n" +
"</div>\n" +
"<p ng-if=\"project && !(pvcVersion | canI : 'create')\">\n" +
"To claim storage from a persistent volume, refer to the documentation on <a target=\"_blank\" ng-href=\"{{'persistent_volumes' | helpLink}}\">using persistent volumes</a>.\n" +
"</p>\n" +
"<p ng-if=\"attach.resource\"><a ng-href=\"{{attach.resource | navigateResourceURL}}\">Back to {{kind | humanizeKind}} {{name}}</a></p>\n" +
"</div>\n" +
"<div ng-show=\"pvcs && pvcs.length && attach.resource\" class=\"mar-top-xl\">\n" +
"<h1>Add Storage to {{name}}</h1>\n" +
"<div class=\"help-block\">\n" +
"Add an existing persistent volume claim to the template of {{kind | humanizeKind}} {{name}}.\n" +
"</div>\n" +
"<form name=\"attachPVCForm\" class=\"mar-top-lg\">\n" +
"<fieldset ng-disabled=\"disableInputs\">\n" +
"<div class=\"form-group\">\n" +
"<label for=\"persistentVolumeClaim\" class=\"required\">Storage</label>\n" +
"<table style=\"margin-bottom:0;background-color:transparent\" class=\"table table-condensed table-borderless\">\n" +
"<tbody>\n" +
"<tr ng-repeat=\"pvc in pvcs track by (pvc | uid)\">\n" +
"<td style=\"padding-left:0\">\n" +
"<input type=\"radio\" name=\"persistentVolumeClaim\" ng-model=\"attach.persistentVolumeClaim\" ng-value=\"pvc\" aria-describedby=\"pvc-help\">\n" +
"</td>\n" +
"<td><a ng-href=\"{{pvc | navigateResourceURL}}\">{{pvc.metadata.name}}</a></td>\n" +
"<td ng-if=\"pvc.spec.volumeName\">{{pvc.status.capacity['storage'] | usageWithUnits: 'storage'}}</td>\n" +
"<td ng-if=\"!pvc.spec.volumeName\">{{pvc.spec.resources.requests['storage'] | usageWithUnits: 'storage'}}</td>\n" +
"<td>({{pvc.spec.accessModes | accessModes | join}})</td>\n" +
"<td>\n" +
"{{pvc.status.phase}}\n" +
"<span ng-if=\"pvc.spec.volumeName\">\n" +
"to volume <strong>{{pvc.spec.volumeName}}</strong>\n" +
"</span>\n" +
"</td>\n" +
"</tr>\n" +
"</tbody>\n" +
"</table>\n" +
"</div>\n" +
"<div ng-if=\"!(project && (pvcVersion | canI : 'create'))\" class=\"help-block\">\n" +
"Select storage to use.\n" +
"</div>\n" +
"<div ng-if=\"project && (pvcVersion | canI : 'create')\" class=\"help-block\">\n" +
"Select storage to use<span ng-if=\"!outOfClaims\"> or <a ng-href=\"project/{{project.metadata.name}}/create-pvc\">create storage</a>.</span>\n" +
"<span ng-if=\"outOfClaims\">. You cannot create new storage since you are at quota.</span>\n" +
"</div>\n" +
"<h3>Volume</h3>\n" +
"<div class=\"help-block\">\n" +
"Specify details about how volumes are going to be mounted inside containers.\n" +
"</div>\n" +
"<div class=\"form-group mar-top-xl\">\n" +
"<label for=\"mount-path\">Mount Path</label>\n" +
"<input id=\"mount-path\" class=\"form-control\" type=\"text\" name=\"mountPath\" ng-model=\"attach.mountPath\" ng-pattern=\"/^\\/.*$/\" osc-unique=\"existingMountPaths\" placeholder=\"example: /data\" autocorrect=\"off\" autocapitalize=\"none\" spellcheck=\"false\" aria-describedby=\"mount-path-help\">\n" +
"<div>\n" +
"<span id=\"mount-path-help\" class=\"help-block\">Mount path for the volume inside the container. If not specified, the volume will not be mounted automatically.</span>\n" +
"</div>\n" +
"<div class=\"has-error\" ng-show=\"attachPVCForm.mountPath.$error.pattern && attachPVCForm.mountPath.$touched\">\n" +
"<span class=\"help-block\">\n" +
"Mount path must be a valid path to a directory starting with <code>/</code>.\n" +
"</span>\n" +