# INTENTIONALLY INVALID. Well-formed YAML, invalid Kubernetes in four documented ways:
#   1. `apiVersion: apps/v1beta1` was removed in Kubernetes 1.16
#   2. `replicas` is a quoted string where an integer is required
#   3. `spec.selector` does not match the pod template labels
#   4. `containers` is a mapping where a list is required
apiVersion: apps/v1beta1
kind: Deployment
metadata:
  name: broken
  namespace: example-apps
spec:
  replicas: "three"
  selector:
    matchLabels:
      app: not-the-template-label
  template:
    metadata:
      labels:
        app: broken
    spec:
      containers:
        name: app
        image: registry.example.invalid/example-org/broken:0.1.0
