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
Both unit and integration tests can be run with Gradle. From the Polaris repo root:
191
191
@@ -321,6 +321,11 @@ Both unit and integration tests can be run with Gradle. From the Polaris repo ro
321
321
| persistence.relationalJdbc.secret.username | string |`"username"`| The secret key holding the database username for authentication |
322
322
| persistence.type | string |`"in-memory"`| The type of persistence to use. Two built-in types are supported: in-memory and relational-jdbc. The eclipse-link type is also supported but is deprecated. |
323
323
| podAnnotations | object |`{}`| Annotations to apply to polaris pods. |
324
+
| podDisruptionBudget | object |`{"annotations":{},"enabled":false,"maxUnavailable":null,"minAvailable":null}`| Pod disruption budget settings. |
325
+
| podDisruptionBudget.annotations | object |`{}`| Annotations to add to the pod disruption budget. |
326
+
| podDisruptionBudget.enabled | bool |`false`| Specifies whether a pod disruption budget should be created. |
327
+
| podDisruptionBudget.maxUnavailable | string |`nil`| The maximum number of pods that can be unavailable during disruptions. Can be an absolute number (ex: 5) or a percentage of desired pods (ex: 50%). IMPORTANT: Cannot be used simultaneously with minAvailable. |
328
+
| podDisruptionBudget.minAvailable | string |`nil`| The minimum number of pods that should remain available during disruptions. Can be an absolute number (ex: 5) or a percentage of desired pods (ex: 50%). IMPORTANT: Cannot be used simultaneously with maxUnavailable. |
324
329
| podLabels | object |`{}`| Additional Labels to apply to polaris pods. |
325
330
| podSecurityContext | object |`{"fsGroup":10001,"seccompProfile":{"type":"RuntimeDefault"}}`| Security context for the polaris pod. See https://kubernetes.io/docs/tasks/configure-pod-container/security-context/.|
326
331
| podSecurityContext.fsGroup | int |`10001`| GID 10001 is compatible with Polaris OSS default images; change this if you are using a different image. |
0 commit comments