File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed
docs/getting-started-guides Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -553,8 +553,10 @@ For each of these components, the steps to start them running are similar:
553
553
],
554
554
"livenessProbe": {
555
555
"httpGet": {
556
- "path": "/healthz",
557
- "port": 8080
556
+ "scheme": "HTTP",
557
+ "host": "127.0.0.1",
558
+ "port": 8080,
559
+ "path": "/healthz"
558
560
},
559
561
"initialDelaySeconds": 15,
560
562
"timeoutSeconds": 15
@@ -662,9 +664,10 @@ Complete this template for the scheduler pod:
662
664
],
663
665
"livenessProbe": {
664
666
"httpGet": {
667
+ "scheme": "HTTP",
665
668
"host": "127.0.0.1",
666
- "path ": "/healthz" ,
667
- "port ": 10251
669
+ "port ": 10251 ,
670
+ "path ": "/healthz"
668
671
},
669
672
"initialDelaySeconds": 15,
670
673
"timeoutSeconds": 15
@@ -717,9 +720,10 @@ Template for controller manager pod:
717
720
],
718
721
"livenessProbe": {
719
722
"httpGet": {
723
+ "scheme": "HTTP",
720
724
"host": "127.0.0.1",
721
- "path ": "/healthz" ,
722
- "port ": 10252
725
+ "port ": 10252 ,
726
+ "path ": "/healthz"
723
727
},
724
728
"initialDelaySeconds": 15,
725
729
"timeoutSeconds": 15
You can’t perform that action at this time.
0 commit comments