Skip to content

Commit f6b3f3f

Browse files
committed
Fixed Headings
1 parent e9ec03b commit f6b3f3f

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

docs/openshift/pods/health-checks/index.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Liveness and Readiness Probes
1+
# Health and Monitoring
2+
3+
## Liveness and Readiness Probes
24

35
A Probe is a diagnostic performed periodically by the kubelet on a Container. To perform a diagnostic, the kubelet calls a Handler implemented by the Container. There are three types of handlers:
46

@@ -14,21 +16,21 @@ The kubelet can optionally perform and react to three kinds of probes on running
1416

1517
***readinessProbe***: Indicates whether the Container is ready to service requests. Only runs at start.
1618

17-
## Resources
19+
### Resources
1820

1921
=== "OpenShift"
2022

21-
[Application Health :fontawesome-solid-globe:](https://docs.openshift.com/container-platform/4.12/applications/application-health.html){ .md-button target="_blank"}
23+
[Application Health :fontawesome-solid-globe:](https://docs.openshift.com/container-platform/4.14/applications/application-health.html){ .md-button target="_blank"}
2224

23-
[Virtual Machine Health :fontawesome-solid-globe:](https://docs.openshift.com/container-platform/4.12/virt/logging_events_monitoring/virt-monitoring-vm-health.html){ .md-button target="_blank"}
25+
[Virtual Machine Health :fontawesome-solid-globe:](https://docs.openshift.com/container-platform/4.14/virt/logging_events_monitoring/virt-monitoring-vm-health.html){ .md-button target="_blank"}
2426

2527
=== "Kubernetes"
2628

2729
[Container Probes :fontawesome-solid-globe:](https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#container-probes){ .md-button target="_blank"}
2830

2931
[Configure Probes :fontawesome-solid-globe:](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/){ .md-button target="_blank"}
3032

31-
## References
33+
### References
3234

3335
```yaml
3436
apiVersion: v1
@@ -190,17 +192,18 @@ spec:
190192
```
191193

192194
=== "Kubernetes"
193-
** Verify Metrics is enabled**
195+
196+
**Verify Metrics is enabled**
194197
```
195198
kubectl get --raw /apis/metrics.k8s.io/
196199
```
197200

198-
** Get Node Description **
201+
**Get Node Description**
199202
```
200203
kubectl describe node
201204
```
202205

203-
** Check Resource Useage **
206+
**Check Resource Usage**
204207
```
205208
kubectl top pods
206209
kubectl top nodes
@@ -214,5 +217,5 @@ spec:
214217

215218
| Task | Description | Link |
216219
| --------------------------------| ------------------ |:----------- |
217-
| *** Try It Yourself *** | | |
220+
| ***Try It Yourself*** | | |
218221
| Probes | Create some Health & Startup Probes to find what's causing an issue. | [Probes](../../../labs/kubernetes/lab4/index.md) |

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ nav:
7575
- openshift/pods/index.md
7676
- <div class="sub-section">Labels-Selectors</div>: openshift/pods/tagging/index.md
7777
- <div class="sub-section">Multi-Container</div>: openshift/pods/multi-container/index.md
78-
- <div class="sub-section">Health Checks</div>: openshift/pods/health-checks/index.md
78+
- <div class="sub-section">Health and Monitoring</div>: openshift/pods/health-checks/index.md
7979
- <div class="sub-section">Troubleshooting</div>: openshift/pods/troubleshooting/index.md
8080
- <div class="header">Configuration</div>:
8181
- openshift/configuration/index.md

0 commit comments

Comments
 (0)