使用 kubernetes 将 tomcat conf 文件发送到容器
send tomcat conf files to container using kubernetes
我是 docker 和 Kubernetes 的新手,我正在尝试创建一个具有 tomcat7/Java7
的容器,以便我可以将我的 webapps
部署到其中。我唯一关心的是 tomcat/conf
配置文件,其中包含 database connections
、threadpool
、Java Memory
等
的详细信息
我想要的是将这些文件从 Kubernetes 服务器复制到 docker-container 并将它们放在正确的位置,同时启动容器。
P.S:我不想通过环境变量来做到这一点,因为如果我为配置文件中的每个条目保留一个变量,它们的数量将会很大。
您可以从您的 tomcat 配置(文件或整个目录)
在您的 Kubernetes 中添加一个 ConfigMap
kubectl -n staging create configmap special-config --from-file={path-to-tomcat-conf}/server.xml
然后将它挂载到你的 pod (kubectl create -f path/to/the/pod.yaml)
apiVersion: v1
kind: Pod
metadata:
name: tomcat-test-pod
spec:
containers:
- name: test-container
image: tomcat:7.0
command: [ "catalina.sh", "run" ]
volumeMounts:
- name: config-volume
mountPath: /usr/local/tomcat/conf/server.xml
volumes:
- name: config-volume
configMap:
# Provide the name of the ConfigMap containing the files you want
# to add to the container
name: special-config
我是 docker 和 Kubernetes 的新手,我正在尝试创建一个具有 tomcat7/Java7
的容器,以便我可以将我的 webapps
部署到其中。我唯一关心的是 tomcat/conf
配置文件,其中包含 database connections
、threadpool
、Java Memory
等
我想要的是将这些文件从 Kubernetes 服务器复制到 docker-container 并将它们放在正确的位置,同时启动容器。
P.S:我不想通过环境变量来做到这一点,因为如果我为配置文件中的每个条目保留一个变量,它们的数量将会很大。
您可以从您的 tomcat 配置(文件或整个目录)
在您的 Kubernetes 中添加一个 ConfigMapkubectl -n staging create configmap special-config --from-file={path-to-tomcat-conf}/server.xml
然后将它挂载到你的 pod (kubectl create -f path/to/the/pod.yaml)
apiVersion: v1
kind: Pod
metadata:
name: tomcat-test-pod
spec:
containers:
- name: test-container
image: tomcat:7.0
command: [ "catalina.sh", "run" ]
volumeMounts:
- name: config-volume
mountPath: /usr/local/tomcat/conf/server.xml
volumes:
- name: config-volume
configMap:
# Provide the name of the ConfigMap containing the files you want
# to add to the container
name: special-config