-
Notifications
You must be signed in to change notification settings - Fork 8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create 05-Commands-and-Arguments-in-Kubernetes.md
- Loading branch information
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
.../05-Application-Lifecycle-Management/05-Commands-and-Arguments-in-Kubernetes.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Commands and Arguments in Kubernetes | ||
- Take me to [Videp Tutorial](https://kodekloud.com/courses/539883/lectures/9808202) | ||
|
||
In this section, we will take a look at commands and arguments in kubernetes | ||
|
||
- Anything that is appended to the docker run command will go into the **`args`** property of the pod defination file in the form of an array. | ||
- The command field corresponds to the entrypoint instruction in the Dockerfile so to summarize there are 2 fields that correspond to 2 instructions in the Dockerfile. | ||
|
||
![args](../../images/args.PNG) | ||
|
||
|