k8s-samples/CKA_Course/pods/sidecar.yaml
2022-08-16 21:59:58 -05:00

21 lines
478 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: sidecar-pod
spec:
containers:
- name: busybox1
image: busybox
command: ['sh', '-c', 'while true; do echo logs data > /output/output.log; sleep 5; done']
volumeMounts:
- name: sharedVol
mountPath: /output
- name: sidecar
image: busybox
command: ['sh', '-c', 'tail -f /intput/output.log']
volumeMounts:
- name: sharedVol
mountPath: /input
volumes:
- name: sharedVol
emptyDir: {}