Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

This page will cover a few examples for patches that can be applied by users to their EC Deployment.

Changing Rollout Strategy

By default, the  EC Deployment rollout strategy is set to RollingUpdate type. If for some reason you would like to change the rollout strategy for an EC Deployment, you can use EC Deployment's patch to change the rollout strategy. So the example will have us changing from the RollingUpdate to the Recreate type.

  patchType: "application/strategic-merge-patch+json"
  patch: |
    spec:
      strategy:
        type: Recreate


  • No labels