8.5 Preparing the Ingress values.yaml

To prepare the values.yaml for the ingress:
  1. Navigate to the following directory and make a copy of the values.yaml
    cd $WORKDIR/kubernetes/charts/ingress-per-domain
  2. Make a copy of the values.yaml:
    cp values.yaml $WORKDIR/
  3. Edit the $WORKDIR/kubernetes/charts/ingress-per-domain/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.

The following show example files based on different configuration types:

SSL values.yaml

# Load balancer type. Supported values are: NGINX
type: NGINX

# SSL configuration Type. Supported Values are : NONSSL,SSL
sslType: SSL

# domainType. Supported values are: oim
domainType: oim

#WLS domain as backend to the load balancer
wlsDomain:
  domainUID: governancedomain
  adminServerName: AdminServer
  adminServerPort: 7001
  adminServerSSLPort:
  soaClusterName: soa_cluster
  soaManagedServerPort: 7003
  soaManagedServerSSLPort:
  oimClusterName: oim_cluster
  oimManagedServerPort: 14000
  oimManagedServerSSLPort:

# Host  specific values
hostName:
  enabled: false
  admin:
  runtime:
  internal:

# Ngnix specific values
nginx:
  nginxTimeOut: 180

NONSSL values.yaml

# Load balancer type. Supported values are: NGINX
type: NGINX

# SSL configuration Type. Supported Values are : NONSSL,SSL
sslType: NONSSL

# domainType. Supported values are: oim
domainType: oim

#WLS domain as backend to the load balancer
wlsDomain:
  domainUID: governancedomain
  adminServerName: AdminServer
  adminServerPort: 7001
  adminServerSSLPort:
  soaClusterName: soa_cluster
  soaManagedServerPort: 7003
  soaManagedServerSSLPort:
  oimClusterName: oim_cluster
  oimManagedServerPort: 14000
  oimManagedServerSSLPort:

# Host  specific values
hostName:
  enabled: false
  admin:
  runtime:
  internal:

# Ngnix specific values
nginx:
  nginxTimeOut: 180