Created
July 24, 2020 19:17
-
-
Save ricardozanini/150a2fb09c46ef82de3b21c8a8337633 to your computer and use it in GitHub Desktop.
Management Console example with Data Index URL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: app.kiegroup.org/v1alpha1 | |
kind: KogitoMgmtConsole | |
metadata: | |
name: management-console | |
spec: | |
replicas: 1 | |
image: | |
tag: "0.12" | |
# we use environment variables to set the external data index URL | |
# this is needed for now since Management Console is a client application, we are working on having a local proxy to | |
# use the Kubernetes service instead | |
envs: | |
- name: KOGITO_DATAINDEX_HTTP_URL | |
value: http://data-index.kogito | |
- name: KOGITO_DATAINDEX_WS_URL | |
value: ws://data-index.kogito |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment