16 lines
420 B
YAML
16 lines
420 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata: {name: kab-ingestion}
|
|
spec:
|
|
replicas: 2
|
|
selector: {matchLabels: {app: kab-ingestion}}
|
|
template:
|
|
metadata: {labels: {app: kab-ingestion}}
|
|
spec:
|
|
containers:
|
|
- name: agent
|
|
image: ghcr.io/example/kab-ingestion:0.1.0
|
|
env:
|
|
- {name: SECRET_PROVIDER, value: managed}
|
|
readinessProbe: {httpGet: {path: /healthz, port: 8080}}
|