apiVersion: v1 data: foo: override-bar kind: ConfigMap metadata: annotations: note: This is a test annotation labels: app: mynginx env: staging org: example.com team: override-foo name: staging-team-foo-configmap-in-base-gh9d7t85gb --- apiVersion: v1 data: hello: world kind: ConfigMap metadata: labels: env: staging team: override-foo name: staging-configmap-in-overlay-k7cbc75tg8 --- apiVersion: v1 data: password: c29tZXB3 proxy: aGFwcm94eQ== username: YWRtaW4= kind: Secret metadata: annotations: note: This is a test annotation labels: app: mynginx env: staging org: example.com team: override-foo name: staging-team-foo-secret-in-base-c8db7gk2m2 type: Opaque --- apiVersion: v1 kind: Service metadata: annotations: note: This is a test annotation labels: app: mynginx env: staging org: example.com team: override-foo name: staging-team-foo-nginx spec: ports: - port: 80 selector: app: mynginx env: staging org: example.com team: override-foo --- apiVersion: apps/v1beta2 kind: Deployment metadata: annotations: note: This is a test annotation labels: app: mynginx env: staging org: example.com team: override-foo name: staging-team-foo-nginx spec: selector: matchLabels: app: mynginx env: staging org: example.com team: override-foo template: metadata: annotations: note: This is a test annotation labels: app: mynginx env: staging org: example.com team: override-foo spec: containers: - image: nginx name: nginx volumeMounts: - mountPath: /tmp/ps name: nginx-persistent-storage volumes: - gcePersistentDisk: pdName: nginx-persistent-storage name: nginx-persistent-storage - configMap: name: staging-configmap-in-overlay-k7cbc75tg8 name: configmap-in-overlay - configMap: name: staging-team-foo-configmap-in-base-gh9d7t85gb name: configmap-in-base