Skip to content

Commit

Permalink
feat: protect binary name (#300)
Browse files Browse the repository at this point in the history
protect binary name
  • Loading branch information
danj-replicated authored Jan 25, 2024
1 parent ce662f9 commit 889752e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ func (e *EmbeddedClusterOperator) HostPreflights() (*v1beta2.HostPreflightSpec,
// GetProtectedFields returns the protected fields for the embedded charts.
// placeholder for now.
func (e *EmbeddedClusterOperator) GetProtectedFields() map[string][]string {
protectedFields := []string{}
protectedFields := []string{
"embeddedBinaryName",
}
return map[string][]string{releaseName: protectedFields}
}

Expand Down

0 comments on commit 889752e

Please sign in to comment.