12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- apiVersion: v1
- kind: List
- metadata: {}
- items:
- - apiVersion: apps/v1
- kind: Deployment
- metadata:
- creationTimestamp: null
- labels:
- app: frontend-test
- name: frontend-test
- spec:
- replicas: 10
- selector:
- matchLabels:
- app: frontend-test
- strategy: {}
- template:
- metadata:
- creationTimestamp: null
- labels:
- app: frontend-test
- spec:
- containers:
- - image: registry.ocp4.example.com:8443/redhattraining/hello-world-nginx:v1.0
- name: hello-world-nginx
- resources:
- requests:
- cpu: 50m
- memory: 20Mi
- limits:
- cpu: 100m
- memory: 50Mi
- status: {}
- - apiVersion: v1
- kind: Service
- metadata:
- creationTimestamp: null
- labels:
- app: frontend-test
- name: frontend-test
- spec:
- ports:
- - port: 8080
- protocol: TCP
- targetPort: 8080
- selector:
- app: frontend-test
- status:
- loadBalancer: {}
- - apiVersion: route.openshift.io/v1
- kind: Route
- metadata:
- creationTimestamp: null
- labels:
- app: frontend-test
- name: frontend-test
- spec:
- host: frontend-test-monitor.apps.ocp4.example.com
- port:
- targetPort: 8080
- to:
- kind: ""
- name: frontend-test
- weight: null
- status:
- ingress: null
|