Skip to content

Commit 52d760e

Browse files
authored
Update 15_pod_lifecycle.md
updating deploymentconfig->deployment
1 parent eb4d1c5 commit 52d760e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

101-lab/content/15_pod_lifecycle.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ oc -n [-dev] logs rocketchat-[username]-[pod-id] -c init
3939
## Lifecycle Hooks
4040
Lifecycle hooks can be configured to start and stop a container properly. The lifecycle hook is tied directly to each container. Add a similar pre and post hook as the `initContainer` to demonstrate when it executes in your rocketchat deployment.
4141

42-
- From the Web Console, navigate to the `rocketchat-[username]` deploymentconfig and click on `YAML` tab
42+
- From the Web Console, navigate to the `rocketchat-[username]` deployment and click on `YAML` tab
4343
- If you wish to perform this from the cli with the `oc` tool, type `oc edit deployment/rocketchat-[username]`
4444
- Add the following section of code under `spec: -> template: -> spec: -> containers`
4545
```
@@ -58,7 +58,7 @@ Lifecycle hooks can be configured to start and stop a container properly. The li
5858
## Overriding the Entrypoint
5959
It may be necessary, from time to time, to override the initial command/entrypoint of a container image. Generally this is used for troubleshooting purposes, or to override a vendor provided image.
6060

61-
- From the Web Console, navigate to the `rocketchat-[username]` deploymentconfig and click on `YAML` tab
61+
- From the Web Console, navigate to the `rocketchat-[username]` deployment and click on `YAML` tab
6262
- If you wish to perform this from the cli with the `oc` tool, type `oc edit deployment/rocketchat-[username]`
6363
- Add the following section of code under `spec: -> template: -> spec: -> containers`
6464

0 commit comments

Comments
 (0)