diff --git a/config/crd/bases/anywhere.eks.amazonaws.com_clusters.yaml b/config/crd/bases/anywhere.eks.amazonaws.com_clusters.yaml index 0f323ebf4a00..492d5b4c0664 100644 --- a/config/crd/bases/anywhere.eks.amazonaws.com_clusters.yaml +++ b/config/crd/bases/anywhere.eks.amazonaws.com_clusters.yaml @@ -539,7 +539,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 diff --git a/config/manifest/eksa-components.yaml b/config/manifest/eksa-components.yaml index 6eb5176e7194..76ff8d1e65da 100644 --- a/config/manifest/eksa-components.yaml +++ b/config/manifest/eksa-components.yaml @@ -4242,7 +4242,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 diff --git a/pkg/api/v1alpha1/cluster_types.go b/pkg/api/v1alpha1/cluster_types.go index fbc7f79d04aa..54697ebac7ee 100644 --- a/pkg/api/v1alpha1/cluster_types.go +++ b/pkg/api/v1alpha1/cluster_types.go @@ -241,7 +241,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"`