| 123456789101112131415161718192021222324 |
- apiVersion: v1
- kind: Pod
- metadata:
- name: pod-volume
- spec:
- containers:
- - name: tomcat
- image: tomcat
- imagePullPolicy: IfNotPresent
- ports:
- - containerPort: 8080
- volumeMounts:
- - mountPath: /usr/local/tomcat/logs
- name: logs
- - name: busybox
- image: busybox
- imagePullPolicy: IfNotPresent
- command: ["sh", "-c", "tail -f /logs/catalina*.log"]
- volumeMounts:
- - mountPath: /logs
- name: logs
- volumes:
- - name: logs
- emptyDir: {}
|