Skip to content

Commit

Permalink
fix: probe methods conflict force apply
Browse files Browse the repository at this point in the history
  • Loading branch information
devthejo committed May 31, 2024
1 parent 663f6ba commit 880e2ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion plugins/contrib/deploy-with/kubectl-dependency-tree.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,10 @@ module.exports = async (options, context) => {
} catch (err) {
if (
err.message.includes("field is immutable") ||
err.message.includes("invalid: spec: Forbidden: updates")
err.message.includes("invalid: spec: Forbidden: updates") ||
err.message.includes(
"Forbidden: may not specify more than 1 handler type"
)
) {
return handleFieldIsImmutableError(manifest, err)
}
Expand Down
1 change: 0 additions & 1 deletion plugins/fabrique/kontinuous.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ dependencies:
kindsForceRecreate:
- "Job"
- "Policy"
- "Deployment" # remove in future
kapp:
options:
kubeApiQps: 1000
Expand Down

0 comments on commit 880e2ed

Please sign in to comment.