Skip to content
Open
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
19 changes: 17 additions & 2 deletions base/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ metadata:
namespace: typesense
spec:
clusterIP: None
publishNotReadyAddresses: true
selector:
app: typesense
ports:
Expand Down Expand Up @@ -80,7 +81,7 @@ spec:
containers:
- name: typesense
# NOTE : you can update to the latest release
image: typesense/typesense:0.22.1
image: typesense/typesense:0.25.0
command:
- "/opt/typesense-server"
- "-d"
Expand All @@ -92,10 +93,24 @@ spec:
- "--peering-port"
- "8107"
- "--nodes"
- "/usr/share/typesense/nodes"
- "/usr/share/typesense/nodes"
- "--healthy-read-lag"
- "500"
- "--healthy-write-lag"
- "500"
- "--reset-peers-on-error"
ports:
- containerPort: 8108
name: http
readinessProbe:
httpGet:
path: /health
port: 8108
initialDelaySeconds: 1
timeoutSeconds: 2
successThreshold: 1
failureThreshold: 3
periodSeconds: 5
# NOTE: you can increase these resources
resources:
requests:
Expand Down