使用sidecar和tomcat时configurationserver.xml

通过下面的例子configuration多容器Pod。 我将如何使用我自己的server.xml与'tomcat7.0;' 容器? https://github.com/kubernetes/examples/blob/master/staging/javaweb-tomcat-sidecar/README.md

configuration:

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: {}