Skip to content

Commit

Permalink
update openshift documentation to 4.15
Browse files Browse the repository at this point in the history
  • Loading branch information
snorwin committed Jun 24, 2024
1 parent 9c329cc commit 7cfe228
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/configmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/networking.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/pod.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
```
Expand Down

0 comments on commit 7cfe228

Please sign in to comment.