k8s容器挂载配置文件

1、新建ConfigMap

apiVersion: v1
kind: ConfigMap
metadata:
  name: test-conf
  namespace: default
  labels:
    name: test-conf
data:
  test.properties: |
    db.url=jdbc:oracle:thin:@172.16.10.178:1521:orcl
    db.user=sz_res
    db.passwd=sz_res
  test2.properties: |
xxxxxxxxxxxxxxxxxxxxxxxxxxxx

2、新建deployment

apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: test-app
  namespace: default
spec:
  replicas: 1
  template:
    metadata:
      labels:
        app: test-app
    spec:
      containers:
        - name: test-container
          image: test/tomcat:v1
          imagePullPolicy: Always
          volumeMounts:
            - name: test
              mountPath: /usr/local/tomcat/webapps/test/WEB-INF/classes/test.properties
              subPath: path/to/test.properties
            - name: test2
              mountPath: /usr/local/tomcat/webapps/test/WEB-INF/classes/test2.properties
              subPath: path/to/test2.properties
      volumes:
        - name: test
          configMap:
            name: test-conf
defaultMode: 0777 items:
- key: test.properties path: path/to/test.properties - name: test2 configMap: name: test-conf items: - key: test2.properties path: path/to/test2.properties

 上面红色的部分是指要挂载容器内部的文件的权限。(必须是介于0和0777(八进制)之间的数字,包括两者在内)

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值