Skip to content

Commit 1bea253

Browse files
author
OpenShift Bot
authored
Merge pull request #1087 from spadgett/https-health-checks
Merged by openshift-bot
2 parents 6f0b723 + 0152a12 commit 1bea253

File tree

6 files changed

+28
-8
lines changed

6 files changed

+28
-8
lines changed

app/scripts/directives/editProbe.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ angular.module('openshiftConsole')
1515

1616
scope.types = [{
1717
id: 'httpGet',
18-
label: 'HTTP'
18+
label: 'HTTP GET'
1919
}, {
2020
id: 'exec',
2121
label: 'Container Command'

app/views/directives/_edit-probe.html

+12
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@
77
</ui-select>
88
</div>
99
<fieldset ng-if="selected.type === 'httpGet'">
10+
<div class="form-group">
11+
<div class="checkbox">
12+
<label>
13+
<input
14+
type="checkbox"
15+
ng-model="probe.httpGet.scheme"
16+
ng-true-value=" 'HTTPS' "
17+
ng-false-value=" 'HTTP' ">
18+
Use HTTPS
19+
</label>
20+
</div>
21+
</div>
1022
<div class="form-group">
1123
<label ng-attr-for="{{id}}-path">Path</label>
1224
<div>

app/views/directives/_probe.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- Make sure there is no whitespace before comma -->
22
<span ng-if="probe.httpGet">
3-
GET {{probe.httpGet.path || '/'}} on port {{probe.httpGet.port || 'unknown'}}
3+
GET {{probe.httpGet.path || '/'}} on port {{probe.httpGet.port || 'unknown'}} ({{probe.httpGet.scheme || 'HTTP'}})
44
</span>
55
<span ng-if="probe.exec.command">
66
<code class="command">

app/views/edit/health-checks.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ <h1>Health Checks: {{name}}</h1>
2626
<div ng-repeat="container in containers">
2727
<h2 ng-if="containers.length > 1">Container {{container.name}}</h2>
2828
<h3>Readiness Probe</h3>
29-
<div class="help-block" ng-if="$first">
29+
<div class="help-block mar-bottom-md" ng-if="$first">
3030
A readiness probe checks if the container is ready to handle requests. A
3131
failed readiness probe means that a container should not receive any traffic
3232
from a proxy, even if it's running.
@@ -45,7 +45,7 @@ <h3>Readiness Probe</h3>
4545
</p>
4646
</div>
4747
<h3>Liveness Probe</h3>
48-
<div class="help-block" ng-if="$first">
48+
<div class="help-block mar-bottom-md" ng-if="$first">
4949
A liveness probe checks if the container is still running. If the liveness
5050
probe fails, the container is killed.
5151
</div>

dist/scripts/scripts.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12444,7 +12444,7 @@ templateUrl:"views/directives/_edit-probe.html",
1244412444
link:function(a) {
1244512445
a.id = _.uniqueId("edit-probe-"), a.probe = a.probe || {}, a.types = [ {
1244612446
id:"httpGet",
12447-
label:"HTTP"
12447+
label:"HTTP GET"
1244812448
}, {
1244912449
id:"exec",
1245012450
label:"Container Command"

dist/scripts/templates.js

+11-3
Original file line numberDiff line numberDiff line change
@@ -5567,6 +5567,14 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
55675567
"</div>\n" +
55685568
"<fieldset ng-if=\"selected.type === 'httpGet'\">\n" +
55695569
"<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" +
55705578
"<label ng-attr-for=\"{{id}}-path\">Path</label>\n" +
55715579
"<div>\n" +
55725580
"<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(
56775685

56785686
$templateCache.put('views/directives/_probe.html',
56795687
" <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" +
56815689
"</span>\n" +
56825690
"<span ng-if=\"probe.exec.command\">\n" +
56835691
"<code class=\"command\">\n" +
@@ -9207,7 +9215,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
92079215
"<div ng-repeat=\"container in containers\">\n" +
92089216
"<h2 ng-if=\"containers.length > 1\">Container {{container.name}}</h2>\n" +
92099217
"<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" +
92119219
"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" +
92129220
"</div>\n" +
92139221
"<div ng-if=\"!container.readinessProbe\">\n" +
@@ -9221,7 +9229,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
92219229
"</p>\n" +
92229230
"</div>\n" +
92239231
"<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" +
92259233
"A liveness probe checks if the container is still running. If the liveness probe fails, the container is killed.\n" +
92269234
"</div>\n" +
92279235
"<div ng-if=\"!container.livenessProbe\">\n" +

0 commit comments

Comments
 (0)