Skip to content

Commit

Permalink
Use NULL_EXECUTOR
Browse files Browse the repository at this point in the history
  • Loading branch information
gregorjerse committed Jul 11, 2024
1 parent 782de61 commit 8323301
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,28 @@ jobs:
- name: Try the cluster
run: |
kubectl wait --for=condition=available --timeout=1200s -n default deployment/postgres
# Until postgres is fully restored, the services will fail
kubectl wait --for=condition=available --timeout=1200s -n default deployment/postgres
# Patch the channels manager to use the null executor
kubectl patch deployment channels-manager -n default --patch '{
"spec": {
"template": {
"spec": {
"containers": [
{
"name": "channels-manager",
"env": [
{
"name": "GENESIS_EXECUTOR_NULL",
"value": "1"
}
]
}
]
}
}
}
}'
# Perform a clean restart of all services after the database is online
kubectl rollout restart deployment asgi-server channels-manager listener background-task uploader
kubectl wait --for=condition=available --timeout=1200s --all deployments
Expand Down

0 comments on commit 8323301

Please sign in to comment.