Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions kubernetes/tmpbbs.statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ kind: StatefulSet
metadata:
name: tmpbbs
spec:
minReadySeconds: 30
replicas: 3
selector:
matchLabels:
Expand Down Expand Up @@ -37,6 +38,10 @@ spec:
containerPort: 8080
- name: grpc
containerPort: 8081
readinessProbe:
httpGet:
path: /healthz
port: http
resources:
requests:
cpu: 10m
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ kind: StatefulSet
metadata:
name: tmpbbs
spec:
minReadySeconds: 0
template:
spec:
containers:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ spec:
livenessProbe:
httpGet:
port: https
readinessProbe:
httpGet:
port: https
volumeMounts:
- name: tls
mountPath: /tls
Expand Down
Loading