123456789101112131415161718192021222324252627282930 |
- apiVersion: apps/v1
- kind: DaemonSet
- metadata:
- name: ngx-otel-proxy
- namespace: observe
- spec:
- selector:
- matchLabels:
- app: nginx
- template:
- metadata:
- labels:
- app: nginx
- spec:
- containers:
- - name: nginx
- image: reg.cestong.com.cn/cecf/observe-server/nginx:1.14.16
- #image: reg.cestong.com.cn/cecf/observe-server/nginx:1.24.14
- imagePullPolicy: Always
- resources:
- limits:
- cpu: "1"
- requests:
- cpu: "500m"
- ports:
- - containerPort: 80
- updateStrategy:
- type: RollingUpdate
- rollingUpdate:
- maxUnavailable: 1
|