Skip to content

Commit 9d0a5a4

Browse files
committed
Fix typos of files under the site directory
Signed-off-by: Tsuyoshi Hombashi <[email protected]>
1 parent dd69518 commit 9d0a5a4

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

site/book/02-concepts/03-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ KRM resources. Some example use cases:
77
- Add a label to resources based on some filtering criteria
88
- Use a `Team` custom resource to generate a `Namespace` and associated
99
organization-mandated defaults (e.g. `RBAC`, `ResourceQuota`, etc.) when
10-
bootstraping a new team
10+
bootstrapping a new team
1111
- Bulk transformation of all `PodSecurityPolicy` resources to improve the
1212
security posture.
1313
- Inject a sidecar container (service mesh, mysql proxy, logging) in a workload

site/book/04-using-functions/01-declarative-function-execution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ For example, `set-labels:v0.1` is automatically expanded to `gcr.io/kpt-fn/set-l
124124
The `exec` field specifies the executable command for the function. You can specify
125125
an executable with arguments.
126126

127-
Example below uses `sed` executable to replace all occurances of `foo` with `bar`
127+
Example below uses `sed` executable to replace all occurrences of `foo` with `bar`
128128
in the package resources.
129129

130130
```yaml

site/book/05-developing-functions/02-developing-in-Go.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@ Learn more about the `KubeObject` from the [go doc](https://pkg.go.dev/github.co
120120
The "get-started" package contains a `./testdata` directory. You can use this to test out your functions.
121121

122122
```shell
123-
# Edit the `testdata/resources.yaml` with your KRM resources.
123+
# Edit the `testdata/test1/resources.yaml` with your KRM resources.
124124
# resources.yaml already has a `Deployment` and `Service` as test data.
125-
vim data/resources.yaml
125+
vim testdata/test1/resources.yaml
126126

127127
# Convert the KRM resources and FunctionConfig resource to `ResourceList`, and
128128
# then pipe the ResourceList as StdIn to your function

site/book/07-effective-customizations/01-single-value-replacement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ find all the appropriate resources that need the namespace.
120120
We have put in the starter name `bucket` and have an [ensure-name-substring]
121121
that shows the package consumer that the project ID prefix is what we suggest.
122122
However if they have a different naming convention they can alter the name
123-
prefix or suffix on all the resources in the pacakge.
123+
prefix or suffix on all the resources in the package.
124124

125125
Since we are trying to set the annotation to the project ID we can use the
126126
[set-annotations] function one time and the annotation are going to be set on

site/book/08-package-orchestration/01-system-requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
In order to follow the packge orchestration examples, you will need:
1+
In order to follow the package orchestration examples, you will need:
22

33
* the Package Orchestration service (Porch)
44
[installed](https://kpt.dev/guides/porch-installation) in your Kubernetes

site/guides/namespace-provisioning-ui.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ namespace team blueprint using the UI.
113113
- Click the **SAVE** button to close the add resource dialog.
114114
- Click the **ADD BUTTON** button and add a new Resource Quota resource.
115115
- In the Resource Metadata section, name the resource "base".
116-
- In the Compute Resources setion, set Max CPU Requests to "40" and Max
116+
- In the Compute Resources section, set Max CPU Requests to "40" and Max
117117
Memory Requests to "40G".
118118
- Click the **SAVE** button to close the add resource dialog.
119119
- Click the **SAVE** button on the upper right corner of the screen.

site/guides/porch-user-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ deployments-e06c2f6ec1afdd8c7d977fcf204e4d543778ddac cloned-bucket v1
426426
deployments-11ca1db650fa4bfa33deeb7f488fbdc50cdb3b82 istions-clone v1 false Draft deployments
427427
deployments-c32b851b591b860efda29ba0e006725c8c1f7764 new-package v1 false Draft deployments
428428

429-
# Propose two packge revisions to be be published
429+
# Propose two package revisions to be be published
430430
$ kpt alpha rpkg propose \
431431
deployments-11ca1db650fa4bfa33deeb7f488fbdc50cdb3b82 \
432432
deployments-c32b851b591b860efda29ba0e006725c8c1f7764 \

site/installation/migration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ kpt `v0.39`) to `v1` version(compatible with kpt `v1.0`).
346346
[kpt-functions-catalog]. You can start migrating your existing kpt packages
347347
using the function.
348348
3. `July 1, 2021:` Package format `v1` will be released which guarantees
349-
backwards compatability for new packages going forward. The existing kpt
349+
backwards compatibility for new packages going forward. The existing kpt
350350
packages are not compatible with the kpt `v1.0` binary and users will be
351351
prompted to migrate/fix their packages.
352352
4. `TBD:` Feature releases and bug fixes for pre-v1 versions of kpt will be

site/reference/annotations/apply-time-mutation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ will not follow the rules specified by these annotations.
9595
### JSONPath syntax
9696

9797
Since there is no formal specification for JSONPath, the supported syntax
98-
depends on the chosen implimentation. In this case, kpt uses the
98+
depends on the chosen implementation. In this case, kpt uses the
9999
[ajson](https://github.com/spyzhov/ajson) library. For details about what
100100
language features are supported, see the
101101
[json-path-comparison table](https://cburgmer.github.io/json-path-comparison/).

site/reference/schema/plan/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ applied. Each entry in the list contains the `apiVersion`, `kind`, `name`, and `
88
also contains an `action` field, which defines which action will be taken on the resource during apply. It can have one of
99
the values:
1010
* **Create**: The resource does not currently exist in the cluster and will be created.
11-
* **Unchanged**: The resource exists in the cluster and there are no chnages to it.
11+
* **Unchanged**: The resource exists in the cluster and there are no changes to it.
1212
* **Delete**: The resource exists in the cluster, but is not among the applied resources. Therefore it will be pruned.
1313
* **Update**: The resource exists in the cluster and will be updated.
1414
* **Skip**: No changes will be made to this resource due to the presence of one or more lifecycle directives.

0 commit comments

Comments
 (0)