--- apiVersion: apps/v1 kind: Deployment metadata: name: wildduck-exporter namespace: wildduck spec: replicas: 1 selector: matchLabels: app: wildduck-exporter template: metadata: labels: app: wildduck-exporter spec: containers: - name: wildduck-exporter image: harbor.k-space.ee/k-space/wildduck-exporter securityContext: readOnlyRootFilesystem: true runAsNonRoot: true runAsUser: 65534 command: - /wildduck_exporter.py args: - info - accounting ports: - containerPort: 3001 name: metrics env: - name: MONGODB_HOST valueFrom: secretKeyRef: name: wildduck key: MONGO_URI - name: PROMETHEUS_BEARER_TOKEN valueFrom: secretKeyRef: name: wildduck-exporter key: PROMETHEUS_BEARER_TOKEN imagePullSecrets: - name: regcred