Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release-0.18] Fix typo in registry mirror config comment #8091

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion config/crd/bases/anywhere.eks.amazonaws.com_clusters.yaml
Original file line number Diff line number Diff line change
@@ -450,7 +450,8 @@ spec:
in the local registry
type: string
registry:
description: Name refers to the name of the upstream registry
description: Registry refers to the name of the upstream
registry
type: string
required:
- namespace
3 changes: 2 additions & 1 deletion config/manifest/eksa-components.yaml
Original file line number Diff line number Diff line change
@@ -4086,7 +4086,8 @@ spec:
in the local registry
type: string
registry:
description: Name refers to the name of the upstream registry
description: Registry refers to the name of the upstream
registry
type: string
required:
- namespace
2 changes: 1 addition & 1 deletion pkg/api/v1alpha1/cluster_types.go
Original file line number Diff line number Diff line change
@@ -221,7 +221,7 @@ type RegistryMirrorConfiguration struct {

// OCINamespace represents an entity in a local reigstry to group related images.
type OCINamespace struct {
// Name refers to the name of the upstream registry
// Registry refers to the name of the upstream registry
Registry string `json:"registry"`
// Namespace refers to the name of a namespace in the local registry
Namespace string `json:"namespace"`