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
st2web is a StackStorm Web UI admin dashboard. By default, st2web K8s config includes a Pod Deployment and a Service.
85
85
`2` replicas (configurable) of st2web serve the web app and proxy requests to st2auth, st2api, st2stream.
86
+
By default, st2web uses HTTP instead of HTTPS. We recommend you rely on `LoadBalancer` or `Ingress` to add HTTPS layer on top of it.
86
87
> **Note!** By default, st2web is a NodePort Service and is not exposed to the public net.
87
88
If your Kubernetes cluster setup supports the LoadBalancer service type, you can edit the corresponding helm values to configure st2web as a LoadBalancer service in order to expose it and the services it proxies to the public net.
# Probe to check if app is running. Failure will lead to a pod restart.
355
353
livenessProbe:
356
354
httpGet:
357
-
scheme: HTTPS
355
+
scheme: HTTP
358
356
path: /
359
-
port: 443
357
+
port: 80
360
358
initialDelaySeconds: 1
361
359
# Probe to check if app is ready to serve traffic. Failure will lead to temp stop serving traffic.
362
360
# TODO: Failing to add readinessProbe, since st2 requires authorization (401) and we don't have `/healthz` endpoints yet (https://github.com/StackStorm/st2/issues/4020)
0 commit comments