Skip to content

Commit

Permalink
fix: launchpad rollingupdate (#4285)
Browse files Browse the repository at this point in the history
  • Loading branch information
c121914yu committed Nov 10, 2023
1 parent edc5ccb commit c39bd89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/providers/applaunchpad/src/utils/deployYaml2Json.ts
Expand Up @@ -36,8 +36,8 @@ export const json2DeployCr = (data: AppEditType, type: 'deployment' | 'statefuls
strategy: {
type: 'RollingUpdate',
rollingUpdate: {
maxUnavailable: 1,
maxSurge: 0
maxUnavailable: 0,
maxSurge: 1
}
}
};
Expand Down

0 comments on commit c39bd89

Please sign in to comment.