Skip to content

Commit e4e8457

Browse files
committed
Rename 'Packages' to 'Configurations'
The page mostly documents configurations Signed-off-by: Nic Cope <[email protected]>
1 parent dd0f208 commit e4e8457

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

content/v2.0-preview/cli/command-reference.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ built-in support in [function-go-templating](https://github.com/crossplane-contr
178178
## xpkg
179179

180180
The `crossplane xpkg` commands create, install and update Crossplane
181-
[packages]({{<ref "../packages/packages">}}) as well as enable authentication
181+
[packages]({{<ref "../packages/configurations">}}) as well as enable authentication
182182
and publishing of Crossplane packages to a Crossplane package registry.
183183

184184
### xpkg build
@@ -193,7 +193,7 @@ The CLI applies the required annotations and values to meet the
193193
[Crossplane XPKG specification](https://github.com/crossplane/crossplane/blob/main/contributing/specifications/xpkg.md).
194194

195195
The `crossplane` CLI supports building
196-
[configuration]({{< ref "../packages/packages" >}}),
196+
[configuration]({{< ref "../packages/configurations" >}}),
197197
[function]({{<ref "../composition/compositions">}}) and
198198
[provider]({{<ref "../packages/providers" >}}) package types.
199199

@@ -270,7 +270,7 @@ with the command
270270
The `<name>` input isn't used. Crossplane reserves the `<name>` for future releases.
271271

272272
The `<template>` value may be one of four well known templates:
273-
* `configuration-template` - A template to build a Crossplane [Configuration]({{<ref "../packages/packages">}}) from the [crossplane/configuration-template](https://github.com/crossplane/configuration-template) repository.
273+
* `configuration-template` - A template to build a Crossplane [Configuration]({{<ref "../packages/configurations">}}) from the [crossplane/configuration-template](https://github.com/crossplane/configuration-template) repository.
274274
* `function-template-go` - A template to build Crossplane Go [composition functions]({{<ref "../composition/compositions">}}) from the [crossplane/function-template-go](https://github.com/crossplane/function-template-go) repository.
275275
* `function-template-python` - A template to build Crossplane Python [composition functions]({{<ref "../composition/compositions">}}) from the [crossplane/function-template-python](https://github.com/crossplane/function-template-go) repository.
276276
* `provider-template` - A template to build a basic Crossplane provider from the [Crossplane/provider-template](https://github.com/crossplane/provider-template) repository.
@@ -352,7 +352,7 @@ returns an error if the `wait` time expires before the package is `HEALTHY`.
352352
#### Require manual package activation
353353

354354
Set the package to require
355-
[manual activation]({{<ref "../packages/packages#revision-activation-policy" >}}),
355+
[manual activation]({{<ref "../packages/configurations#revision-activation-policy" >}}),
356356
preventing an automatic upgrade of a package with `--manual-activation`
357357

358358
#### Authenticate to a private registry
@@ -372,7 +372,7 @@ cache.
372372
Store more inactive copies of a package with `--revision-history-limit`.
373373

374374
Read more about
375-
[package revisions]({{< ref "../packages/packages#configuration-revisions" >}})
375+
[package revisions]({{< ref "../packages/configurations#configuration-revisions" >}})
376376
in the package documentation.
377377

378378
### xpkg login

content/v2.0-preview/composition/compositions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ spec:
137137

138138
{{< hint "tip" >}}
139139
Functions are Crossplane Packages. Read more about Packages in the
140-
[Packages documentation]({{<ref "../packages/packages" >}}).
140+
[Packages documentation]({{<ref "../packages/configurations" >}}).
141141
{{< /hint >}}
142142

143143
By default, the Function pod installs in the same namespace as Crossplane

content/v2.0-preview/guides/troubleshoot-crossplane.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ has some useful information.
209209
[Pausing Providers]: #pausing-providers
210210
[Deleting When a Resource Hangs]: #deleting-when-a-resource-hangs
211211
[Installing Crossplane Package]: #installing-crossplane-package
212-
[Crossplane package]: {{<ref "../packages/packages/">}}
212+
[Crossplane package]: {{<ref "../packages/configurations/">}}
213213
[Handling Crossplane Package Dependency]: #handling-crossplane-package-dependency
214214
[semver spec]: https://github.com/Masterminds/semver#basic-comparisons
215215

content/v2.0-preview/guides/write-a-composition-function-in-go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@ crossplane xpkg build \
843843

844844
{{<hint "tip">}}
845845
Crossplane packages are special OCI images. Read more about packages in the
846-
[packages documentation]({{< ref "../packages/packages" >}}).
846+
[packages documentation]({{< ref "../packages/configurations" >}}).
847847
{{</hint>}}
848848

849849
Push both package files to a registry. Pushing both files to one tag in the

content/v2.0-preview/guides/write-a-composition-function-in-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ crossplane xpkg build \
712712

713713
{{<hint "tip">}}
714714
Crossplane packages are special OCI images. Read more about packages in the
715-
[packages documentation]({{< ref "../packages/packages" >}}).
715+
[packages documentation]({{< ref "../packages/configurations" >}}).
716716
{{</hint>}}
717717

718718
Push both package files to a registry. Pushing both files to one tag in the

content/v2.0-preview/packages/packages.md renamed to content/v2.0-preview/packages/configurations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Configuration Packages
2+
title: Configurations
33
description: "Packages combine multiple Crossplane resources into a single, portable, OCI image."
44
altTitle: "Crossplane Packages"
55
weight: 200

content/v2.0-preview/whats-crossplane/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,5 +233,5 @@ using the package manager. This allows you to deploy several control planes with
233233
identical capabilities - for example one control plane per region or per
234234
service.
235235

236-
Read about Crossplane packages in [Concepts]({{<ref "../packages/packages">}})
236+
Read about Crossplane packages in [Concepts]({{<ref "../packages/configurations">}})
237237
to learn about the package manager.

0 commit comments

Comments
 (0)