mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
25 lines
500 B
YAML
25 lines
500 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: javaweb
|
|
spec:
|
|
containers:
|
|
- image: resouer/sample:v1
|
|
name: war
|
|
volumeMounts:
|
|
- mountPath: /app
|
|
name: app-volume
|
|
- image: resouer/mytomcat:7.0
|
|
name: tomcat
|
|
command: ["sh","-c","/root/apache-tomcat-7.0.42-v2/bin/start.sh"]
|
|
volumeMounts:
|
|
- mountPath: /root/apache-tomcat-7.0.42-v2/webapps
|
|
name: app-volume
|
|
ports:
|
|
- containerPort: 8080
|
|
hostPort: 8001
|
|
volumes:
|
|
- name: app-volume
|
|
emptyDir: {}
|
|
|