E Automating the OCI Infrastructure Creation for the Identity and Access Management Kubernetes Cluster
To setup the Oracle Identity and Access Management in a Kubernetes cluster, see Preparing the Oracle Cloud Infrastructure for an Enterprise Deployment, which contains many security lists, hosts, VCNs, and related resources that need to be created for a successful deployment. This utility consists of samples for you to automate the configuration and use the OCI command-line interface.
These scripts are provided as examples and can be customized as required.
This appendix includes the following topics:
- Obtaining the Scripts
These scripts are included as part of the automation scripts. The automation scripts are available for download from GitHub. - Scope of Scripts
Learn about the actions that the scripts perform as part of the deployment process. There are also tasks that the scripts do not perform. - Key Concepts of the Scripts
To make things simple and easy to manage, the scripts include these files: a response file with details of the environment and template files you can easily modify or add as required. The scripts can be run from any host which has access to the Kubernetes cluster. - Prerequisites
Before you run the utility, ensure that you meet the necessary prerequisites. - Creating a Response File
A sample response file called "oci-oke.rsp
" and ".ocipwd
" is created for you in theSCRIPT_DIR/oke_utils/responsefile
directory. You can edit this file or copy it to another file in the same directory. - Provisioning the Environment
A script is provisioned by specifying a working directory, a log directory into which output from the script is recorded, and a command to execute the script. - Log Files
The provisioning scripts create log files for each product inside the working directory in aTEMPLATE_NAME/logs
sub-directory. - Output Files
The output files are generated as part of the provisioning process. - Reference - Response File
The parameters in the response file are used to control the provisioning of the various products in the Kubernetes cluster. These parameters are divided into generic and product-specific parameters. - Components of the Deployment Scripts
For reference purposes, this section includes the file name, directory, and purpose of all the objects that make up the deployment scripts.
Obtaining the Scripts
For more information, see Automating the Identity and Access Management Enterprise Deployment.
git clone https://github.com/oracle/fmw-kubernetes.git
fmw-kubernetes/FMWKubernetesMAA/OracleEnterpriseDeploymentAutomation/OracleIdentityManagement/oke_utils
cp -R fmw-kubernetes/FMWKubernetesMAA/OracleEnterpriseDeploymentAutomation/OracleIdentityManagement/* /workdir/scripts
This directory will be specified as $SCRIPTDIR
.
Scope of Scripts
Learn about the actions that the scripts perform as part of the deployment process. There are also tasks that the scripts do not perform.
What the Scripts Will do
The scripts perform the following actions:
-
Create a Bastion host as described in Creating a Bastion Node.
- Create two compute instances for the Oracle HTTP as described in Creating Compute Instances for Oracle HTTP Servers.
-
Create the NFS file systems and mount points for the Kubernetes persistent volume data as described in Creating File Systems and Mount Targets.
-
Create a public and internal load balancer for routing requests to the OHS servers as described in Creating Load Balancers.
-
Create a TCP load balancer to route requests to the Kubernetes nodes as described in Creating a Network Load Balancer.
-
Create the RAC database used for the Identity Management product schemas as described in Creating a Database.
-
Create a DNS server for name resolution within the Kubernetes cluster as described in Creating a DNS Server.
-
Tune the RAC database.
-
Install the Java Server and Oracle Text database options which are required by the OIM server. See Adding Database Options.
-
Install the XA views into the OIM pluggable database. See Adding XA Views.
-
Create the pluggable databases, as configured, for the OAM, OIM, OAA, and OIRI schemas as described in Creating a PDB Using an Existing PDB as a Template.
-
Create the database services for the pluggable databases as described in Creating Database Services.
Parent topic: Scope of Scripts
What the Scripts Will Not Do
-
Install monitoring software such as Grafana or Prometheus.
-
Install or configure the log file monitoring tools Elasticsearch and Kibana.
Parent topic: Scope of Scripts
Key Concepts of the Scripts
To make things simple and easy to manage, the scripts include these files: a response file with details of the environment and template files you can easily modify or add as required. The scripts can be run from any host which has access to the Kubernetes cluster.
Note:
Provisioning scripts are re-enterant. If something fails, you can restart the script from the point at which it failed.Prerequisites
-
Install and configure the OCI command-line tools. For instructions, see one of the following docs:
-
Ensure that the OCI command runs properly by using the following command and check if you get valid output.
oci iam availability-domain list
-
Create an SSH private/public key that will be used to access the OCI instances using the command:
ssh-keygen
-
Create a configuration response file defining the parameters desired for this installation using the delivered file,
oci-oke.rsp
, as an example. -
You have enough quota available in your tenancy to create the various resources.
-
The utility
gdate
is available on the deployment host.
Creating a Response File
oci-oke.rsp
" and
".ocipwd
" is created for you in the
SCRIPT_DIR/oke_utils/responsefile
directory. You can edit this
file or copy it to another file in the same directory.
All lines above the line "All changes below this point are optional
" should be carefully reviewed and set as appropriate. Some values include default values while others are installation dependent and need to be set explicitly. This file will be referred as "TEMPLATE_NAME
".
Note:
- The file consists of key/value pairs. There should be no spaces between the name
of the key and its value. For example:
Key=value
- The OCI image names change frequently. It may be out-of-date and require an update before creating any instance.
Provisioning the Environment
cd $SCRIPT_DIR/oke_utils
./provision_oke.sh <TEMPLATE_NAME>
Note:
The provision script runs non-interactively after asking for confirmation that the listed compartment should be used to install the OCI components. Output from the script is displayed on the screen as well as added to the provision_oci.log
file.
Log Files
TEMPLATE_NAME/logs
sub-directory.
This directory also contains the following files:
progressfile
– This file contains the last successfully executed step. If you want to restart the process at a different step, update this file.timings.log
– This file is used for informational purposes to show how much time was spent on each stage of the provisioning process.provision_oci.log
– This file is used to capture the output from the execution of the variousoci
commands that were run by theprovision_oke.sh
script. This is the main provisioning log file.
Output Files
Table E-1 Output Files
File Name | Directory | Content |
---|---|---|
|
|
The self-signed certificate authority SSL certificate. |
|
|
The certificate authority signing request which can be helpful when needed to renew the CA certificate. |
|
|
The self-signed certificate authority SSL private key. |
|
|
The openssl serial number used when signing the CA certificate. |
|
|
A listing that includes all of the resources created by the script and their associated OCID value. This file is used when the |
|
|
The self-signed SSL certificate used by the public and internal load balancers. This file is also used by the OAM WebGate for making an SSL connection to public load balancer. |
|
|
The SSL private key for the public/internal load balancer SSL certificate. |
|
|
A bash shell script that can be run manually to mount the NFS volumes on the Bastion host. |
|
|
A bash shell script that can be run manually to mount the NFS volumes on WebHost1. |
|
|
A bash shell script that can be run manually to mount the NFS volumes on WebHost2. |
|
|
A bash shell script that can be run manually to configure the database |
|
|
A bash shell script that can be run manually to install the XA views into the OIG pluggable database. |
|
$WORKDIR/<TEMPLATE_NAME>/output |
Generated by the script |
|
|
Generated by the script
|
Deleting the Environment
The delete script will read the file $WORKDIR/TEMPLATE_NAME/output/TEMPLATE_NAME.ocid
to determine which resources were created by the provisioning script and make an attempt to delete them.
cd $SCRIPT_DIR/oke_utils
./delete_oke.sh <TEMPLATE_NAME>
Like the provisioning script, the delete script will first confirm that the resources should be deleted from the listed compartment and then run without further user input to delete the resources.
Parent topic: Output Files
Deleting Output Files
Table E-2 Deleting Output Files
File Name | Directory | Contents |
---|---|---|
|
|
The output from the execution of the various |
|
|
This file is used for informational purposes to show the time spent on each stage of the deletion process. |
Parent topic: Output Files
Reference - Response File
The parameters in the response file are used to control the provisioning of the various products in the Kubernetes cluster. These parameters are divided into generic and product-specific parameters.
- Parameters that Must be Reviewed, Set, and Modified
- OCI Command-Line Interface Region
- Port Numbers
- Subnet Configuration
- DNS Zone Configuration
- VCN Configuration
- OKE Cluster Configuration
- Bastion Host Configuration
- OHS and Web Tier Configuration
- NFS and Persistent Volume Configuration
- SSL Configuration
- Load Balancer Configuration
- Load Balancer Log Group Configuration
- Public Load Balancer Configuration
- Internal Load Balancer Configuration
- Network Load Balancer Configuration
- OCI Tags Configuration
- Database Configuration
Parameters that Must be Reviewed, Set, and Modified
Some values are default while others are installation dependent and require to be set explicitly.
Table E-3 List of Parameters
Parameter | Default Value | Comments |
---|---|---|
WORKDIR |
|
Absolute path to the directory where you want to have the output and log files written to. |
REGION |
|
The OCI region in which you want to create all the resource. For example: |
COMPARTMENT_NAME |
|
The compartment name which will hold all of the created resources. |
SSH_PUB_KEYFILE |
|
Absolute path to the SSH public keyfile. This field needs to be updated in the
" |
SSH_ID_KEYFILE |
|
Absolute path to the SSH private keyfile used to connect to the Bastion host. This
field needs to be updated in the " |
SSL_COUNTRY |
|
The name of the country to use in the |
SSL_STATE |
|
The name of the country to use in the |
SSL_LOCALE |
|
The name of the country to use in the |
SSL_ORG |
|
The name of the country to use in the |
SSL_ORGUNIT |
|
The name of the country to use in the |
DB_PWD |
|
The password for the Note: The password must contain two uppercase, two lowercase, two number, and two special characters and a minimum length of 10 characters. |
DB_NAME |
|
The value to use for the database |
DB_SUFFIX |
|
A suffix, which combined with the |
DB_MEMORY_CONFIG |
|
Which set of database tuning parameter, from Table 11-4 in the EDG, should be used for the RAC database. |
CONFIGURE_DATABASE |
|
The RAC database configuration/tuning script run automatically after the database is created. Note: If this is set to "Y" then the provisioning script will wait up to three hours for the initial RAC database to become available before proceeding. |
CREATE_OAM_PDB |
|
Indicates if the |
OAM_PDB_NAME |
|
The name of the OAM pluggable database. |
OAM_SERVICE_NAME |
|
The name of the OAM database service. |
CREATE_OIG_PDB |
|
Indicates if the |
OIG_PDB_NAME |
|
The name of the OIG pluggable database. |
OIG_SERVICE_NAME |
|
The name of the OIG database service. |
CREATE_OAA_PDB |
|
Indicates if the |
OAA_PDB_NAME |
|
The name of the OAA pluggable database. |
OAA_SERVICE_NAME |
|
The name of the OAA database service. |
CREATE_OIRI_PDB |
|
Indicates if the |
OIRI_PDB_NAME |
|
The name of the OIRI pluggable database. |
OIRI_SERVICE_NAME |
|
The name of the OIRI database service. |
DEFAULT_HOST_SHAPE |
|
OCI Shape from which various Hosts and Nodepools are created. |
BASTION_IMAGE_NAME |
|
The Linux image to use for the Bastion host. |
WEB_IMAGE_NAME |
|
The Linux image to use for the two web tiers. |
OKE_NODE_POOL_IMAGE_NAME |
|
The Linux image to use for the OKE nodes. |
CONFIGURE_BASTION |
|
Indicates if the Bastion host should be automatically configured with the required OS packages, OCI tools, helm, and Kubernetes configuration after the installation is complete. |
HELM_VER |
|
The version of helm to install on the Bastion node. If the latest version of helm is required, please update this field as Latest. |
CONFIGURE_WEBHOSTS |
|
Indicates if the web tiers should be automatically configured with the required OS packages and firewall settings after the installation is complete. |
OHS_SOFTWARE_OWNER |
|
The OS user that will own the OHS configuration on the web tiers. |
OHS_SOFTWARE_GROUP |
|
The OS group that will own the OHS configuration on the web tiers. |
The rest of the parameters use the default values, and it is not required to change them. However, it may be reviewed and changed to customize the installation.
Parent topic: Reference - Response File
OCI Command-Line Interface Region
Table E-4 List of Parameters
Parameter | Default Value | Comments |
---|---|---|
OCI_CLI_REGION |
|
This value overrides the default REGION set in the Note: Do not change this value. |
Parent topic: Reference - Response File
Port Numbers
Table E-5 List of Parameters
Parameter | Default Value | Comments |
---|---|---|
OAM_ADMIN_SERVICE_PORT |
|
The Kubernetes service port for the OAM AdminServer. |
OAM_POLICY_SERVICE_PORT |
|
The Kubernetes service port for the OAM Policy Manager. |
OAM_SERVER_SERVICE_PORT |
|
The Kubernetes service port for the OAM Server. |
OIG_ADMIN_SERVICE_PORT |
|
The Kubernetes service port for the OIG AdminServer. |
OIG_SERVER_SERVICE_PORT |
|
The Kubernetes service port for the OIM Server. |
SOA_SERVER_SERICE_PORT |
|
The Kubernetes service port for the SOA Server. |
OUDSM_SERVER_SERVICE_PORT |
|
The Kubernetes service port for the OUDSM Server. |
INGRESS_SERVICE_PORT |
|
The Kubernetes service port for the Ingress Controller. |
OHS_NON_SSL_PORT |
|
The OHS port used by the internal load balancer for internal callback requests. |
PUBLIC_LBR_NON_SSL_PORT |
|
The load balancer port used for the HTTP requests to the OAM and OIM AdminServers. |
PUBLIC_LBR_SSL_PORT |
|
The load balancer port used for the HTTPS requests to the OAM login page and the OIG provisioning server. |
Parent topic: Reference - Response File
Subnet Configuration
Table E-6 List of Parameters
Parameter | Default Value | Comments |
---|---|---|
VCN_SUBNET_CIDR |
|
The CIDR to use for the Virtual Cloud Network. |
BASTION_SUBNET_CIDR |
|
The subnet (which must be contained within the main VCN subnet) to use for the Bastion host. |
WEB_SUBNET_CIDR |
|
The subnet (which must be contained within the main VCN subnet) to use for the WebTier hosts. |
LBR1_SUBNET_CIDR |
|
The first subnet (which must be contained within the main VCN subnet) to use for the public load balancer. |
LBR2_SUBNET_CIDR |
|
The second subnet (which must be contained within the main VCN subnet) to use for the public load balancer. |
DB_SUBNET_CIDR |
|
The subnet (which must be contained within the main VCN subnet) to use for the RAC database. |
OKE_NODE_SUBNET_CIDR |
|
The subnet (which must be contained within the main VCN subnet) to use for the OKE nodes. |
OKE_API_SUBNET_CIDR |
|
The subnet (which must be contained within the main VCN subnet) to use for the OKE API endpoint. |
OKE_SVCLB_SUBNET_CIDR |
|
The subnet (which must be contained within the main VCN subnet) to use for the OKE services load balancer. |
Parent topic: Reference - Response File
DNS Zone Configuration
Table E-7 List of Parameters
Parameter | Default Value | Comments |
---|---|---|
DNS_DOMAIN_NAME |
|
The DNS domain name for the environment. |
DNS_ZONE_TYPE |
|
Used to identify if the zone is primary or secondary. |
DNS_SCOPE |
|
Used to identity if the zone is private or a global DNS zone. |
DNS_INTERNAL_LBR_DNS_HOSTNAME |
|
The host name of the load balancer used for internal routing. |
Parent topic: Reference - Response File
VCN Configuration
Table E-8 List of Parameters
Parameter | Default Value | Comments |
---|---|---|
VCN_DISPLAY_NAME |
|
Displays the name of the virtual cloud network. |
VCN_PRIVATE_ROUTE_TABLE_DISPLAY_NAME |
|
Displays the name of the VCN private route table. |
VCN_PUBLIC_ROUTE_TABLE_DISPLAY_NAME |
|
Displays the name of the VCN public route table. |
VCN_DNS_LABEL |
|
The DNS label for the VCN. Used in conjunction with the host name and subnet DNS label to form a FQDN for each host. |
VCN_INTERNET_GATEWAY_DISPLAY_NAME |
|
Displays the name of the VCN internet gateway. |
VCN_NAT_GATEWAY_DISPLAY_NAME |
|
Displays the name of the VCN NAT gateway. |
VCN_SERVICE_GATEWAY_DISPLAY_NAME |
|
Displays the name of the VCN service gateway. |
Parent topic: Reference - Response File
OKE Cluster Configuration
Table E-9 List of Parameters
Parameter | Default Value | Comments |
---|---|---|
OKE_CLUSTER_DISPLAY_NAME |
|
Displays the name of the OKE cluster. |
OKE_CLUSTER_TYPE |
|
Please choose the Cluster type - STD (Standard) or ENH (Enhanced). |
OKE_CLUSTER_VERSION |
|
Version of the Kubernetes to deploy on the OKE nodes. |
OKE_MOUNT_TARGET_AD |
|
Displays the name of the availability domain to use for the OKE mount target. Note: This value is not the actual availability domain name but a representation of the AD to use. For example: ad1, ad2, or ad3. |
OKE_PODS_CIDR |
|
The CIDR for the OKE pods. |
OKE_SERVICES_CIDR |
|
The CIDR for the OKE load balancer services. |
OKE_NETWORK_TYPE |
|
The CNI type for the node pools of the cluster. |
OKE_API_SUBNET_DISPLAY_NAME |
|
Displays the name of the OKE API subnet. |
OKE_API_DNS_LABEL |
|
The DNS label for the OKE API subnet. Used in conjunction with the host name and subnet DNS label to form a FQDN for each host within the subnet. |
OKE_API_SECLIST_DISPLAY_NAME |
|
Displays the name of the OKE API security list. |
OKE_NODE_SUBNET_DISPLAY_NAME |
|
Displays the name of the OKE node security list. |
OKE_NODE_DNS_LABEL |
|
The DNS label for the OKE nodes. Used in conjunction with the host name and subnet DNS label to form a FQDN for each host within the subnet. |
OKE_NODE_SECLIST_DISPLAY_NAME |
|
Displays the name of the OKE node security list. |
OKE_SVCLB_SUBNET_DISPLAY_NAME |
|
Displays the name of the OKE service load balancer subnet. |
OKE_SVCLBR_DNS_LABEL |
|
The DNS label for the OKE service load balancer. Used in conjunction with the host name and subnet DNS label to form a FQDN for each host within the subnet. |
OKE_SVCLBR_SECLIST_DISPLAY_NAME |
|
Displays the name of the service load balancer security list. |
OKE_NODE_POOL_DISPLAY_NAME |
|
Displays the name of the OKE node pool. |
OKE_NODE_POOL_SIZE |
|
Displays the number of nodes to add to the OKE node pool. |
OKE_NODE_POOL_SHAPE |
|
Displays which image shape to use for the OKE nodes. |
OKE_NODE_POOL_SHAPE_CONFIG |
|
Shape configuration for the memory and OCPUs for the OKE nodes. Note: Entire string must be enclosed within single quotes and the parameter names must be enclosed within double quotes that are escaped with a backslash. |
Parent topic: Reference - Response File
Bastion Host Configuration
Table E-10 List of Parameters
Parameter | Default Value | Comments |
---|---|---|
BASTION_PRIVATE_SECLIST_DISPLAY_NAME |
|
Displays the name of the Bastion private security list. |
BASTION_PUBLIC_SECLIST_DISPLAY_NAME |
|
Displays the name of the Bastion public security list. |
BASTION_SETUP_SECLIST_DISPLAY_NAME |
|
Displays the name of the Bastion setup security list. |
BASTION_ROUTE_TABLE_DISPLAY_NAME |
|
Displays the name of the Bastion route table. |
BASTION_SUBNET_DISPLAY_NAME |
|
Displays the name of the Bastion subnet. |
BASTION_DNS_LABEL |
|
The DNS label for the Bastion subnet. Used in conjunction with the host name and subnet DNS label to form a FQDN for each host. |
BASTION_INSTANCE_DISPLAY_NAME |
|
Displays the name of the Bastion compute instance. |
BASTION_AD |
|
The name of the availability domain to use for the Bastion host. Note: This value is not the actual availability domain name but a representation of the AD to use. For example: ad1, ad2, or ad3. |
BASTION_INSTANCE_SHAPE |
|
Displays which image shape to use for the Bastion compute instance. |
BASTION_SHAPE_CONFIG |
|
Shape configuration for the memory and OCPUs for the Bastion node. Note: Entire string must be enclosed within single quotes and the parameter names must be enclosed within double quotes that are escaped with a backslash. |
BASTION_PUBLIC_IP |
|
Displays should the Bastion host get assigned a public IP address or not. |
BASTION_HOSTNAME |
|
The host name to use for the Bastion host. |
Parent topic: Reference - Response File
OHS and Web Tier Configuration
Table E-11 List of Parameters
Parameter | Default Value | Comments |
---|---|---|
OHS_SECLIST_DISPLAY_NAME |
|
Displays the name of the OHS security list. |
WEBHOST_SERVERS |
|
List the number of wehost servers that are required to be provisioned. The minimum value recommended is 2. |
WEBHOST_PREFIX |
|
The hostname prefix to be used while creating the required number of webhost servers. |
WEB_PUBLIC_SECLIST_DISPLAY_NAME |
|
Displays the name of the Web public security list. |
WEB_ROUTE_TABLE_DISPLAY_NAME |
|
Displays the name of the Web route table. |
WEB_SUBNET_DISPLAY_NAME |
|
Displays the name of the Web subnet. |
WEB_DNS_LABEL |
|
The DNS label for the Web subnet. Used in conjunction with the host name and subnet DNS label to form a FQDN for each host. |
WEB_PROHIBIT_PUBLIC_IP |
|
Indicates if the Web subnet allows computing instances with a public IP address. |
WEBHOST1_AD |
|
Displays the name of the available domain to use for the first Web host. Note: This value is not the actual availability domain name but a representation of the AD to use. For example: ad1, ad2, or ad3. |
WEBHOST_SHAPE |
|
Displays the image shape to use for the first Web host. |
WEBHOST_SHAPE_CONFIG |
|
Shape configuration for the memory and OCPUs for the first Web host. Note: Entire string must be enclosed within single quotes and the parameter names must be enclosed within double quotes that are escaped with a backslash. |
WEBHOST_PUBLIC_IP |
|
Indicates if the first Web host get assigned to a public IP address. |
WEBHOST1_PRODUCTS_PATH |
|
Displays the directory on the first Web host where the OHS product should be installed. |
WEBHOST1_CONFIG_PATH |
|
Displays the directory on the first Web host where the OHS configuration files should be stored. |
WEBHOST2_AD |
|
Displays the name of the available domain to use for the second Web host. Note: This value is not the actual availability domain name but a representation of the AD to use. For example: ad1, ad2, or ad3. |
WEBHOST2_PRODUCTS_PATH |
|
Displays the directory on the second Web host where the OHS product should be installed. |
WEBHOST2_CONFIG_PATH |
|
Displays the directory on the second Web host where the OHS configuration files should be stored. |
Parent topic: Reference - Response File
NFS and Persistent Volume Configuration
Table E-12 List of Parameters
Parameter | Default Value | Comments |
---|---|---|
WEBHOST1_MOUNT_TARGET_DISPLAY_NAME |
|
Displays the name of the mount target used by webhost1. |
NFS_IAMPV_EXPORT_PATH |
|
Displays the name of the NFS file system to be used for creating various other PV_NFS_PATH's. |
WEBHOST2_MOUNT_TARGET_DISPLAY_NAME |
|
Displays the name of the mount target used by webhost2. |
OKE_MOUNT_TARGET_DISPLAY_NAME |
|
Displays the name of the mount target used by the OKE nodes. |
PV_SECLIST_DISPLAY_NAME |
|
Displays the name of the persistent volume security list. |
FS_WEBBINARIES1_DISPLAY_NAME |
|
Displays the name of the NFS file system for the OHS binaries on webhost1. |
FS_WEBBINARIES1_PATH |
|
Displays the path to the NFS file system where the OHS binaries are installed on webhost1. |
FS_WEBBINARIES2_DISPLAY_NAME |
|
Displays the name of the NFS file system for the OHS binaries on webhost2. |
FS_WEBBINARIES2_PATH |
|
Displays the path to the NFS file system where the OHS binaries are installed on webhost2. |
FS_WEBCONFIG1_DISPLAY_NAME |
|
Displays the name of the NFS file system for the OHS configuration data on webhost1. |
FS_WEBCONFIG1_PATH |
|
Displays the path to the NFS file system where the OHS configuration data is installed on webhost1. |
FS_WEBCONFIG2_DISPLAY_NAME |
|
Displays the name of the NFS file system for the OHS configuration data on webhost2. |
FS_WEBCONFIG2_PATH |
|
Displays the path to the NFS file system where the OHS configuration data is installed on webhost2. |
FS_OAMPV_DISPLAY_NAME |
|
Displays the name of the OAM persistent volume file system. |
FS_OAMPV_NFS_PATH |
|
Displays the path to the NFS file system for the OAM domain. |
FS_OAMPV_LOCAL_MOUNTPOINT |
|
The local mount point on the bastion host for the OAM persistent volume. |
FS_OIGPV_DISPLAY_NAME |
|
Displays the name of the OIG persistent volume file system. |
FS_OIGPV_NFS_PATH |
|
Displays the path to the NFS file system for the OIG domain. |
FS_OIGPV_LOCAL_MOUNTPOINT |
|
The local mount point on the bastion host for the OIG persistent volume. |
FS_OUDPV_DISPLAY_NAME |
|
Displays the name of the OUD persistent volume file system. |
FS_OUDPV_NFS_PATH |
|
Displays the path to the NFS file system for the OUD domain. |
FS_OUDPV_LOCAL_MOUNTPOINT |
|
The local mount point on the bastion host for the OUD persistent volume. |
FS_OUDCONFIGPV_DISPLAY_NAME |
|
Displays the name of the OUD configuration persistent volume file system. |
FS_OUDCONFIGPV_NFS_PATH |
|
Displays the path to the NFS file system for the OUD configuration data. |
FS_OUDCONFIGPV_LOCAL_MOUNTPOINT |
|
The local mount point on the bastion host for the OUD configuration data. |
FS_OUDSMPV_DISPLAY_NAME |
|
Displays the name of the OUD services manager persistent volume file system. |
FS_OUDSMPV_NFS_PATH |
|
Displays the path to the NFS file system for the OUD services manager domain. |
FS_OUDSMPV_LOCAL_MOUNTPOINT |
|
The local mount point on the bastion host for the OUD services manager persistent volume. |
FS_OIRIPV_DISPLAY_NAME |
|
Displays the name of the OIRI persistent volume file system. |
FS_OIRIPV_NFS_PATH |
|
Displays the path to the NFS file system for the OIRI domain. |
FS_OIRIPV_LOCAL_MOUNTPOINT |
|
The local mount point on the bastion host for the OIRI persistent volume. |
FS_DINGPV_DISPLAY_NAME |
|
Displays the name of the data ingestor persistent volume file system. |
FS_DINGPV_NFS_PATH |
|
Displays the path to the NFS file system for the OIRI ingestor data. |
FS_DINGPV_LOCAL_MOUNTPOINT |
|
The local mount point on the bastion host for the OIRI ingestor data. |
FS_WORKPV_DISPLAY_NAME |
|
Displays the name of the OIRI working directory volume file system. |
FS_WORKPV_NFS_PATH |
|
Displays the path to the NFS file system for the OIRI working directory. |
FS_WORKPV_LOCAL_MOUNTPOINT |
|
The local mount point on the bastion host for the OIRI working directory. |
FS_OAACONFIGPV_DISPLAY_NAME |
|
Displays the name of the OAA configuration persistent volume file system. |
FS_OAACONFIGPV_NFS_PATH |
|
Path to the NFS file system for the OAA configuration data. |
FS_OAACONFIGPV_LOCAL_MOUNTPOINT |
|
The local mount point on the bastion host for the OA configuration persistent volume data. |
FS_OAACREDPV_DISPLAY_NAME |
|
Displays the name of the OAA credential store persistent volume file system. |
FS_OAACREDPV_NFS_PATH |
|
Displays the path to the NFS file system for the OAA credential store data. |
FS_OAACREDPV_LOCAL_MOUNTPOINT |
|
The local mount point on the bastion host for the OAA credential store persistent volume data. |
FS_OAAVAULTPV_DISPLAY_NAME |
|
Displays the name of the OAA Vault persistent volume file system. |
FS_OAAVAULTPV_NFS_PATH |
|
Displays the path to the NFS file system for the OAA Vault data. |
FS_OAAVAULTPV_LOCAL_MOUNTPOINT |
|
The local mount point on the bastion host for the OAA Vault persistent volume data. |
FS_OAALOGPV_DISPLAY_NAME |
|
Displays the name of the OAA log file persistent volume file system. |
FS_OAALOGPV_NFS_PATH |
|
Displays the path to the NFS file system for the OAA log files. |
FS_OAALOGPV_LOCAL_MOUNTPOINT |
|
The local mount point on the bastion host for the OAA log files. |
FS_IMAGES_DISPLAY_NAME |
|
Displays the name of the IDM container images persistent volume file system. |
FS_IMAGES_NFS_PATH |
|
Displays the path to the NFS file system for the container images. |
FS_IMAGES_LOCAL_MOUNTPOINT |
|
The local mount point on the bastion host for the container images. |
Parent topic: Reference - Response File
SSL Configuration
Table E-13 List of Parameters
Parameter | Default Value | Comments |
---|---|---|
SSL_CERT_VALIDITY_DAYS |
|
Specifies the number of days to set for the SSL certificate validity. |
SSL_CERT_BITS |
|
Specifies the default key size in bit for the SSL certificate. |
SSL_CN |
|
Specifies the domain name to set for the SSL certificate. |
Parent topic: Reference - Response File
Load Balancer Configuration
Table E-14 List of Parameters
Parameter | Default Value | Comments |
---|---|---|
LBR1_AD |
|
Displays the available domain to use for the first internal load balancer. Note: This is not the actual availability domain name but a representation of the AD to use. For example: ad1, ad2, or ad3. |
LBR1_DISPLAY_NAME |
|
Displays the name of the first internal load balancer. |
LBR1_DNS_LABEL |
|
The DNS subnet label to use for the first internal load balancer. |
LBR2_AD |
|
Displays the available domain to use for the second internal load balancer. Note: This is not the actual availability domain name but a representation of the AD to use. For example: ad1, ad2, or ad3. |
LBR2_DISPLAY_NAME |
|
Displays the name of the second internal load balancer. |
LBR2_DNS_LABEL |
|
The DNS subnet label to use for the second internal load balancer. |
Parent topic: Reference - Response File
Load Balancer Log Group Configuration
Table E-15 List of Parameters
Parameter | Default Value | Comments |
---|---|---|
LBR_LOG_GROUP_NAME |
|
Displays the name of the log group that will hold the access and error logs for the public and internal load balancers. |
Parent topic: Reference - Response File
Public Load Balancer Configuration
Table E-16 List of Parameters
Parameter | Default Value | Comments |
---|---|---|
PUBLIC_LBR_ACCESS_LOG_DISPLAY_NAME |
|
Displays the name of the public load balancer access log file. |
PUBLIC_LBR_ERROR_LOG_DISPLAY_NAME |
|
Displays the name of the public load balancer error log. |
PUBLIC_LBR_CERTIFICATE_NAME |
|
Displays the name of the SSL certificate loaded into the public load balancer. |
PUBLIC_LBR_DISPLAY_NAME |
|
Displays the name of the public load balancer. |
PUBLIC_LBR_PRIVATE |
|
Indicates if the public load balancer should only be assigned an internal IP address. |
PUBLIC_LBR_ROUTE_TABLE_DISPLAY_NAME |
|
Displays the name of the public load balancer route table. |
PUBLIC_LBR_SECLIST_DISPLAY_NAME |
|
Displays the name of the public load balancer security list. |
PUBLIC_LBR_SHAPE |
|
Displays the pubic load balancer shape configuration. |
PUBLIC_LBR_SHAPE_DETAILS |
|
Displays the minimum and maximum bandwidth values for the public load balancer. |
PUBLIC_LBR_IADADMIN_DISPLAY_NAME |
|
Displays the name of the OAM iadadmin host name on the public load balancer. |
PUBLIC_LBR_IADADMIN_HOSTNAME |
|
The host name for the OAM iadadmin host on the public load balancer. |
PUBLIC_LBR_IADADMIN_LISTENER_DISPLAY_NAME |
|
Displays the name of the OAM iadadmin listener on the public load balancer. |
PUBLIC_LBR_IGDADMIN_DISPLAY_NAME |
|
Displays the name of the OIM igdadmin hostname on the public load balancer. |
PUBLIC_LBR_IGDADMIN_HOSTNAME |
|
The host name for the OIM igdadmin host on the public load balancer. |
PUBLIC_LBR_IGDADMIN_LISTENER_DISPLAY_NAME |
|
Displays the name of the OIM igdadmin listener on the public load balancer. |
PUBLIC_LBR_LOGIN_DISPLAY_NAME |
|
Displays the name of the OAM login host on the public load balancer. |
PUBLIC_LBR_LOGIN_HOSTNAME |
|
The host name for the OAM login host on the public load balancer. |
PUBLIC_LBR_LOGIN_LISTENER_DISPLAY_NAME |
|
Displays the name of the OAM login listener on the public load balancer. |
PUBLIC_LBR_PROV_DISPLAY_NAME |
|
Displays the name of the OIM provisioning host on the public load balancer. |
PUBLIC_LBR_PROV_HOSTNAME |
|
The host name for the OIM provisioning host on the public load balancer. |
PUBLIC_LBR_PROV_LISTENER_DISPLAY_NAME |
|
Displays the name of the OIM provisioning listener on the public load balancer. |
PUBLIC_LBR_OHS_SERVERS_BS_NAME |
|
Displays the name of the backend set pointing to the OHS servers. |
PUBLIC_LBR_OHS_SERVERS_BS_POLICY |
|
Displays the load balancing policy for the OHS servers back end set. |
PUBLIC_LBR_OHS_SERVERS_BS_PROTOCOL |
|
The protocol used by the public load balancer health checker to determine if the load balancer is accessible. |
PUBLIC_LBR_OHS_SERVERS_BS_URI_PATH |
|
The URI used by the public load balancer health checker to determine if the load balancer is accessible. |
Parent topic: Reference - Response File
Internal Load Balancer Configuration
Table E-17 List of Parameters
Parameter | Default Value | Comments |
---|---|---|
INT_LBR_ACCESS_LOG_DISPLAY_NAME |
|
Displays the name of the internal load balancer access log file. |
INT_LBR_ERROR_LOG_DISPLAY_NAME |
|
Displays the name of the internal load balancer error log. |
INT_LBR_CERTIFICATE_NAME |
|
Displays the name of the SSL certificate loaded into the internal load balancer. |
INT_LBR_PRIVATE |
|
Indicates if the internal load balancer should only be assigned an internal IP address. |
INT_LBR_SHAPE |
|
Displays the internal load balancer shape configuration. |
INT_LBR_SHAPE_DETAILS |
|
Displays the minimum and maximum bandwidth values for the internal load balancer. |
INT_LBR_DISPLAY_NAME |
|
Displays the name of the internal load balancer. |
INT_LBR_IADADMIN_DISPLAY_NAME |
|
Displays the name of the OAM iadadmin host name on the internal load balancer. Note: This must be the same name as |
INT_LBR_IADADMIN_HOSTNAME |
|
The host name for the OAM iadadmin host on the internal load balancer. Note: This must be the same name as |
INT_LBR_IADADMIN_LISTENER_DISPLAY_NAME |
|
Displays the name of the OAM iadadmin listener on the internal load balancer. Note: This must be the same name as |
INT_LBR_IGDADMIN_DISPLAY_NAME |
|
Displays the name of the OIM igdadmin host name on the internal load balancer. Note: This must be the same name as |
INT_LBR_IGDADMIN_HOSTNAME |
|
The host name for the OIM igdadmin host on the internal load balancer. Note: This must be the same name as |
INT_LBR_IGDADMIN_LISTENER_DISPLAY_NAME |
|
Displays the name of the OIM igdadmin listener on the internal load balancer. Note: This must be the same name as |
INT_LBR_IGDINTERNAL_DISPLAY_NAME |
|
Displays the name of the OIM igdinternal host name on the internal load balancer. Note: This must be the same name as |
INT_LBR_IGDINTERNAL_HOSTNAME |
|
The host name for the OIM igdinternal host on the internal load balancer. Note: This must be the same name as |
INT_LBR_IGDINTERNAL_LISTENER_DISPLAY_NAME |
|
Displays the name of the OIM igdinternal listener on the internal load balancer. Note: This must be the same name as |
INT_LBR_LOGIN_DISPLAY_NAME |
|
Displays the name of the OAM login host on the internal load balancer. Note: This must be the same name as |
INT_LBR_LOGIN_HOSTNAME |
|
The host name for the OAM login host on the internal load balancer. Note: This must be the same name as |
INT_LBR_LOGIN_LISTENER_DISPLAY_NAME |
|
Displays the name of the OAM login listener on the internal load balancer. Note: This must be the same name as |
INT_LBR_PROV_DISPLAY_NAME |
|
Displays the name of the OIM provisioning host on the internal load balancer. Note: This must be the same name as |
INT_LBR_PROV_HOSTNAME |
|
The host name for the OIM provisioning host on the internal load balancer. Note: This must be the same name as |
INT_LBR_PROV_LISTENER_DISPLAY_NAME |
|
Displays the name of the OIM provisioning host on the internal load balancer. Note: This must be the same name as |
INT_LBR_OHS_SERVERS_BS_NAME |
|
Displays the name of the back end set pointing to the OHS servers. |
INT_LBR_OHS_SERVERS_BS_POLICY |
|
The load balancing policy for the OHS servers back end set. |
INT_LBR_OHS_SERVERS_BS_PROTOCOL |
|
The protocol used by the public load balancer health checker to determine if the load balancer is accessible. |
INT_LBR_OHS_SERVERS_BS_URI_PATH |
|
The URI used by the public load balancer health checker to determine if the load balancer is accessible. |
Parent topic: Reference - Response File
Network Load Balancer Configuration
Table E-18 List of Parameters
Parameter | Default Value | Comments |
---|---|---|
K8_LBR_DISPLAY_NAME |
|
Displays the name of the Kuberentes load balancer. |
K8_LBR_PRIVATE |
|
Indicates if the Kubernetes load balancer should only be assigned an internal IP address. |
K8_LBR_PRESERVE_SRC_DEST |
|
Indicates if the requests should be sent with the entire IP header intact. |
K8_LBR_K8_WORKERS_BS_NAME |
|
Displays the name of the back end set pointing to the OHS servers. |
K8_LBR_K8_WORKERS_BS_POLICY |
|
The Kubernetes load balancer policy for the back end set. |
K8_LBR_K8_WORKERS_BS_PRESERVE_SRC |
|
Indicates if the requests should be sent with the entire IP header intact. |
K8_LBR_LISTENER_DISPLAY_NAME |
|
Displays the name of the Kuberentes load balancer listener. |
Parent topic: Reference - Response File
OCI Tags Configuration
The following section lists the parameters to be defined to create Freeform OCI tags that would be associated with some of the hardware provisioned by the framework.
Table E-19 List of Parameters
Parameter | Value | Comments |
---|---|---|
OCI_TAGS |
|
The Value will have a "key:value" pair which is separated by colon (:). The key cannot include a double-quote, colon, space and all other characters which are defined as restricted in the Freeform tags OCI page. In case multiple tags are needed, please repeat the line in the response file. For example, OCI_TAGS="CreatedBy:ABCD WXYZ" OCI_TAGS="ProjectNo:PR1234" |
Parent topic: Reference - Response File
Database Configuration
Table E-20 List of Parameters
Parameter | Value | Comments |
---|---|---|
DB_SUBNET_DISPLAY_NAME |
db-subnet |
Displays the name of the DB Subnet. |
DB_SUBNET_DNS_LABEL |
dbsubnet |
The DNS label for the DB subnet. |
DB_SUBNET_PROHIBIT_PUBLIC_IP |
true |
Indicates if the DB subnet allows computing instances with a public IP address. |
DB_SECLIST_DISPLAY_NAME |
db-seclist |
Displays the name of the DB security list. |
DB_ROUTE_TABLE_DISPLAY_NAME |
db-route-table |
Displays the name of the DB route table. |
DB_SQLNET_PORT |
1521 |
DB listener port. |
DB_AD |
ad1 |
Displays the name of the available domain to use for the Database Note: This value is not the actual availability domain name but a representation of the AD to use. For example, ad1, ad2, or ad3. |
DB_CPU_COUNT |
8 |
CPU count to be used for creating the DB. |
DB_EDITION |
ENTERPRISE_EDITION_EXTREME_PERFORMANCE |
The DB service edition to be used for creation of DB. |
DB_HOSTNAME_PREFIX |
edgdb- |
Prefix to be used to create DB hosts. |
DB_VERSION |
19.0.0.0 |
Version of DB to be installed. |
DB_DISPLAY_NAME |
Identity-Management-Database |
Displays the name of the DB. |
DB_INITIAL_STORAGE |
256 |
Storage size of the DB in GBs. |
DB_LICENSE |
BRING_YOUR_OWN_LICENSE |
DB License type. |
DB_NODE_COUNT |
2 |
Number of DB Hosts required. |
DB_SHAPE |
$DEFAULT_HOST_SHAPE |
Displays the image shape to use for the first Web host. |
DB_STORAGE_MGMT |
ASM |
Storage Management type to be used for DB. |
DB_TIMEZONE |
UTC |
Timezone to be used for the DB. |
Parent topic: Reference - Response File
Components of the Deployment Scripts
Table E-21 Components of the Deployment Scripts
File Name | Directory | Purpose |
---|---|---|
|
|
The main provisioning script. |
|
|
Script to delete all of the resources created by the provisioning script. This script requires the following command to be available to read the list of resource OCIDs to delete.
|
|
|
Script to create a response file for the IDM EDG Automation. |
|
|
Helper script that contains all of the shell functions used by the |
|
|
Helper script that contains all of the shell functions used by the |
|
|
Helper script that contains all of the functions to setup/configure the Bastion host, WebTiers, and database. |
|
|
Helper script that contains all of the functions shared between the provisioning and deletion scripts. |
|
|
An example response file that is used as a starting point for end-user response files. |
|
|
An example response file that is used as a starting point for end-user response files containing sensitive information. |
|
|
Helper script that can be executed manually to configure the Bastion host. The script executes the same functions that are called when the |
|
|
Helper script that can be executed manually to configure the WebTier hosts. The script executes the same functions that are called when the |
|
|
Helper script that can be executed manually to configure the RAC database. The script executes the same functions that are called when the |