2024-12-22 20:11:02 +00:00
|
|
|
# ingress
|
|
|
|
|
|
|
|
Handling all Ingress traffic
|
2025-01-02 15:27:42 +00:00
|
|
|
|
|
|
|
## Rolling out changes
|
|
|
|
|
|
|
|
```sh
|
|
|
|
# Apply code changes to single node.
|
|
|
|
# Make sure to commit and push the changes first.
|
2025-01-02 16:19:03 +00:00
|
|
|
just configure-only nevaroo
|
2025-01-02 15:27:42 +00:00
|
|
|
|
|
|
|
# Apply infrastructure changes to single node.
|
|
|
|
just apply-only nevaroo
|
|
|
|
|
|
|
|
# Apply to all nodes
|
2025-01-02 16:19:03 +00:00
|
|
|
just configure
|
2025-01-02 15:27:42 +00:00
|
|
|
just apply
|
|
|
|
```
|