Skip to content

Commit 52ad7fc

Browse files
committed
s/KRO/kro/g: decapitalize kro in documentation and code.
1 parent 087c850 commit 52ad7fc

File tree

29 files changed

+522
-374
lines changed

29 files changed

+522
-374
lines changed

.github/ISSUE_TEMPLATE/bug.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ body:
1818
**Reproduction Steps** (Please include `ResourceGroup` and `Instances` files):
1919
2020
**Versions**:
21-
- KRO Version:
21+
- kro version:
2222
- Kubernetes Version (`kubectl version`):
2323
2424
**Involved Controllers**:

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,13 +175,13 @@ $(CONTROLLER_GEN): $(LOCALBIN)
175175
GOBIN=$(LOCALBIN) go install sigs.k8s.io/controller-tools/cmd/controller-gen@$(CONTROLLER_TOOLS_VERSION)
176176

177177
.PHONY: image
178-
build-image: ## Build the KRO controller images using ko build
178+
build-image: ## Build the kro controller images using ko build
179179
$(WITH_GOFLAGS) KOCACHE=$(KOCACHE) KO_DOCKER_REPO="095708837592.dkr.ecr.us-west-2.amazonaws.com/kro" \
180180
ko build --bare github.com/awslabs/kro/cmd/controller \
181181
--push=false --tags ${RELEASE_VERSION} --sbom=none
182182

183183
.PHONY: publish
184-
publish-image: ## Publish the KRO controller images to ECR
184+
publish-image: ## Publish the kro controller images to ECR
185185
$(WITH_GOFLAGS) KOCACHE=$(KOCACHE) KO_DOCKER_REPO="095708837592.dkr.ecr.us-west-2.amazonaws.com/kro" \
186186
ko publish --bare github.com/awslabs/kro/cmd/controller \
187187
--tags ${RELEASE_VERSION} --sbom=none

api/v1alpha1/conditions.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ type ConditionType string
2222

2323
const (
2424
// ResourceGroupConditionTypeGraphSynced indicates the state of the directed
25-
// acyclic graph (DAG) that KRO uses to manage the resources in a
25+
// acyclic graph (DAG) that kro uses to manage the resources in a
2626
// ResourceGroup.
2727
ResourceGroupConditionTypeGraphVerified ConditionType = "kro.aws.dev/GraphVerified"
2828
// ResourceGroupConditionTypeCustomResourceDefinitionSynced indicates the state of the
29-
// CustomResourceDefinition (CRD) that KRO uses to manage the resources in a
29+
// CustomResourceDefinition (CRD) that kro uses to manage the resources in a
3030
// ResourceGroup.
3131
ResourceGroupConditionTypeCustomResourceDefinitionSynced ConditionType = "kro.aws.dev/CustomResourceDefinitionSynced"
3232
// ResourceGroupConditionTypeReconcilerReady indicates the state of the reconciler.
33-
// Whenever an ResourceGroup resource is created, KRO will spin up a
33+
// Whenever an ResourceGroup resource is created, kro will spin up a
3434
// reconciler for that resource. This condition indicates the state of the
3535
// reconciler.
3636
ResourceGroupConditionTypeReconcilerReady ConditionType = "kro.aws.dev/ReconcilerReady"

examples/ack-controller/ec2-controller/ec2-controller.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
iamRole:
2020
maxSessionDuration: integer | default=3600
2121
oidcProvider: string | required=true
22-
roleDescription: string | default=IRSA role for ACK EC2 controller deployement on EKS cluster using KRO Resource group
22+
roleDescription: string | default=IRSA role for ACK EC2 controller deployement on EKS cluster using kro Resource group
2323
image:
2424
deletePolicy: string | default=delete
2525
repository: string | default=public.ecr.aws/aws-controllers-k8s/ec2-controller

examples/ack-controller/eks-controller/eks-controller.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
iamRole:
2020
maxSessionDuration: integer | default=3600
2121
oidcProvider: string | required=true
22-
roleDescription: string | default=IRSA role for ACK EKS controller deployement on EKS cluster using KRO Resource group
22+
roleDescription: string | default=IRSA role for ACK EKS controller deployement on EKS cluster using kro Resource group
2323
iamPolicy:
2424
# would prefer to add a policyDocument here, need to support multiline string here
2525
description: string | default="policy for eks controller"

0 commit comments

Comments
 (0)