kube/pods
This commit is contained in:
parent
68dcc7dddf
commit
093f20e2e7
1 changed files with 34 additions and 4 deletions
|
@ -5,11 +5,41 @@ Kubernetes
|
|||
Pods
|
||||
====
|
||||
|
||||
Read
|
||||
----
|
||||
|
||||
.. code:: shell
|
||||
|
||||
ffmpeg \
|
||||
-i input.avi \
|
||||
-y output.mkv
|
||||
kubectl \
|
||||
get pods \
|
||||
-n my-namespace
|
||||
|
||||
Execute
|
||||
-------
|
||||
|
||||
.. code:: shell
|
||||
|
||||
kubectl \
|
||||
run my-pod \
|
||||
--image my-image \
|
||||
--restart Never \
|
||||
-n my-namespace
|
||||
|
||||
Write
|
||||
-----
|
||||
|
||||
.. code:: shell
|
||||
|
||||
kubectl edit \
|
||||
pod my-pod \
|
||||
-n my-namespace
|
||||
|
||||
.. code:: shell
|
||||
|
||||
kubectl delete \
|
||||
pod my-pod \
|
||||
-n my-namespace \
|
||||
--grace-period 0
|
||||
|
||||
Deployments
|
||||
===========
|
||||
|
@ -54,5 +84,5 @@ Create deployment
|
|||
app: my-app
|
||||
spec:
|
||||
containers:
|
||||
- name: my-containers
|
||||
- name: my-container
|
||||
image: my-image
|
||||
|
|
Loading…
Reference in a new issue