Skip to content

Commit 6ae6b7e

Browse files
authored
fix(docs): minor spelling and grammar fixes (#578)
1 parent 35f9368 commit 6ae6b7e

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

website/docs/docs/concepts/00-resource-group-definitions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ defining:
2121
- What status to expose (status)
2222

2323
When you create a **ResourceGraphDefinition**, kro generates a new API (a.k.a Custom
24-
Resource Defintion) in your cluster that others can use to deploy resources in a
24+
Resource Definition) in your cluster that others can use to deploy resources in a
2525
consistent, controlled way.
2626

2727
## Anatomy of a ResourceGraphDefinition
@@ -126,7 +126,7 @@ correctness and set up the necessary components:
126126
- Validates your schema definition follows the simple schema format
127127
- Ensures all resource templates are valid Kubernetes manifests
128128
- Checks that referenced values exist and are of the correct type
129-
- Confirms resource dependencies form a valid Directed Acycled Graph(DAG)
129+
- Confirms resource dependencies form a valid Directed Acyclic Graph(DAG)
130130
without cycles
131131
- Validates all CEL expressions in status fields and conditions
132132
@@ -158,7 +158,7 @@ its behavior accordingly.
158158
## ResourceGraphDefinition Instance Example
159159

160160
After the **ResourceGraphDefinition** is validated and registered in the cluster, users
161-
can can create instances of it. Here's an example of how an instance for the
161+
can create instances of it. Here's an example of how an instance for the
162162
`WebApplication` might look:
163163

164164
```yaml title="my-web-app-instance.yaml"
@@ -198,4 +198,4 @@ resources:
198198
namespace: # optional, if empty uses instance namespace
199199
```
200200

201-
As part of the processing the Resource Graph, the instance reconciler waits for the `externalRef` object to be present and reads the object from the cluster as a node in the graph. Subsequent resources can use data from this node.
201+
As part of processing the Resource Graph, the instance reconciler waits for the `externalRef` object to be present and reads the object from the cluster as a node in the graph. Subsequent resources can use data from this node.

website/docs/docs/concepts/10-simple-schema.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ metrics: "map[string]float"
118118
### Custom Types
119119

120120
Custom types are specified in the separate `types` section.
121-
They provide a map of names to type specifications, that follow the simple schema.
121+
They provide a map of names to type specifications that follow the simple schema.
122122

123123
Example:
124124

website/docs/docs/concepts/20-access-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ effectively also has admin access to the cluster.
2525

2626
## `aggregation` Access
2727

28-
In the `aggreagation` access mode, the chart includes an [_aggregated_ `ClusterRole`](https://kubernetes.io/docs/reference/access-authn-authz/rbac/#aggregated-clusterroles)
28+
In the `aggregation` access mode, the chart includes an [_aggregated_ `ClusterRole`](https://kubernetes.io/docs/reference/access-authn-authz/rbac/#aggregated-clusterroles)
2929
which dynamically includes all rules from all `ClusterRoles` that have the label
3030
`rbac.kro.run/aggregate-to-controller: "true"`.
3131

website/docs/docs/getting-started/01-Installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ helm upgrade kro oci://ghcr.io/kro-run/kro/kro \
9999
:::info[**CRD Updates**]
100100

101101
Helm does not support updating CRDs, so you may need to manually update or
102-
remove and re-apply kro related CRDs. For more information, refer to the Helm
102+
remove and reapply kro related CRDs. For more information, refer to the Helm
103103
documentation.
104104

105105
:::

website/docs/docs/getting-started/02-deploy-a-resource-graph-definition.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ spec:
136136
kubectl apply -f resourcegraphdefinition.yaml
137137
```
138138

139-
3. **Inpsect the `ResourceGraphDefinition`**: Check the status of the resources created by
139+
3. **Inspect the `ResourceGraphDefinition`**: Check the status of the resources created by
140140
the ResourceGraphDefinition using the `kubectl` command:
141141

142142
```bash
@@ -154,7 +154,7 @@ spec:
154154
### Create your Application Instance
155155

156156
Now that your `ResourceGraphDefinition` is created, kro has generated a new API
157-
(Application) that orchestrates creation of the a `Deployment`, a `Service`, and
157+
(Application) that orchestrates the creation of a `Deployment`, a `Service`, and
158158
an `Ingress`. Let's use it!
159159

160160
1. **Create an Application instance**: Create a new file named `instance.yaml`

website/docs/docs/overview.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ standardized and streamlined manner.
3535
<div align="center">
3636

3737
![End user interface - Custom API](../../../images/architecture-diagrams/KRO-Dev-Interface.png)
38-
_Fugure 1: End user interface - Custom API_
38+
_Figure 1: End user interface - Custom API_
3939

4040
</div>
4141

@@ -50,14 +50,14 @@ In the depicted example, the **Platform Team** has created a **RG** with
5050
arbitrary name "Application Stack" that encapsulates the necessary resources,
5151
along with any additional logic, abstractions, and security best practices. When
5252
the RGD is applied to the cluster, a new API of kind ApplicationStack is created
53-
and available for Developer to interact with. The Developers no longer need to
53+
and available for the Developer to interact with. The Developers no longer need to
5454
directly manage the underlying infrastructure complexities, as the custom API
5555
handles the deployment and configuration of the required resources.
5656

5757
<div align="center">
5858

5959
![Platform Team Interface](../../../images/architecture-diagrams/KRO-Platform-Team.png)
60-
_Fugure 2: ResourceGraphDefinition (RG) - Platform Team Interface_
60+
_Figure 2: ResourceGraphDefinition (RG) - Platform Team Interface_
6161

6262
</div>
6363

@@ -75,7 +75,7 @@ requirements.
7575
<div align="center">
7676

7777
![ResourceGraphDefinition Instance](../../../images/architecture-diagrams/KRO-Instance.png)
78-
_Fugure 3: ResourceGraphDefinition Instance (RGI)_
78+
_Figure 3: ResourceGraphDefinition Instance (RGI)_
7979

8080
</div>
8181

0 commit comments

Comments
 (0)