diff --git a/k8s/apps/pasarguard/daemonset.yaml b/k8s/apps/pasarguard/daemonset.yaml index 6286e6a..b3923ac 100644 --- a/k8s/apps/pasarguard/daemonset.yaml +++ b/k8s/apps/pasarguard/daemonset.yaml @@ -112,45 +112,6 @@ spec: - name: scripts mountPath: /scripts containers: - - name: xray-exporter - image: alpine:3.18 - imagePullPolicy: IfNotPresent - command: - - /bin/sh - - /scripts/exporter-start.sh - ports: - - name: metrics - containerPort: 9550 - protocol: TCP - livenessProbe: - httpGet: - path: /scrape - port: metrics - initialDelaySeconds: 60 - periodSeconds: 30 - timeoutSeconds: 10 - failureThreshold: 3 - readinessProbe: - httpGet: - path: /scrape - port: metrics - initialDelaySeconds: 45 - periodSeconds: 10 - timeoutSeconds: 5 - failureThreshold: 3 - resources: - requests: - memory: "64Mi" - cpu: "50m" - limits: - memory: "128Mi" - cpu: "150m" - volumeMounts: - - name: shared-data - mountPath: /shared - readOnly: true - - name: scripts - mountPath: /scripts - name: pasarguard-node image: 'pasarguard/node:v0.1.3' imagePullPolicy: Always @@ -211,6 +172,46 @@ spec: readOnly: false - name: scripts mountPath: /scripts + + - name: xray-exporter + image: alpine:3.18 + imagePullPolicy: IfNotPresent + command: + - /bin/sh + - /scripts/exporter-start.sh + ports: + - name: metrics + containerPort: 9550 + protocol: TCP + livenessProbe: + httpGet: + path: /scrape + port: metrics + initialDelaySeconds: 60 + periodSeconds: 30 + timeoutSeconds: 10 + failureThreshold: 3 + readinessProbe: + httpGet: + path: /scrape + port: metrics + initialDelaySeconds: 45 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 3 + resources: + requests: + memory: "64Mi" + cpu: "50m" + limits: + memory: "128Mi" + cpu: "150m" + volumeMounts: + - name: shared-data + mountPath: /shared + readOnly: true + - name: scripts + mountPath: /scripts volumes: - name: shared-data emptyDir: {}