Compare commits

...

4 Commits

Author SHA1 Message Date
Antonio Scandurra
98a593b263 collab 0.3.8 2022-12-14 08:56:02 +01:00
Antonio Scandurra
897506c797 Define readiness probe to know when the new server can accept traffic 2022-12-14 08:54:46 +01:00
Antonio Scandurra
59c9a57570 collab 0.3.7 2022-12-14 08:43:18 +01:00
Antonio Scandurra
dde6cf596e Don't wait for stale project deletion before listening for connections 2022-12-14 08:42:34 +01:00
3 changed files with 7 additions and 2 deletions

2
Cargo.lock generated
View File

@@ -1130,7 +1130,7 @@ dependencies = [
[[package]]
name = "collab"
version = "0.3.6"
version = "0.3.8"
dependencies = [
"anyhow",
"async-tungstenite",

View File

@@ -3,7 +3,7 @@ authors = ["Nathan Sobo <nathan@zed.dev>"]
default-run = "collab"
edition = "2021"
name = "collab"
version = "0.3.6"
version = "0.3.8"
[[bin]]
name = "collab"

View File

@@ -59,6 +59,11 @@ spec:
ports:
- containerPort: 8080
protocol: TCP
readinessProbe:
httpGet:
path: /
initialDelaySeconds: 5
periodSeconds: 5
env:
- name: HTTP_PORT
value: "8080"