12345678910111213141516171819202122232425262728 |
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: ob-proxy
- namespace: observe
- labels:
- app: ob-proxy
- spec:
- replicas: 1
- selector:
- matchLabels:
- app: ob-proxy
- template:
- metadata:
- labels:
- app: ob-proxy
- spec:
- containers:
- - name: nginx
- image: reg.cestong.com.cn/cecf/ob-proxy:1.24.18
- imagePullPolicy: Always
- resources:
- limits:
- cpu: "4"
- requests:
- cpu: "2048m"
- ports:
- - containerPort: 80
|