Skip to main content

infra/helm/platform/templates/outbox-worker.yaml

Metadata

Indexed Symbols

No indexed functions/methods detected in this file.

Markdown Headings (if applicable)

No markdown headings detected.

Source Preview

{{- if .Values.outboxWorker.enabled }}
apiVersion: apps/v1
kind: Deployment
metadata:
name: anchor-outbox-worker
namespace: {{ .Values.namespace.name }}
labels:
app.kubernetes.io/name: anchor-outbox-worker
spec:
replicas: {{ .Values.outboxWorker.replicaCount }}
selector:
matchLabels:
app.kubernetes.io/name: anchor-outbox-worker
template:
metadata:
labels:
app.kubernetes.io/name: anchor-outbox-worker
spec:
serviceAccountName: {{ .Values.global.serviceAccountName }}
automountServiceAccountToken: false
securityContext:
runAsNonRoot: true
runAsUser: 10001
runAsGroup: 10001
fsGroup: 10001