Skip to content

Commit 51a12b6

Browse files
authored
Merge pull request #8590 from humblec/new-registry-images
correct readme in various places
2 parents b2311f3 + 82d0c8e commit 51a12b6

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

apps/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ actually fits the apps we run today.
2929
## known issues
3030

3131
- enforcement
32-
- OWNER constraints enforcemed by humans
32+
- OWNER constraints enforced by humans
3333
- no validation of yaml beyond yamllint
3434
- `app:` convention enforcement by humans
3535
- `*.yaml` can be more than k8s resources

audit/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To volunteer for this effort, contact the main
1818

1919
## Requesting a Audit PR for review
2020

21-
The process for sumbitting an audit uses Github PRs.
21+
The process for submitting an audit uses Github PRs.
2222

2323
### audit.sh
2424

@@ -34,7 +34,7 @@ Once this PR is created, it should be acknowledged by a secondary auditor.
3434
### Performing an audit
3535

3636
Note that this is an AUDIT, not a request for change.
37-
The audits can be used to generate discussion for reviewing the changes that have already occured.
37+
The audits can be used to generate discussion for reviewing the changes that have already occurred.
3838

3939
#### Update Pull Request
4040
First, the requesting auditor opens a PR with any updates applied to the appropriate YAML/JSON file.

dns/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ docker run -ti \
136136
--doit # leave this off if you want to do a dry-run
137137
```
138138
139-
## How do add a new domain
139+
## How to add a new domain
140140
141-
1. If the domain has existing records, be sure to accuire a copy of the existing zone.
141+
1. If the domain has existing records, be sure to acquire a copy of the existing zone.
142142
1. Modify the `dns/octodns-config.yaml` file to include the new domain, including the canary subdomain.
143143
1. In the "Cloud DNS" panel of the `kubernetes-public` project, create two zones: one for the actual domain, and one for the canary subdomain.
144144
1. Create the zone files in the `dns/zone-configs` directory:

groups/reconcile.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ func NewReconciler(ctx context.Context, clientOption option.ClientOption, numWor
229229
}
230230

231231
func (r *Reconciler) ReconcileGroups(groups []GoogleGroup) error {
232-
// aggregate the errors that occured and return them together in the end.
232+
// aggregate the errors that occurred and return them together in the end.
233233
var errs []error
234234
groupChan := make(chan GoogleGroup, len(groups))
235235
for _, g := range groups {

groups/service.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ func (as *adminService) AddOrUpdateGroupMembers(group GoogleGroup, role string,
146146
return fmt.Errorf("unable to retrieve members in group %q: %w", group.EmailId, err)
147147
}
148148

149-
// aggregate the errors that occured and return them together in the end.
149+
// aggregate the errors that occurred and return them together in the end.
150150
var errs []error
151151

152152
for _, memberEmailId := range members {
@@ -272,7 +272,7 @@ func (as *adminService) DeleteGroupsIfNecessary() error {
272272
return fmt.Errorf("unable to retrieve users in domain: %w", err)
273273
}
274274

275-
// aggregate the errors that occured and return them together in the end.
275+
// aggregate the errors that occurred and return them together in the end.
276276
var errs []error
277277

278278
for _, g := range g.Groups {
@@ -321,7 +321,7 @@ func (as *adminService) RemoveOwnerOrManagersFromGroup(group GoogleGroup, member
321321
return fmt.Errorf("unable to retrieve members in group %q: %w", group.EmailId, err)
322322
}
323323

324-
// aggregate the errors that occured and return them together in the end.
324+
// aggregate the errors that occurred and return them together in the end.
325325
var errs []error
326326

327327
for _, m := range l {
@@ -377,7 +377,7 @@ func (as *adminService) RemoveMembersFromGroup(group GoogleGroup, members []stri
377377
return fmt.Errorf("unable to retrieve members in group %q: %w", group.EmailId, err)
378378
}
379379

380-
// aggregate the errors that occured and return them together in the end.
380+
// aggregate the errors that occurred and return them together in the end.
381381
var errs []error
382382

383383
for _, m := range l {

infra/gcp/terraform/k8s-infra-prow-build/prow-build/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ gsutil iam ch \
108108

109109
- resources are deployed by [post-k8sio-deploy-prow-build-resources] when PRs
110110
merge
111-
- the job runs [deploy.sh] to deploy resources; if neccessary, users with
111+
- the job runs [deploy.sh] to deploy resources; if necessary, users with
112112
[sufficient privileges](#access) can run this script to do the same thing
113113

114114
#### Deploy cluster changes

0 commit comments

Comments
 (0)