1234567891011121314151617181920212223242526272829303132 |
- ---
- 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: {}
- ...
|