@@ -5567,6 +5567,14 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
5567
5567
"</div>\n" +
5568
5568
"<fieldset ng-if=\"selected.type === 'httpGet'\">\n" +
5569
5569
"<div class=\"form-group\">\n" +
5570
+ "<div class=\"checkbox\">\n" +
5571
+ "<label>\n" +
5572
+ "<input type=\"checkbox\" ng-model=\"probe.httpGet.scheme\" ng-true-value=\" 'HTTPS' \" ng-false-value=\" 'HTTP' \">\n" +
5573
+ "Use HTTPS\n" +
5574
+ "</label>\n" +
5575
+ "</div>\n" +
5576
+ "</div>\n" +
5577
+ "<div class=\"form-group\">\n" +
5570
5578
"<label ng-attr-for=\"{{id}}-path\">Path</label>\n" +
5571
5579
"<div>\n" +
5572
5580
"<input ng-attr-id=\"{{id}}-path\" ng-model=\"probe.httpGet.path\" type=\"text\" placeholder=\"/\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" class=\"form-control\">\n" +
@@ -5677,7 +5685,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
5677
5685
5678
5686
$templateCache.put('views/directives/_probe.html',
5679
5687
" <span ng-if=\"probe.httpGet\">\n" +
5680
- "GET {{probe.httpGet.path || '/'}} on port {{probe.httpGet.port || 'unknown'}}\n" +
5688
+ "GET {{probe.httpGet.path || '/'}} on port {{probe.httpGet.port || 'unknown'}} ({{probe.httpGet.scheme || 'HTTP'}}) \n" +
5681
5689
"</span>\n" +
5682
5690
"<span ng-if=\"probe.exec.command\">\n" +
5683
5691
"<code class=\"command\">\n" +
@@ -9207,7 +9215,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
9207
9215
"<div ng-repeat=\"container in containers\">\n" +
9208
9216
"<h2 ng-if=\"containers.length > 1\">Container {{container.name}}</h2>\n" +
9209
9217
"<h3>Readiness Probe</h3>\n" +
9210
- "<div class=\"help-block\" ng-if=\"$first\">\n" +
9218
+ "<div class=\"help-block mar-bottom-md \" ng-if=\"$first\">\n" +
9211
9219
"A readiness probe checks if the container is ready to handle requests. A failed readiness probe means that a container should not receive any traffic from a proxy, even if it's running.\n" +
9212
9220
"</div>\n" +
9213
9221
"<div ng-if=\"!container.readinessProbe\">\n" +
@@ -9221,7 +9229,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
9221
9229
"</p>\n" +
9222
9230
"</div>\n" +
9223
9231
"<h3>Liveness Probe</h3>\n" +
9224
- "<div class=\"help-block\" ng-if=\"$first\">\n" +
9232
+ "<div class=\"help-block mar-bottom-md \" ng-if=\"$first\">\n" +
9225
9233
"A liveness probe checks if the container is still running. If the liveness probe fails, the container is killed.\n" +
9226
9234
"</div>\n" +
9227
9235
"<div ng-if=\"!container.livenessProbe\">\n" +
0 commit comments