Quellcodebibliothek
Statistik
Leitseite
products
/
Sources
/
formale Sprachen
/
Java
/
Openclaw
/
scripts
/
k8s
/
manifests
/ (
KI Agentensystem
Version 22
©
) Datei vom 26.3.2026 mit Größe 4 kB
Quelle deployment.yaml Sprache: unbekannt
Spracherkennung für: .yaml vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]
apiVersion: apps/v1
kind: Deployment
metadata:
name: openclaw
labels:
app: openclaw
spec:
replicas:
1
selector:
matchLabels:
app: openclaw
strategy:
type: Recreate
template:
metadata:
labels:
app: openclaw
spec:
automountServiceAccountToken: false
securityContext:
fsGroup:
1000
seccompProfile:
type: RuntimeDefault
initContainers:
- name: init-config
image: busybox:
1
.
37
imagePullPolicy: IfNotPresent
command:
- sh
- -c
- |
cp /config/openclaw.json /home/node/.openclaw/openclaw.json
mkdir -p /home/node/.openclaw/workspace
cp /config/AGENTS.md /home/node/.openclaw/workspace/AGENTS.md
securityContext:
runAsUser:
1000
runAsGroup:
1000
resources:
requests:
memory:
32
Mi
cpu:
50
m
limits:
memory:
64
Mi
cpu:
100
m
volumeMounts:
- name: openclaw-home
mountPath: /home/node/.openclaw
- name: config
mountPath: /config
containers:
- name: gateway
image: ghcr.io/openclaw/openclaw:slim
imagePullPolicy: IfNotPresent
command:
- node
- /app/dist/index.js
- gateway
- run
ports:
- name: gateway
containerPort:
18789
protocol: TCP
env:
- name: HOME
value: /home/node
- name: OPENCLAW_CONFIG_DIR
value: /home/node/.openclaw
- name: NODE_ENV
value: production
- name: OPENCLAW_GATEWAY_TOKEN
valueFrom:
secretKeyRef:
name: openclaw-secrets
key: OPENCLAW_GATEWAY_TOKEN
- name: ANTHROPIC_API_KEY
valueFrom:
secretKeyRef:
name: openclaw-secrets
key: ANTHROPIC_API_KEY
optional: true
- name: OPENAI_API_KEY
valueFrom:
secretKeyRef:
name: openclaw-secrets
key: OPENAI_API_KEY
optional: true
- name: GEMINI_API_KEY
valueFrom:
secretKeyRef:
name: openclaw-secrets
key: GEMINI_API_KEY
optional: true
- name: OPENROUTER_API_KEY
valueFrom:
secretKeyRef:
name: openclaw-secrets
key: OPENROUTER_API_KEY
optional: true
resources:
requests:
memory:
512
Mi
cpu:
250
m
limits:
memory:
2
Gi
cpu: "
1
"
livenessProbe:
exec:
command:
- node
- -e
- "require('http').get('
http://
style='color: green'>127
.
0
.
0
.
1
:
18789
/healthz', r => p
rocess.exit(r.statusCode <
400
?
0
:
1
)).on('error', () => process.exit(
1
))"
initialDelaySeconds:
60
periodSeconds:
30
timeoutSeconds:
10
readinessProbe:
exec:
command:
- node
- -e
- "require('http').get('
http://
style='color: green'>127
.
0
.
0
.
1
:
18789
/readyz', r => pr
ocess.exit(r.statusCode <
400
?
0
:
1
)).on('error', () => process.exit(
1
))"
initialDelaySeconds:
15
periodSeconds:
10
timeoutSeconds:
5
volumeMounts:
- name: openclaw-home
mountPath: /home/node/.openclaw
- name: tmp-volume
mountPath: /tmp
securityContext:
runAsNonRoot: true
runAsUser:
1000
runAsGroup:
1000
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
capabilities:
drop:
- ALL
volumes:
- name: openclaw-home
persistentVolumeClaim:
claimName: openclaw-home-pvc
- name: config
configMap:
name: openclaw-config
- name: tmp-volume
emptyDir: {}
[Dauer der Verarbeitung: 0.14 Sekunden, vorverarbeitet 2026-06-10]
2026-06-09