8.5 Preparing the Ingress values.yaml
To prepare the
values.yaml
for the ingress:
- Navigate to the following
directory:
cd $WORKDIR/kubernetes/charts/ingress-per-domain
- Make a copy of the
values.yaml
:cp values.yaml $WORKDIR/
- Edit the
$WORKDIR/kubernetes/charts/ingress-per-domain/values.yaml
and modify the following parameters if required:domainUID:
- If you created your OAM domain with anything other than the defaultaccessdomain
, change accordingly.sslType:
- Values supported areSSL
andNONSSL
. If you created your ingress controller to use SSL then set toSSL
, otherwise set toNONSSL
.hostName.enabled: false
- This should be set tofalse
in almost all circumstances. Setting tofalse
allows OAM URI’s to be accessible from all hosts. Setting totrue
configures ingress for virtual hostnames only. See Configuring Ingress for full details of the criteria that must be met set to this value totrue
.hostName.admin: <hostname>
- Should only be set ifhostName.enabled: true
andsslType: NONSSL
. This should be set to the hostname.domain of the URL you access OAM administration URL’s from, for example if you access the OAM Administration Console viahttps://admin.example.com/oamconsole
, then set toadmin.example.com
.hostName.runtime: <hostname>
- Should only be set ifhostName.enabled: true
. This should be set to the hostname.domain of the URL you access OAM runtime URL’s from, for example if the oam/server URI is accessed viahttps://runtime.example.com/oam/server
, then set toruntime.example.com
.
The following show example files based on different configuration types:
SSL values.yaml
# Load balancer type. Supported values are: NGINX
type: NGINX
# Type of Configuration Supported Values are : SSL and NONSSL
sslType: SSL
# domainType. Supported values are: oam
domainType: oam
#WLS domain as backend to the load balancer
wlsDomain:
domainUID: accessdomain
adminServerName: AdminServer
adminServerPort: 7001
adminServerSSLPort:
oamClusterName: oam_cluster
oamManagedServerPort: 14100
oamManagedServerSSLPort:
policyClusterName: policy_cluster
policyManagedServerPort: 14150
policyManagedServerSSLPort:
# Host specific values
hostName:
enabled: false
admin:
runtime:
NONSSL values.yaml Using All Hostnames
# Load balancer type. Supported values are: NGINX
type: NGINX
# Type of Configuration Supported Values are : SSL and NONSSL
sslType: NONSSL
# domainType. Supported values are: oam
domainType: oam
#WLS domain as backend to the load balancer
wlsDomain:
domainUID: accessdomain
adminServerName: AdminServer
adminServerPort: 7001
adminServerSSLPort:
oamClusterName: oam_cluster
oamManagedServerPort: 14100
oamManagedServerSSLPort:
policyClusterName: policy_cluster
policyManagedServerPort: 14150
policyManagedServerSSLPort:
# Host specific values
hostName:
enabled: false
admin:
runtime:
NONSSL values.yaml Using Virtual Hostnames
# Load balancer type. Supported values are: NGINX
type: NGINX
# Type of Configuration Supported Values are : SSL and NONSSL
sslType: NONSSL
# domainType. Supported values are: oam
domainType: oam
#WLS domain as backend to the load balancer
wlsDomain:
domainUID: accessdomain
adminServerName: AdminServer
adminServerPort: 7001
adminServerSSLPort:
oamClusterName: oam_cluster
oamManagedServerPort: 14100
oamManagedServerSSLPort:
policyClusterName: policy_cluster
policyManagedServerPort: 14150
policyManagedServerSSLPort:
# Host specific values
hostName:
enabled: true
admin: admin.example.com
runtime: runtime.example.com