infra/helm/platform/templates/outbox-worker.yaml
Metadata
- Purpose: Kubernetes Helm chart template or values configuration.
- Domain:
infrastructure - Language:
yaml - Bytes: 1801
- Lines: 57
- Content hash (short):
01990434 - Source (start): infra/helm/platform/templates/outbox-worker.yaml:1
- Source (end): infra/helm/platform/templates/outbox-worker.yaml:57
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