Skip to content

Commit 889752e

Browse files
feat: protect binary name (#300)
protect binary name
1 parent ce662f9 commit 889752e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pkg/addons/embeddedclusteroperator/embeddedclusteroperator.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ func (e *EmbeddedClusterOperator) HostPreflights() (*v1beta2.HostPreflightSpec,
6363
// GetProtectedFields returns the protected fields for the embedded charts.
6464
// placeholder for now.
6565
func (e *EmbeddedClusterOperator) GetProtectedFields() map[string][]string {
66-
protectedFields := []string{}
66+
protectedFields := []string{
67+
"embeddedBinaryName",
68+
}
6769
return map[string][]string{releaseName: protectedFields}
6870
}
6971

0 commit comments

Comments
 (0)