You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -359,6 +359,7 @@ All available values are listed on the [artifacthub](https://artifacthub.io/pack
359
359
| service.ports.app.protocol | string | `"TCP"` | Service protocol |
360
360
| service.ports.app.targetPort | string | `"http"` | Service target port |
361
361
| service.type | string | `"ClusterIP"` | Service type |
362
+
| strategyType | string | `"RollingUpdate"` | `strategyType` specifies the strategy used to replace old Pods by new ones. `strategyType` can be `"Recreate"` or `"RollingUpdate"`. `"RollingUpdate"` is the default value and updates Pods in a rolling update fashion. `"Recreate"` will kill all existing Pods before new ones are created. The `"Recreate"` strategy is necessary when persistent volume's `accessMode` is set to `"ReadWriteOnce"` when using `helm upgrade`, as pod volume attachments to an existing PersistentVolumeClaim need to be cleared before a new pod can attach to it. |
362
363
| tolerations | list | `[]` | Node tolerations for pod scheduling |
0 commit comments