当前位置: 首页> 科技> 名企 > 免费linux云服务器_石家庄房产信息网站_要怎么网络做推广_百度推广和优化有什么区别

免费linux云服务器_石家庄房产信息网站_要怎么网络做推广_百度推广和优化有什么区别

时间:2025/7/10 9:11:39来源:https://blog.csdn.net/loveLifeLoveCoding/article/details/142390924 浏览次数:0次
免费linux云服务器_石家庄房产信息网站_要怎么网络做推广_百度推广和优化有什么区别
volumeMounts:
- name: cfg-volmountPath: /etc/grafana/provisioning/datasources
- name: cfg-inimountPath: /usr/share/grafana/conf/sample.inisubPath: sample.ini
- name: cfg-tempmountPath: /usr/share/grafana/conf/test.jsonsubPath: test.json
  volumes:- name: cfg-volconfigMap:name: cm-grafana-yaml- name: cfg-iniconfigMap:name: cm-grafana-ini- name: cfg-tempconfigMap:name: cm-grafana-temp
需求

将一个configmap 内的两个文件挂载在一个pod的不同目录下

  • /app/conf/grafanaoracle.properties
  • /app/start-timeshift.sh

创建一个configmap

kind: ConfigMap
apiVersion: v1
metadata:labels:app.kubernetes.io/managed-by: Helmname: test-config
data:grafanaoracle.properties: |name=kevinnage=19start-timeshift.sh: |#!/bin/shcd /app/influxdb-timeshift-proxyINFLUXDB=nms-influxdb:8086 /usr/bin/npm run start

 创建一个deploy

apiVersion: apps/v1
kind: Deployment
metadata:labels:zcm-app: test-configmapname: test-configmap
spec:replicas: 1selector:matchLabels:zcm-app: test-configmaptemplate:metadata:labels:zcm-app: test-configmapspec:containers:- env:- name: CLOUD_APP_NAMEvalue: paas_test-configmapimage: nginximagePullPolicy: IfNotPresentname: test-configmapports:- containerPort: 9999name: http-oracleprotocol: TCPvolumeMounts:       # 关键代码 开始- mountPath: /app/start-timeshift.shname: propertiesreadOnly: truesubPath: start-timeshift.sh- mountPath: /app/conf/grafanaoracle.propertiesname: propertiesreadOnly: truesubPath: grafanaoracle.propertiesdnsPolicy: ClusterFirstrestartPolicy: Alwaysvolumes:- configMap:defaultMode: 420items:- key: grafanaoracle.properties  # key 和 path 同名即可path: grafanaoracle.properties- key: start-timeshift.shpath: start-timeshift.shname: test-configmapname: properties 	# 关键代码 结束

 

关键字:免费linux云服务器_石家庄房产信息网站_要怎么网络做推广_百度推广和优化有什么区别

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: