apiVersion: apps/v1 kind: Deployment metadata: name: dlob-publisher-all annotations: argocd.argoproj.io/sync-wave: "4" spec: replicas: 1 selector: matchLabels: app.kubernetes.io/name: dlob-publisher-all template: metadata: labels: app.kubernetes.io/name: dlob-publisher-all spec: imagePullSecrets: [] containers: - name: publisher image: gitea.mpabi.pl/trade/trade-dlob-server:grpc-reconnect-20260319-023351 imagePullPolicy: IfNotPresent ports: - name: http containerPort: 8080 env: - name: RUNNING_LOCAL value: "true" - name: LOCAL_CACHE value: "true" - name: ENV value: mainnet-beta - name: USE_WEBSOCKET value: "true" - name: USE_ORDER_SUBSCRIBER value: "true" - name: USE_GRPC value: "true" - name: DISABLE_GPA_REFRESH value: "true" - name: KILLSWITCH_SLOT_DIFF_THRESHOLD value: "1000000000" - name: ENABLE_TOB_MONITORING value: "false" - name: ELASTICACHE_HOST value: dlob-redis - name: ELASTICACHE_PORT value: "6379" - name: REDIS_CLIENT value: DLOB_ALL - name: FETCH_CONNECT_TIMEOUT_MS value: "15000" - name: FETCH_HEADERS_TIMEOUT_MS value: "300000" - name: FETCH_BODY_TIMEOUT_MS value: "300000" - name: GRPC_CLIENT value: "yellowstone" - name: ENDPOINT valueFrom: secretKeyRef: name: trade-dlob-rpc key: ENDPOINT - name: WS_ENDPOINT valueFrom: secretKeyRef: name: trade-dlob-rpc key: WS_ENDPOINT - name: GRPC_ENDPOINT valueFrom: secretKeyRef: name: trade-dlob-rpc key: GRPC_ENDPOINT - name: TOKEN valueFrom: secretKeyRef: name: trade-dlob-rpc key: TOKEN command: ["node", "/lib/publishers/dlobPublisher.js"] startupProbe: httpGet: path: /startup port: http initialDelaySeconds: 10 periodSeconds: 10 timeoutSeconds: 3 failureThreshold: 180 readinessProbe: httpGet: path: /startup port: http initialDelaySeconds: 10 periodSeconds: 10 timeoutSeconds: 3 failureThreshold: 24 livenessProbe: httpGet: path: /health port: http initialDelaySeconds: 30 periodSeconds: 20 timeoutSeconds: 3 failureThreshold: 10