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
feat: Add TopologySpreadConstraint and PodDistruptionBudget support (#47)
Added an option to enable a PodDistruptionBudget for the relay
deployment. In the values file you can specify a maxUnavailable or a
minAvailable, but can't specify both. If both are specified the
maxUnavailable takes precedence. If you enabled the PDB but don't
specify any max or min values then minAvailable will be set with a value
of 0. Tests have been added to cover these cases
Adds an option to specify multiple TopologySpreadConstraints in the
values file which will be used by the relay deployment. If you don't
specify LabelSelector in the values it will use the default
selectorLabels from the template which is recommended.
Co-authored-by: Aaron Pejakovic <aaron.pejakovic@elmosoftware.com.au>
| pod.distruptionBudget.minAvailable | string |`""`| Minimum number of pods that are available after eviction as number or percentage |
83
+
| pod.distruptionBudget.maxUnavailable | string |`""`| Maximum number of pods that are unavailable after eviction as number or percentage |
84
+
| pod.topologySpreadConstraints | array |`[]`| Specify the topology spread constrait definitions to apply to the relay deployment |
82
85
83
86
## Learn more
84
87
@@ -90,14 +93,14 @@ We encourage pull requests and other contributions from the community. Check out
90
93
91
94
## About LaunchDarkly
92
95
93
-
* LaunchDarkly is a continuous delivery platform that provides feature flags as a service and allows developers to iterate quickly and safely. We allow you to easily flag your features and manage them from the LaunchDarkly dashboard. With LaunchDarkly, you can:
94
-
* Roll out a new feature to a subset of your users (like a group of users who opt-in to a beta tester group), gathering feedback and bug reports from real-world use cases.
95
-
* Gradually roll out a feature to an increasing percentage of users, and track the effect that the feature has on key metrics (for instance, how likely is a user to complete a purchase if they have feature A versus feature B?).
96
-
* Turn off a feature that you realize is causing performance problems in production, without needing to re-deploy, or even restart the application with a changed configuration file.
97
-
* Grant access to certain features based on user attributes, like payment plan (eg: users on the ‘gold’ plan get access to more features than users in the ‘silver’ plan). Disable parts of your application to facilitate maintenance, without taking everything offline.
98
-
* LaunchDarkly provides feature flag SDKs for a wide variety of languages and technologies. Read [our documentation](https://docs.launchdarkly.com/docs) for a complete list.
99
-
* Explore LaunchDarkly
100
-
*[launchdarkly.com](https://www.launchdarkly.com/"LaunchDarkly Main Website") for more information
101
-
*[docs.launchdarkly.com](https://docs.launchdarkly.com/"LaunchDarkly Documentation") for our documentation and SDK reference guides
102
-
*[apidocs.launchdarkly.com](https://apidocs.launchdarkly.com/"LaunchDarkly API Documentation") for our API documentation
103
-
*[launchdarkly.com/blog](https://launchdarkly.com/blog/"LaunchDarkly Blog Documentation") for the latest product updates
96
+
- LaunchDarkly is a continuous delivery platform that provides feature flags as a service and allows developers to iterate quickly and safely. We allow you to easily flag your features and manage them from the LaunchDarkly dashboard. With LaunchDarkly, you can:
97
+
- Roll out a new feature to a subset of your users (like a group of users who opt-in to a beta tester group), gathering feedback and bug reports from real-world use cases.
98
+
- Gradually roll out a feature to an increasing percentage of users, and track the effect that the feature has on key metrics (for instance, how likely is a user to complete a purchase if they have feature A versus feature B?).
99
+
- Turn off a feature that you realize is causing performance problems in production, without needing to re-deploy, or even restart the application with a changed configuration file.
100
+
- Grant access to certain features based on user attributes, like payment plan (eg: users on the ‘gold’ plan get access to more features than users in the ‘silver’ plan). Disable parts of your application to facilitate maintenance, without taking everything offline.
101
+
- LaunchDarkly provides feature flag SDKs for a wide variety of languages and technologies. Read [our documentation](https://docs.launchdarkly.com/docs) for a complete list.
102
+
- Explore LaunchDarkly
103
+
-[launchdarkly.com](https://www.launchdarkly.com/"LaunchDarkly Main Website") for more information
104
+
-[docs.launchdarkly.com](https://docs.launchdarkly.com/"LaunchDarkly Documentation") for our documentation and SDK reference guides
105
+
-[apidocs.launchdarkly.com](https://apidocs.launchdarkly.com/"LaunchDarkly API Documentation") for our API documentation
106
+
-[launchdarkly.com/blog](https://launchdarkly.com/blog/"LaunchDarkly Blog Documentation") for the latest product updates
0 commit comments