Skip to content

Commit 0218f42

Browse files
committed
omit snapshot 4 (rebase): fix description
1 parent e21495e commit 0218f42

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

api/v1alpha1/configuredresource_types.go

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,20 +89,18 @@ func (in *ConfiguredResource) GetOCIArtifact() *OCIArtifactInfo {
8989
return in.Status.OCIArtifact
9090
}
9191

92-
// GetOCIRepository returns the name of the OCI repository of the OCI artifact in which the component
93-
// descriptors are stored.
92+
// GetOCIRepository returns the name of the OCI repository of the OCI artifact in which the configured resource is
93+
// stored.
9494
func (in *ConfiguredResource) GetOCIRepository() string {
9595
return in.Status.OCIArtifact.Repository
9696
}
9797

98-
// GetManifestDigest returns the manifest digest of the OCI artifact, in which the component descriptors
99-
// are stored.
98+
// GetManifestDigest returns the manifest digest of the OCI artifact, in which the configured resource is stored.
10099
func (in *ConfiguredResource) GetManifestDigest() string {
101100
return in.Status.OCIArtifact.Digest
102101
}
103102

104-
// GetBlobDigest returns the blob digest of the OCI artifact, in which the component descriptors
105-
// are stored.
103+
// GetBlobDigest returns the blob digest of the OCI artifact, in which the configured resource is stored.
106104
func (in *ConfiguredResource) GetBlobDigest() string {
107105
return in.Status.OCIArtifact.Blob.Digest
108106
}

api/v1alpha1/localizedresource_types.go

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,20 +77,18 @@ func (in *LocalizedResource) GetOCIArtifact() *OCIArtifactInfo {
7777
return in.Status.OCIArtifact
7878
}
7979

80-
// GetOCIRepository returns the name of the OCI repository of the OCI artifact in which the component
81-
// descriptors are stored.
80+
// GetOCIRepository returns the name of the OCI repository of the OCI artifact, in which the localized resource is
81+
// stored.
8282
func (in *LocalizedResource) GetOCIRepository() string {
8383
return in.Status.OCIArtifact.Repository
8484
}
8585

86-
// GetManifestDigest returns the manifest digest of the OCI artifact, in which the component descriptors
87-
// are stored.
86+
// GetManifestDigest returns the manifest digest of the OCI artifact, in which the localized resource is stored.
8887
func (in *LocalizedResource) GetManifestDigest() string {
8988
return in.Status.OCIArtifact.Digest
9089
}
9190

92-
// GetBlobDigest returns the blob digest of the OCI artifact, in which the component descriptors
93-
// are stored.
91+
// GetBlobDigest returns the blob digest of the OCI artifact, in which the localized resource is stored.
9492
func (in *LocalizedResource) GetBlobDigest() string {
9593
return in.Status.OCIArtifact.Blob.Digest
9694
}

0 commit comments

Comments
 (0)