10.5.1 Configuring the Design Console Ingress
To prepare the
values.yaml
for the Design Console ingress:
- Navigate to the following directory and make a copy of the
values.yaml
:cd $WORKDIR/kubernetes/design-console-ingress
- Make a copy of the
values.yaml
:cp values.yaml $WORKDIR/dcvalues.yaml
- 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 defaultgovernancedomain
, change accordingly. -
sslType:
- Values supported areSSL
andNONSSL
. If you created your ingress controller to use SSL then set toSSL
, otherwise set toNONSSL
. secretName:
If using SSL, change the name to the secret for your ingress controller, or if usingNONSSL
leave the default value.
# 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
-
- Navigate to the
$WORKDIR
directory:cd $WORKDIR
- Run the following commands to create the
ingress:
For example:helm install governancedomain-nginx-designconsole kubernetes/design-console-ingress --namespace <domain_namespace> --values kubernetes/design-console-ingress/values.yaml
The output will look similar to the following:helm install governancedomain-nginx-designconsole kubernetes/design-console-ingress --namespace oigns --values kubernetes/design-console-ingress/values.yaml
NAME: governancedomain-nginx-designconsole <DATE> NAMESPACE: oigns STATUS: deployed REVISION: 1 TEST SUITE: None
- Run the following command to show the ingress is created
successfully:
For example:kubectl describe ing governancedomain-nginx-designconsole -n <domain_namespace>
kubectl describe ing governancedomain-nginx-designconsole -n oigns
- 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
- For
Non-SSL: