49DE78642A4018B1A0377E32741432E7.jpg
cfg:

kubectl create configmap cfg --from-file=nginx.conf

Deployment:

apiVersion: apps/v1
kind: Deployment
metadata:
  name: my-app
spec:
  template:
    metadata:
      labels:
        app: nginx
    spec:
      containers:
        - name: nginx
          image: nginx:latest
          ports:
          - containerPort: 80
          volumeMounts:
            - name: nginx-config
              mountPath: /etc/nginx/nginx.conf
              subPath: nginx.conf
      volumes:
        - name: nginx-config
          configMap:
            name: cfg

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

Captcha Code