Skip to content

Commit

Permalink
Updated schema and configuration.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Razz4780 committed Jan 27, 2025
1 parent e232d66 commit 1707856
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mirrord-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@
},
"tolerations": {
"title": "agent.tolerations {#agent-tolerations}",
"description": "Set pod tolerations. (not with ephemeral agents) Default is ```json [ { \"operator\": \"Exists\" } ] ```\n\nSet to an empty array to have no tolerations at all",
"description": "Set pod tolerations. (not with ephemeral agents).\n\nDefaults to `operator: Exists`.\n\n```json [ { \"key\": \"meow\", \"operator\": \"Exists\", \"effect\": \"NoSchedule\" } ] ```\n\nSet to an empty array to have no tolerations at all",
"type": [
"array",
"null"
Expand Down
8 changes: 5 additions & 3 deletions mirrord/config/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -394,12 +394,14 @@ Defaults to `60`.

### agent.tolerations {#agent-tolerations}

Set pod tolerations. (not with ephemeral agents)
Default is
Set pod tolerations. (not with ephemeral agents).

Defaults to `operator: Exists`.

```json
[
{
"operator": "Exists"
"key": "meow", "operator": "Exists", "effect": "NoSchedule"
}
]
```
Expand Down

0 comments on commit 1707856

Please sign in to comment.