Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Prerequisite: Download and install Java 17 on the PC that you will use the Desktop on. Both JRE and JDK work.

  2. If LoadBalancer going to be used, special considerations concerning ports are needed, for more information see: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/

  3. Only for Private Cloud installations, adaption of the Ports are needed.

    Note
    titlePrivate Cloud - handlig of Ports

    In the case of Private Cloud, you cannot use the ports defined in the values.yaml file. Instead, you must use the NodePort number substitutes. You can see this by with the command kubectl get services. See the example below, for example 9000 will be substituted by 30707.

    Code Block
    languagetext
    titleExample of services for Private Cloud
    $ kubectl get services -n <namespace>
    
    NAME                                             TYPE        CLUSTER-IP       EXTERNAL-IP   PORT(S)                         AGE
    mz-operator-controller-manager-metrics-service   ClusterIP   10.102.178.52    <none>        8443/TCP                        154m
    mzonline                                         NodePort    10.100.195.106   <none>        80:31270/TCP                    154m
    platform                                         NodePort    10.111.174.222   <none>        9000:30707/TCP,6790:32481/TCP   154m
    wd                                               NodePort    10.101.51.191    <none>        9999:32073/TCP                  154m   
    
    # Note that in the case you use TLS, the Web interface, mzonline port will be 443.


  4. Only for AWS installations,  URLs are constructed like <function>.<domain>. See below

Note

AWS - Accessing the Environment

If you use AWS you must always define the type of interface directly in the URL as shown below:

  • Web interface: https://mzonline.<domain>/

  • Platform: https://platform.<domain>:9000/

...