Difference between revisions of "Kubernetes Container Lifecycle Events"

From wikieduonline
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
  
  
Official example:
+
== Official example ==
 
<pre>
 
<pre>
 
apiVersion: v1
 
apiVersion: v1
Line 36: Line 36:
 
</pre>
 
</pre>
  
 +
 +
== Related ==
 +
* [[Kubernetes Pod Lifecycle]]
  
 
== See also ==
 
== See also ==

Latest revision as of 08:24, 28 October 2022


Official example[edit]

apiVersion: v1

kind: Pod

metadata:

  name: lifecycle-demo

spec:

  containers:

  - name: lifecycle-demo-container

    image: nginx

    lifecycle:

      postStart:

        exec:

          command: ["/bin/sh", "-c", "echo Hello from the postStart handler > /usr/share/message"]

      preStop:

        exec:

          command: ["/bin/sh","-c","nginx -s quit; while killall -0 nginx; do sleep 1; done"]


Related[edit]

See also[edit]

Advertising: