mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-05-06 00:46:56 +00:00
This was a request by @abuisine, so I'm flagging him for review :-) This section explains the challenges associated with self-hosting the control plane; and segues into static pods. It also mentions bootkube and the Pod Checkpointer. There is an exercise showing how to run a static pod.
11 lines
124 B
YAML
11 lines
124 B
YAML
apiVersion: v1
|
|
Kind: Pod
|
|
metadata:
|
|
name: hello
|
|
namespace: default
|
|
spec:
|
|
containers:
|
|
- name: hello
|
|
image: nginx
|
|
|