Skip to content

Commit 5dafcba

Browse files
authored
Merge pull request #436 from anmazzotti/force_cluster_apply_patch-0-14
[release-0.14] force server-side Apply patch for Fleet Clusters (#431)
2 parents 91a043e + 32a39cb commit 5dafcba

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/controllers/cluster.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,10 +179,12 @@ impl FleetBundle for FleetClusterBundle {
179179
}
180180

181181
if self.config.cluster_patch_enabled() {
182+
let mut patch_params = PatchParams::apply("addon-provider-fleet");
183+
patch_params.force = true;
182184
patch(
183185
ctx.clone(),
184186
cluster,
185-
&PatchParams::apply("addon-provider-fleet"),
187+
&patch_params,
186188
)
187189
.await?
188190
} else {

0 commit comments

Comments
 (0)