---
apiVersion: v1
kind: List
items:
  - apiVersion: v1
    kind: Namespace
    metadata:
      namespace: ''
      name: test
  - apiVersion: apps/v1
    kind: Deployment
    metadata:
      labels:
        app: php-hello
      namespace: test
      name: php-hello
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: php-hello
      strategy: {}
      template:
        metadata:
          labels:
            app: php-hello
        spec:
          containers:
          - image: quay.io/rhtuser/php-hello:ancient
            name: php-hello
            resources: {}
...