Difference between revisions of "Kubernetes Container Lifecycle Events"
Jump to navigation
Jump to search
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: