How to merge two configmaps using volume mount in kubernetes
问题 I am having two different config maps test-configmap and common-config . I tried to mount them at the same location, but one config map overwrote the other. Then I read about subPath and did not work. deploy.yaml apiVersion: apps/v1beta1 # for versions before 1.8.0 use apps/v1beta1 kind: Deployment metadata: name: testing spec: replicas: 1 template: metadata: name: testing labels: app: testing spec: containers: - name: testing-container image: testing imagePullPolicy: IfNotPresent ports: -