Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ tasks:
fmt:
desc: Format all markdown files with prettier
cmds:
- npx prettier --write "**/*.md"
- npx prettier --write "**/*.md" --ignore-path .prettierignore

fmt:check:
desc: Check markdown formatting without making changes
cmds:
- npx prettier --check --log-level=debug "**/*.md"
- npx prettier --check --log-level=debug "**/*.md" --ignore-path .prettierignore

# File reference validation
check:files:
Expand Down
2 changes: 1 addition & 1 deletion mission-control/docs/guide/permissions/multi-tenancy.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ spec:
- playbook:run
object:
playbooks:
- name: "*"
- name: '*'
configs:
- tagSelector: cluster=demo
- tagSelector: cluster=staging
Expand Down
2 changes: 1 addition & 1 deletion mission-control/docs/integrations/flux/playbooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Mission control enhances a [flux](https://fluxcd.io/flux) deployment with:

The following playbooks work by calling the `flux` CLI directly

| Playbook | <Icon name="kustomize">Kustomization</Icon> | <Icon name="helm">HelmRelease</Icon> |
| Playbook | <Icon name="kustomize">Kustomization</Icon> | <Icon name="helm">HelmRelease</Icon> |
| ---------------------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- |
| <Icon name="flux">Suspend</Icon><Tooltip>Runs `flux suspend`</Tooltip> | <IoIosCheckmarkCircleOutline color='green' size={24} /> | <IoIosCheckmarkCircleOutline color='green' size={24} /> |
| <Icon name="flux">Resume</Icon><Tooltip>Runs`flux resume`</Tooltip> | <IoIosCheckmarkCircleOutline color='green' size={24} /> | <IoIosCheckmarkCircleOutline color='green' size={24} /> |
Expand Down
10 changes: 5 additions & 5 deletions mission-control/docs/reference/playbooks/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ Canary events relate to activities on health checks.

Component events relate to changes in component health status.

| Event | Description |
| ----------- | ---------------------------------------- |
| `healthy` | When a component becomes healthy |
| `unhealthy` | When a component becomes unhealthy |
| `warning` | When a component enters a warning state |
| Event | Description |
| ----------- | --------------------------------------- |
| `healthy` | When a component becomes healthy |
| `unhealthy` | When a component becomes unhealthy |
| `warning` | When a component enters a warning state |

| Event | Description |
| -------- | ------------------------------------- |
Expand Down
Loading