Skip to content

Commit 5edbb1c

Browse files
committed
an
1 parent 34ff788 commit 5edbb1c

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

website/docs/docs/concepts/00-resource-groups.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ changes, updating the corresponding CRD and micro-controller as necessary.
128128
## **ResourceGroup** Instance Example
129129

130130
After the **ResourceGroup** is processed, users can create instances of it.
131-
Here's an example of how a instance for the `SimpleWebApp` might look:
131+
Here's an example of how an instance for the `SimpleWebApp` might look:
132132

133133
```yaml title="my-web-app-instance.yaml"
134134
apiVersion: kro.run/v1alpha1

website/docs/docs/concepts/15-instances.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ Instances are a fundamental concept in **KRO** that represent instances of
88
ResourceGroups. They define the desired state of a set of resources, which KRO
99
continuously works to maintain.
1010

11-
## What is a Instance?
11+
## What is an Instance?
1212

13-
A Instance is a Kubernetes custom resource that:
13+
An Instance is a Kubernetes custom resource that:
1414

1515
- References a specific ResourceGroup
1616
- Provides values for the parameters defined in the ResourceGroup
1717
- Represents the desired state of a set of Kubernetes resources
1818

19-
## Anatomy of a Instance
19+
## Anatomy of an Instance
2020

21-
Here's an example of a Instance for a `WebApplication` ResourceGroup:
21+
Here's an example of an Instance for a `WebApplication` ResourceGroup:
2222

2323
```yaml
2424
apiVersion: kro.run/v1alpha1
@@ -37,7 +37,7 @@ spec:
3737
LOG_LEVEL: debug
3838
```
3939
40-
:::tip The spec fields of a Instance correspond to the parameters defined in the
40+
:::tip The spec fields of an Instance correspond to the parameters defined in the
4141
ResourceGroup. :::
4242
4343
## The reconciliation loop

website/docs/docs/concepts/20-collections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ based on the `podCount` parameter.
6161

6262
## Using Collections in Instances
6363

64-
When creating a instance, users can specify the count for the collection:
64+
When creating an instance, users can specify the count for the collection:
6565

6666
```yaml
6767
apiVersion: kro.run/v1alpha1

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,11 @@ spec:
9292
deployment-service v1alpha1 DeploymentService ACTIVE 16m
9393
```
9494

95-
4. **Install a resource group instance**: Create a instance for the resource group you
95+
4. **Install a resource group instance**: Create an instance for the resource group you
9696
just deployed. Instances are used to define the desired state of the resources
9797
in the ResourceGroup.
9898

99-
Here's an example of a Instance for the `EKSCluster` ResourceGroup:
99+
Here's an example of an Instance for the `EKSCluster` ResourceGroup:
100100

101101
```yaml
102102
apiVersion: kro.run/v1alpha1
@@ -107,5 +107,5 @@ spec:
107107
name: app1
108108
```
109109

110-
The spec fields of a Instance correspond to the parameters defined in the
110+
The spec fields of an Instance correspond to the parameters defined in the
111111
ResourceGroup.

0 commit comments

Comments
 (0)