10.5.1 Configuring the Design Console Ingress

To prepare the values.yaml for the Design Console ingress:
  1. Navigate to the following directory and make a copy of the values.yaml:
    cd $WORKDIR/kubernetes/design-console-ingress
  2. Make a copy of the values.yaml:
    cp values.yaml $WORKDIR/dcvalues.yaml
  3. Edit the $WORKDIR/kubernetes/design-console-ingress/values.yaml and modify the following parameters if required:
    • domainUID: - If you created your OIG domain with anything other than the default governancedomain, change accordingly.
    • sslType: - Values supported are SSL and NONSSL. If you created your ingress controller to use SSL then set to SSL, otherwise set to NONSSL.
    • secretName: If using SSL, change the name to the secret for your ingress controller, or if using NONSSL leave the default value.
    For example:
    # Load balancer type.  Supported values are: NGINX
    type: NGINX
    # Type of Configuration Supported Values are : NONSSL,SSL
    # tls: NONSSL
    tls: SSL
    # TLS secret name if the mode is SSL
    secretName: governancedomain-tls-cert
    
    
    # WLS domain as backend to the load balancer
    wlsDomain:
      domainUID: governancedomain
      oimClusterName: oim_cluster
      oimServerT3Port: 14002
    
  4. Navigate to the $WORKDIR directory:
    cd $WORKDIR
  5. Run the following commands to create the ingress:
    helm install governancedomain-nginx-designconsole kubernetes/design-console-ingress  --namespace <domain_namespace>  --values kubernetes/design-console-ingress/values.yaml
    For example:
    helm install governancedomain-nginx-designconsole kubernetes/design-console-ingress  --namespace oigns  --values kubernetes/design-console-ingress/values.yaml
    The output will look similar to the following:
    NAME: governancedomain-nginx-designconsole
    <DATE>
    NAMESPACE: oigns
    STATUS: deployed
    REVISION: 1
    TEST SUITE: None
    
  6. Run the following command to show the ingress is created successfully:
    kubectl describe ing governancedomain-nginx-designconsole -n <domain_namespace>
    
    For example:
    kubectl describe ing governancedomain-nginx-designconsole -n oigns
    
  7. The output will look similar to the following:
    • For Non-SSL:
      Name:             governancedomain-nginx-designconsole
      Labels:           app.kubernetes.io/managed-by=Helm
                        weblogic.resourceVersion=domain-v2
      Namespace:        oigns
      Address:
      Ingress Class:    nginx
      Default backend:  <default>
      Rules:
        Host        Path  Backends
        ----        ----  --------
        *
                       governancedomain-cluster-oim-cluster:14002 (10.244.2.250:14002)
      Annotations:  meta.helm.sh/release-name: governancedomain-nginx-designconsole
                    meta.helm.sh/release-namespace: oigns
                    nginx.ingress.kubernetes.io/affinity: cookie
                    nginx.ingress.kubernetes.io/enable-access-log: false
      Events:
        Type    Reason  Age   From                      Message
        ----    ------  ----  ----                      -------
        Normal  Sync    5s    nginx-ingress-controller  Scheduled for sync
      
    • For SSL:
      Name:             governancedomain-nginx-designconsole
      Labels:           app.kubernetes.io/managed-by=Helm
                        weblogic.resourceVersion=domain-v2
      Namespace:        oigns
      Address:
      Ingress Class:    nginx
      Default backend:  <default>
      Rules:
        Host        Path  Backends
        ----        ----  --------
        *
                       governancedomain-cluster-oim-cluster:14002 (10.244.2.250:14002)
      Annotations:  meta.helm.sh/release-name: governancedomain-nginx-designconsole
                    meta.helm.sh/release-namespace: oigns
                    nginx.ingress.kubernetes.io/affinity: cookie
                    nginx.ingress.kubernetes.io/enable-access-log: false
                    nginx.ingress.kubernetes.io/configuration-snippet:
                      more_set_input_headers "X-Forwarded-Proto: https";
                      more_set_input_headers "WL-Proxy-SSL: true";
                    nginx.ingress.kubernetes.io/enable-access-log: false
                    nginx.ingress.kubernetes.io/ingress.allow-http: false
                    nginx.ingress.kubernetes.io/proxy-buffer-size: 2000k
      Events:
        Type    Reason  Age   From                      Message
        ----    ------  ----  ----                      -------
        Normal  Sync    5s    nginx-ingress-controller  Scheduled for sync