8e5b17cf13
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
31 lines
636 B
YAML
31 lines
636 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: javaweb-2
|
|
spec:
|
|
containers:
|
|
- image: resouer/sample:v2
|
|
name: war
|
|
lifecycle:
|
|
postStart:
|
|
exec:
|
|
command:
|
|
- "cp"
|
|
- "/sample.war"
|
|
- "/app"
|
|
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: {}
|
|
|