Need help in accessing UI #138
Answered
by
alexandrevilain
sriabhi02nov
asked this question in
Q&A
-
Hi, I was not able to figure out how i can access temporal UI deployed via this CRD or can register workflow. |
Beta Was this translation helpful? Give feedback.
Answered by
alexandrevilain
Sep 30, 2022
Replies: 1 comment 15 replies
-
Hi :) You can enable the temporal UI and access it using an ingress by configuring it in the TemporalCluster CRD: apiVersion: apps.alexandrevilain.dev/v1alpha1
kind: TemporalCluster
metadata:
name: prod
namespace: demo
spec:
version: 1.17.4
numHistoryShards: 1
# [...]
ui:
enabled: true
ingress:
ingressClassName: nginx You can checkout the documentation here: https://github.com/alexandrevilain/temporal-operator/blob/v0.6.2/docs/api/v1alpha1.md#temporaluispec Note that if you're running 0.6.2, 0.7.0 will introduce a breaking change on the TemporalCluster API. |
Beta Was this translation helpful? Give feedback.
15 replies
Answer selected by
sriabhi02nov
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi :)
You can enable the temporal UI and access it using an ingress by configuring it in the TemporalCluster CRD:
You can checkout the documentation here: https://github.com/alexandrevilain/temporal-operator/blob/v0.6.2/docs/api/v1alpha1.md#temporaluispec
Note that if you're running 0.6.2, 0.7.0 will introduce a breaking change on the TemporalCluster API.