Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: image paths #324

Closed
wants to merge 2 commits into from
Closed
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
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[*.{md,js}]
[*.{md,js,ts}]
quote_type = single
indent_size = 2
end_of_line = lf
Expand Down
2 changes: 1 addition & 1 deletion canary-checker/docs/health-checks.canary.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Health Checks
id: health-checks
---

<img src="/img/health-checks.svg" style={{width: "900px"}}/>
<Screenshot src="/img/health-checks.svg" style={{width: "900px"}}/>


Canary Checker is a Kubernetes native health check platform that periodically runs various types of tests:
Expand Down
2 changes: 1 addition & 1 deletion canary-checker/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sidebar_custom_props:

---

<img src="/img/health-checks.svg" style={{width: "900px"}}/>
<Screenshot src="/img/health-checks.svg" style={{width: "900px"}}/>


Mission control provides the ability to define and run periodic health checks against services, infrastructure, and applications.
Expand Down
2 changes: 1 addition & 1 deletion mission-control/docs/guide/config-db/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The Mission Control Catalog is a centralized repository that automatically disco



<img src="/img/config-db.svg" width="900px" className='pb-10'></img>
<Screenshot src="/img/config-db.svg" width="900px" className='pb-10'/>



Expand Down
6 changes: 3 additions & 3 deletions mission-control/docs/guide/topology/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Some of the benefits include:
- **Different Views** of the same resources based on use case e.g. Platform teams might want an infra focused view, while application teams want an app focused view
- **Partial Views** enable publishing high-level details of a component without exposing internal or private data more widely.

<img src="/img/topology.svg" width="900px" className="py-3"/>
<Screenshot src="/img/topology.svg" width="900px" className="py-3"/>

A topology is comprised of:

Expand All @@ -31,7 +31,7 @@ A topology is comprised of:
## Components

Components are represented as cards:
<img src="/img/topology-card.svg" width="700px" className="pb-10"/>
<Screenshot src="/img/topology-card.svg" width="700px" className="pb-10"/>

<div style={{width: "800px"}}>

Expand All @@ -47,7 +47,7 @@ One way to think about a component is as a mini dashboard that has provides a de

Components can be created to represent any logical view of a system, for example the below represents a FluxCD installation, mapping helm releases to pods and resources that they create.

<img src="/img/flux-topology.svg" width="800px" className="py-3"/>
<Screenshot src="/img/flux-topology.svg" width="800px" className="py-3"/>

## Components vs Config Items

Expand Down
2 changes: 1 addition & 1 deletion mission-control/docs/installation/saas/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const toc = [{

When using the Mission Control SaaS the agent based approach is recommended for ingesting data, The agent is headless installation of mission-control that caches data locally in a postgres database and replicates it to the SaaS.

<img src="/img/deployment-saas.svg" style={{"margin-left": "10%", "width": "80%"}} />
<Screenshot src="/img/deployment-saas.svg" style={{"margin-left": "10%", "width": "80%"}} />

The agent based approach has the following benefits:

Expand Down
2 changes: 1 addition & 1 deletion modules/config-db
Submodule config-db updated 5 files
+28 −0 api/cache.go
+0 −7 db/config.go
+0 −7 go.mod
+0 −14 go.sum
+9 −2 scrapers/run_test.go
2 changes: 1 addition & 1 deletion modules/duty
Submodule duty updated 47 files
+5 −0 Makefile
+1 −0 api/config.go
+129 −0 bench/bench_test.go
+235 −0 bench/benchmark.md
+92 −0 bench/new.txt
+92 −0 bench/old.txt
+180 −0 bench/utils_test.go
+10 −5 go.mod
+100 −4 go.sum
+1 −0 hack/migrate/main.go
+9 −6 migrate/migrate.go
+5 −1 models/config.go
+3 −0 models/connections.go
+9 −3 models/notifications.go
+21 −1 models/permission.go
+18 −1 models/permission_test.go
+79 −19 query/commons.go
+5 −5 query/config.go
+172 −0 query/grammar/grammar_parser.go
+17 −0 query/grammar/grammar_test.go
+2,224 −0 query/grammar/grammer.go
+113 −0 query/grammar/grammer.peg
+13 −0 query/grammar/suite_test.go
+253 −0 query/models.go
+54 −20 query/resource_selector.go
+1 −1 schema/apply.go
+15 −4 schema/notifications.hcl
+12 −0 schema/permissions.hcl
+6 −1 shutdown/shutdown.go
+5 −0 start.go
+7 −6 tests/config_generator_test.go
+7 −6 tests/config_relationship_test.go
+8 −7 tests/config_type_summary_test.go
+2 −1 tests/fixtures/dummy/common.go
+1 −1 tests/fixtures/dummy/components.go
+1 −1 tests/generator/config_generator.go
+4 −4 tests/migration_dependency_test.go
+103 −0 tests/query_resource_selector_test.go
+133 −0 tests/rls_test.go
+4 −1 tests/schema_test.go
+74 −44 tests/setup/common.go
+1 −1 tests/setup/embedded_postgres.go
+56 −0 types/context.go
+97 −0 types/filters.go
+121 −2 types/resource_selector.go
+137 −0 views/034_rls_enable.sql
+22 −0 views/035_rls_disable.sql
Loading