Skip to content

Commit c2e332b

Browse files
author
github-actions
committed
Sync docs from infrahub repo
1 parent fc792b4 commit c2e332b

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

docs/docs/deploy-manage/install-configure/install/community.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ Infrahub ships with a minimal built-in schema. After installation, load a domain
319319
:::tip Use the Marketplace for pre-built schemas
320320

321321
The [Infrahub Marketplace](https://marketplace.infrahub.app) hosts ready-to-use schemas for common domains such as DCIM, IPAM, locations, and routing.
322-
Fetch a schema with `infrahubctl marketplace get opsmill/dcim`, then load it with `infrahubctl schema load schemas/dcim.yml`.
322+
Fetch a schema with `infrahubctl marketplace get infrahub/dcim`, then load it with `infrahubctl schema load schemas/dcim.yml`.
323323
See [Infrahub Marketplace](../../../schema/marketplace/) for the complete workflow.
324324

325325
:::

docs/docs/deploy-manage/install-configure/install/enterprise.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ Infrahub ships with a minimal built-in schema. After installation, load a domain
320320
:::tip Use the Marketplace for pre-built schemas
321321

322322
The [Infrahub Marketplace](https://marketplace.infrahub.app) hosts ready-to-use schemas for common domains such as DCIM, IPAM, locations, and routing.
323-
Fetch a schema with `infrahubctl marketplace get opsmill/dcim`, then load it with `infrahubctl schema load schemas/dcim.yml`.
323+
Fetch a schema with `infrahubctl marketplace get infrahub/dcim`, then load it with `infrahubctl schema load schemas/dcim.yml`.
324324
See [Infrahub Marketplace](../../../schema/marketplace/) for the complete workflow.
325325

326326
:::

docs/docs/schema/marketplace/index.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ The Marketplace hosts two types of content:
1818

1919
Every item in the Marketplace is identified by a `namespace/name` reference, similar to Docker Hub image names or npm package scopes.
2020

21-
- `opsmill/dcim` — the `dcim` schema published by the `opsmill` namespace
22-
- `opsmill/starter-pack` — the `starter-pack` collection published by `opsmill`
21+
- `infrahub/dcim` — the `dcim` schema published by the `infrahub` namespace
22+
- `infrahub/base-schemas` — the `base-schemas` collection published by `infrahub`
2323

2424
Namespaces are tied to the account of the schema's author on the Marketplace.
2525

@@ -43,45 +43,45 @@ The Marketplace is an external catalog — it stores schema definitions, not you
4343
### Find the schema
4444

4545
Browse [marketplace.infrahub.app](https://marketplace.infrahub.app) and identify the schema or collection you want.
46-
Each item has an identifier in `namespace/name` format — for example, `opsmill/dcim`.
46+
Each item has an identifier in `namespace/name` format — for example, `infrahub/dcim`.
4747
Note this identifier; you will use it in the next step.
4848

4949
### Fetch the schema
5050

5151
Run `infrahubctl marketplace get` with the identifier:
5252

5353
```shell
54-
infrahubctl marketplace get opsmill/dcim
54+
infrahubctl marketplace get infrahub/dcim
5555
```
5656

5757
The command downloads the schema YAML to `./schemas/` by default:
5858

5959
```text
60-
Downloaded schema opsmill/dcim (version 1.4.2) → schemas/dcim.yml
60+
Downloaded schema infrahub/dcim (version 1.4.2) → schemas/dcim.yml
6161
```
6262

6363
#### Pin to a specific version
6464

6565
Pin to a published version with `--version`:
6666

6767
```shell
68-
infrahubctl marketplace get opsmill/dcim --version 1.2.0
68+
infrahubctl marketplace get infrahub/dcim --version 1.2.0
6969
```
7070

7171
#### Save to a custom directory
7272

7373
Use `--output-dir` to change where files are saved:
7474

7575
```shell
76-
infrahubctl marketplace get opsmill/dcim --output-dir ./infra/schemas
76+
infrahubctl marketplace get infrahub/dcim --output-dir ./infra/schemas
7777
```
7878

7979
#### Inspect before loading
8080

8181
Use `--stdout` to print the schema YAML to stdout without writing to disk:
8282

8383
```shell
84-
infrahubctl marketplace get opsmill/dcim --stdout
84+
infrahubctl marketplace get infrahub/dcim --stdout
8585
```
8686

8787
This is useful for reviewing the schema or piping it into another tool before committing to disk.
@@ -93,7 +93,7 @@ The `get` command detects whether an identifier is a schema or a collection auto
9393
To force collection download when a name exists as both, add `--collection`:
9494

9595
```shell
96-
infrahubctl marketplace get opsmill/starter-pack --collection
96+
infrahubctl marketplace get infrahub/base-schemas --collection
9797
```
9898

9999
A collection download writes one file per schema in the bundle.

docs/docs/tutorials/getting-started/schema.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ invoke demo.load-infra-schema
5656

5757
:::tip Find these schemas on the Marketplace
5858

59-
The schemas loaded above (`dcim`, `ipam`, `location`, `organization`, `routing`) are also available on the [Infrahub Marketplace](https://marketplace.infrahub.app) as `opsmill/dcim`, `opsmill/ipam`, and so on.
60-
When starting a new Infrahub project outside of this demo, you can fetch them directly with `infrahubctl marketplace get opsmill/dcim` instead of using the demo command.
59+
The schemas loaded above (`dcim`, `ipam`, `location`, `organization`, `routing`) are also available on the [Infrahub Marketplace](https://marketplace.infrahub.app) as `infrahub/dcim`, `infrahub/ipam`, and so on.
60+
When starting a new Infrahub project outside of this demo, you can fetch them directly with `infrahubctl marketplace get infrahub/dcim` instead of using the demo command.
6161
See [Infrahub Marketplace](../../schema/marketplace/) for the full workflow.
6262

6363
:::

0 commit comments

Comments
 (0)