Skip to main content

Overview

Use this page when exposing Arize AX through OpenShift’s ingress or route pattern. Pair this page with Configuring ingress and endpoints so the hostnames, TLS plan, and appBaseUrl value are consistent.

Set ingressMode

Set ingressMode: 'openshift' in values.yaml:
ingressMode: 'openshift'
Set the URL users will use for the Arize AX UI:
appBaseUrl: "https://<arize-app.domain>"

Endpoint planning

Before exposing Arize AX, decide:
  • The hostname users will use for the Arize AX UI.
  • Whether the deployment uses one endpoint or multiple endpoint hostnames.
  • Where TLS terminates.
  • Whether OpenShift routes, ingress resources, or a platform-standard controller will expose the services.

Verify exposure

After applying or reconciling endpoint resources, inspect the OpenShift routes or ingress resources your platform uses:
oc -n arize get route
kubectl -n arize get ingress
Point DNS at the exposed address and verify resolution:
nslookup arize-app.<my-organization-domain>
Then open the UI hostname and continue with Validate deployment.