apiVersion: apps/v1 kind: Deployment metadata: name: testing-deployment-1 namespace: testing labels: app: busybox spec: replicas: 4 selector: matchLabels: app: busybox template: metadata: labels: app: busybox spec: containers: - name: busybox image: busybox:latest --- apiVersion: apps/v1 kind: Deployment metadata: name: testing-deployment-2 namespace: testing labels: app: busybox spec: replicas: 2 selector: matchLabels: app: busybox template: metadata: labels: app: busybox spec: containers: - name: busybox image: busybox:latest