update to git

This commit is contained in:
2026-08-12 15:20:39 +07:00
commit 9709ac7a34
17 changed files with 424 additions and 0 deletions

No files matched your search

+33
View File
@@ -0,0 +1,33 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: log-viewer
spec:
template:
spec:
containers:
- name: log-viewer
startupProbe:
tcpSocket:
port: 5880
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 2
failureThreshold: 18
successThreshold: 1
readinessProbe:
tcpSocket:
port: 5880
initialDelaySeconds: 15
periodSeconds: 20
timeoutSeconds: 10
failureThreshold: 6
successThreshold: 1
livenessProbe:
tcpSocket:
port: 5880
initialDelaySeconds: 20
periodSeconds: 30
timeoutSeconds: 10
failureThreshold: 6
successThreshold: 1