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
@@ -31,6 +31,8 @@ The following table lists the configurable parameters of the PostHog chart and t
31
31
| events.hpa.minpods | int |`1`| Min pods for the events stack HorizontalPodAutoscaler. |
32
32
| events.hpa.maxpods | int |`10`| Max pods for the events stack HorizontalPodAutoscaler. |
33
33
| events.hpa.behavior | string |`nil`| Set the HPA behavior. See https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/ for configuration options |
| events.env | list |`[]`| Additional env variables to inject into the events stack, uses `web.env` if empty. |
35
37
| events.securityContext | object |`{"enabled":false}`| Container security context for the events stack HorizontalPodAutoscaler. |
36
38
| events.podSecurityContext | object |`{"enabled":false}`| Pod security context for the events stack HorizontalPodAutoscaler. |
@@ -42,6 +44,8 @@ The following table lists the configurable parameters of the PostHog chart and t
42
44
| web.hpa.minpods | int |`1`| Min pods for the web stack HorizontalPodAutoscaler. |
43
45
| web.hpa.maxpods | int |`10`| Max pods for the web stack HorizontalPodAutoscaler. |
44
46
| web.hpa.behavior | string |`nil`| Set the HPA behavior. See https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/ for configuration options |
47
+
| web.rollout.maxSurge | string |`"25%"`||
48
+
| web.rollout.maxUnavailable | string |`"25%"`||
45
49
| web.resources | object |`{}`| Resource limits for web service. |
46
50
| web.env | list |`[{"name":"SOCIAL_AUTH_GOOGLE_OAUTH2_KEY","value":null},{"name":"SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET","value":null},{"name":"SOCIAL_AUTH_GOOGLE_OAUTH2_WHITELISTED_DOMAINS","value":"posthog.com"}]`| Additional env variables to inject into the web stack deployment. |
47
51
| web.env[0]| object |`{"name":"SOCIAL_AUTH_GOOGLE_OAUTH2_KEY","value":null}`| Set google oauth 2 key. Requires posthog ee license. |
@@ -76,6 +80,8 @@ The following table lists the configurable parameters of the PostHog chart and t
76
80
| worker.hpa.minpods | int |`1`| Min pods for the worker stack HorizontalPodAutoscaler. |
77
81
| worker.hpa.maxpods | int |`10`| Max pods for the worker stack HorizontalPodAutoscaler. |
78
82
| worker.hpa.behavior | string |`nil`| Set the HPA behavior. See https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/ for configuration options |
| worker.env | list |`[]`| Additional env variables to inject into the worker stack deployment. |
80
86
| worker.resources | object |`{}`| Resource limits for the worker stack deployment. |
81
87
| worker.nodeSelector | object |`{}`| Node labels for the worker stack deployment. |
@@ -90,6 +96,8 @@ The following table lists the configurable parameters of the PostHog chart and t
90
96
| plugins.hpa.minpods | int |`1`| Min pods for the plugin-server stack HorizontalPodAutoscaler. |
91
97
| plugins.hpa.maxpods | int |`10`| Max pods for the plugin-server stack HorizontalPodAutoscaler. |
92
98
| plugins.hpa.behavior | string |`nil`| Set the HPA behavior. See https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/ for configuration options |
| plugins.env | list |`[]`| Additional env variables to inject into the plugin-server stack deployment. |
94
102
| plugins.resources | object |`{}`| Resource limits for the plugin-server stack deployment. |
95
103
| plugins.nodeSelector | object |`{}`| Node labels for the plugin-server stack deployment. |
@@ -115,6 +123,8 @@ The following table lists the configurable parameters of the PostHog chart and t
115
123
| pluginsAsync.hpa.minpods | int |`1`| Min pods for the plugin-server stack HorizontalPodAutoscaler. |
116
124
| pluginsAsync.hpa.maxpods | int |`10`| Max pods for the plugin-server stack HorizontalPodAutoscaler. |
117
125
| pluginsAsync.hpa.behavior | string |`nil`| Set the HPA behavior. See https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/ for configuration options |
| pluginsAsync.env | list |`[]`| Additional env variables to inject into the plugin-server stack deployment. |
119
129
| pluginsAsync.resources | object |`{}`| Resource limits for the plugin-server stack deployment. |
120
130
| pluginsAsync.nodeSelector | object |`{}`| Node labels for the plugin-server stack deployment. |
@@ -133,7 +143,7 @@ The following table lists the configurable parameters of the PostHog chart and t
133
143
| pluginsAsync.readinessProbe.successThreshold | int |`1`| The readiness probe success threshold |
134
144
| pluginsAsync.readinessProbe.timeoutSeconds | int |`5`| The readiness probe timeout seconds |
135
145
| pluginsAsync.sentryDSN | string |`nil`| Sentry endpoint to send errors to. Falls back to global sentryDSN |
136
-
| pluginsIngestion | object |`{"affinity":{},"enabled":false,"env":[],"hpa":{"behavior":null,"cputhreshold":60,"enabled":false,"maxpods":10,"minpods":1},"livenessProbe":{"failureThreshold":3,"initialDelaySeconds":10,"periodSeconds":10,"successThreshold":1,"timeoutSeconds":2},"nodeSelector":{},"podSecurityContext":{"enabled":false},"readinessProbe":{"failureThreshold":3,"initialDelaySeconds":50,"periodSeconds":30,"successThreshold":1,"timeoutSeconds":5},"replicacount":1,"resources":{},"securityContext":{"enabled":false},"sentryDSN":null,"tolerations":[]}`| A deconstructed plugin-server that handles the various workloads of the pipeline separately. For most workloads this will not be needed, rather you can disable the below plugins* and instead just use `plugins.enabled=true`. Note that the behaviour of pluginsAsync is unchanged to maintain backwards compatibility. |
146
+
| pluginsIngestion | object |`{"affinity":{},"enabled":false,"env":[],"hpa":{"behavior":null,"cputhreshold":60,"enabled":false,"maxpods":10,"minpods":1},"livenessProbe":{"failureThreshold":3,"initialDelaySeconds":10,"periodSeconds":10,"successThreshold":1,"timeoutSeconds":2},"nodeSelector":{},"podSecurityContext":{"enabled":false},"readinessProbe":{"failureThreshold":3,"initialDelaySeconds":50,"periodSeconds":30,"successThreshold":1,"timeoutSeconds":5},"replicacount":1,"resources":{},"rollout":{"maxSurge":"25%","maxUnavailable":"25%"},"securityContext":{"enabled":false},"sentryDSN":null,"tolerations":[]}`| A deconstructed plugin-server that handles the various workloads of the pipeline separately. For most workloads this will not be needed, rather you can disable the below plugins* and instead just use `plugins.enabled=true`. Note that the behaviour of pluginsAsync is unchanged to maintain backwards compatibility. |
137
147
| pluginsIngestion.enabled | bool |`false`| Whether to install the PostHog plugin-server ingestion capability as an individual workload. |
138
148
| pluginsIngestion.replicacount | int |`1`| Count of plugin-server pods to run. This setting is ignored if `pluginsIngestion.hpa.enabled` is set to `true`. |
139
149
| pluginsIngestion.hpa.enabled | bool |`false`| Whether to create a HorizontalPodAutoscaler for the plugin stack. |
@@ -166,6 +176,8 @@ The following table lists the configurable parameters of the PostHog chart and t
166
176
| pluginsExports.hpa.minpods | int |`1`| Min pods for the plugin-server stack HorizontalPodAutoscaler. |
167
177
| pluginsExports.hpa.maxpods | int |`10`| Max pods for the plugin-server stack HorizontalPodAutoscaler. |
168
178
| pluginsExports.hpa.behavior | string |`nil`| Set the HPA behavior. See https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/ for configuration options |
| pluginsExports.env | list |`[]`| Additional env variables to inject into the plugin-server stack deployment. |
170
182
| pluginsExports.resources | object |`{}`| Resource limits for the plugin-server stack deployment. |
171
183
| pluginsExports.nodeSelector | object |`{}`| Node labels for the plugin-server stack deployment. |
@@ -191,6 +203,8 @@ The following table lists the configurable parameters of the PostHog chart and t
191
203
| pluginsJobs.hpa.minpods | int |`1`| Min pods for the plugin-server stack HorizontalPodAutoscaler. |
192
204
| pluginsJobs.hpa.maxpods | int |`10`| Max pods for the plugin-server stack HorizontalPodAutoscaler. |
193
205
| pluginsJobs.hpa.behavior | string |`nil`| Set the HPA behavior. See https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/ for configuration options |
| pluginsJobs.env | list |`[]`| Additional env variables to inject into the plugin-server stack deployment. |
195
209
| pluginsJobs.resources | object |`{}`| Resource limits for the plugin-server stack deployment. |
196
210
| pluginsJobs.nodeSelector | object |`{}`| Node labels for the plugin-server stack deployment. |
@@ -216,6 +230,8 @@ The following table lists the configurable parameters of the PostHog chart and t
216
230
| pluginsScheduler.hpa.minpods | int |`1`| Min pods for the plugin-server stack HorizontalPodAutoscaler. |
217
231
| pluginsScheduler.hpa.maxpods | int |`10`| Max pods for the plugin-server stack HorizontalPodAutoscaler. |
218
232
| pluginsScheduler.hpa.behavior | string |`nil`| Set the HPA behavior. See https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/ for configuration options |
0 commit comments