From 7cfe2284c3f535efb08fd8a530168561810ad846 Mon Sep 17 00:00:00 2001 From: Norwin Schnyder Date: Mon, 24 Jun 2024 07:31:33 +0000 Subject: [PATCH] update openshift documentation to 4.15 --- docs/configmap.md | 2 +- docs/deployment.md | 2 +- docs/networking.md | 2 +- docs/pod.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/configmap.md b/docs/configmap.md index 11b5da6..4d8b8ae 100644 --- a/docs/configmap.md +++ b/docs/configmap.md @@ -8,7 +8,7 @@ There are multiple approaches to achieve this: `ConfigMap` provides a mechanisms to inject containers with configuration data (entire files or single values) while keeping the containers unchanged. -_Check out the [OpenShift](https://docs.openshift.com/container-platform/4.9/applications/config-maps.html) or [Kubernetes](https://kubernetes.io/docs/concepts/configuration/configmap/) Documentation for more information about `ConfigMaps`._ +_Check out the [OpenShift](https://docs.openshift.com/container-platform/4.15/applications/config-maps.html) or [Kubernetes](https://kubernetes.io/docs/concepts/configuration/configmap/) Documentation for more information about `ConfigMaps`._ !!! note For each exercise you can choose and only have to do either the 'Web Console' or the 'Command Line diff --git a/docs/deployment.md b/docs/deployment.md index 6de7b08..272af19 100644 --- a/docs/deployment.md +++ b/docs/deployment.md @@ -6,7 +6,7 @@ The `ReplicaSet` ensures that specified number of `Pod` replicas are running all If a `Pod` crashes or is deleted the `ReplicaSet` creates new instances up to the defined number. Likewise, if there are more `Pods` running than desired, it deletes as many as necessary. -_Check out the [OpenShift](https://docs.openshift.com/container-platform/4.9/applications/deployments/what-deployments-are.html#deployments-repliasets_what-deployments-are) or [Kubernetes](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/) Documentation for more information about `Deployments` and `ReplicaSets`._ +_Check out the [OpenShift](https://docs.openshift.com/container-platform/4.15/applications/deployments/what-deployments-are.html#deployments-repliasets_what-deployments-are) or [Kubernetes](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/) Documentation for more information about `Deployments` and `ReplicaSets`._ !!! note For each exercise you can choose and only have to do either the 'Web Console' or the 'Command Line diff --git a/docs/networking.md b/docs/networking.md index 6e884f4..8c5c254 100644 --- a/docs/networking.md +++ b/docs/networking.md @@ -12,7 +12,7 @@ _Check out the [Kubernetes](https://kubernetes.io/docs/concepts/services-network ##Routes The `Route` allows to expose services through HTTP(S) via a public DNS entry. This is needed to make `Services` accessible from outside of the cluster. -_Check out the [OpenShift](https://docs.openshift.com/container-platform/4.9/rest_api/network_apis/route-route-openshift-io-v1.html) Documentation for more information about `Routes`._ +_Check out the [OpenShift](https://docs.openshift.com/container-platform/4.15/rest_api/network_apis/route-route-openshift-io-v1.html) Documentation for more information about `Routes`._ !!! note For each exercise you can choose and only have to do either the 'Web Console' or the 'Command Line diff --git a/docs/pod.md b/docs/pod.md index 85dd910..b9e0e55 100644 --- a/docs/pod.md +++ b/docs/pod.md @@ -76,7 +76,7 @@ deploy a `Pod` that runs a single container with the image `ubi9/httpd-24:latest image: ubi9/httpd-24:latest ``` _More detailed information about the `Pod` definition file can be found in the - [OpenShift](https://docs.openshift.com/container-platform/4.9/nodes/pods/nodes-pods-using.html#nodes-pods-using-example_nodes-pods-using-ssy) or [Kubernetes](https://kubernetes.io/docs/concepts/workloads/pods/) Documentation._ + [OpenShift](https://docs.openshift.com/container-platform/4.15/nodes/pods/nodes-pods-using.html#nodes-pods-using-example_nodes-pods-using-ssy) or [Kubernetes](https://kubernetes.io/docs/concepts/workloads/pods/) Documentation._ 2. Create a `Pod` by using the `oc apply` command. ```