Skip to content

Commit

Permalink
fix - exported type Dependencies should have comment or be unexported
Browse files Browse the repository at this point in the history
Signed-off-by: rcmadhankumar <rcmadhankumar@gmail.com>
  • Loading branch information
rcmadhankumar committed Feb 14, 2024
1 parent 6a84407 commit a491dc6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion config/config/crds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1532,7 +1532,6 @@ spec:
description: Dependencies can be controlled through this section
properties:
install:
description: Indicates whether to install depencies along with or not
type: boolean
type: object
noopDelete:
Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/packaging/v1alpha1/package_install.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ type PackageInstallStatus struct {
LastAttemptedVersion string `json:"lastAttemptedVersion,omitempty"`
}

// Dependencies controls whether to install depency packages along with the current package or not
type Dependencies struct {
// Indicates whether to install depencies along with or not
// +optional
Install bool `json:"install,omitempty"`
}

0 comments on commit a491dc6

Please sign in to comment.