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