3 Creating an ASAP Cloud Native Image
An ASAP cloud native image is required to create and manage ASAP cloud native instances. This chapter describes creating an ASAP cloud native image.
An ASAP cloud native requires a container image and access to the database. The ASAP image is built on top of a Linux base image and the ASAP image builder script adds Java, WebLogic Server components, database client, and ASAP.
The ASAP cloud native image is created using the ASAP cloud native builder toolkit. You should run the ASAP cloud native builder toolkit on Linux and it should have access to the local Podman.
See the following topics for further details:
Downloading the ASAP Cloud Native Image Builder
To build the ASAP cloud native image, the
asap-img-builder.zip
file is required. For more information about
downloading the ASAP cloud native Image Builder, see "Downloading the ASAP Cloud Native Artifacts".
- The scripts to install the required packages.
- The scripts to install database client, Java, WebLogic Server, Opatch, Release Updates (RU) and ASAP.
Prerequisites for Creating ASAP Image
The prerequisites for building ASAP cloud native image are:
-
Podman on the build machine.
- Approximately 2 GB of swap space on the machine where the Podman is
running. By running the
free -m
command, you can verify the swap space.Note:
If the required swap space is not available, contact your administrator. - ASAP 7.4.1.0 or later Linux Installer. Download the .tar file from Oracle Software Delivery Cloud:
-
Create the disk1 directory and copy the contents of the .tar file to this directory.
-
Installers for WebLogic Server and JDK. Download these from Oracle Software Delivery Cloud:
-
Oracle Database Client. Download this from Oracle Software Downloads:
-
Release Updates 19.26.0.0.0 or later. Upgrade Oracle Database Client with Oracle Database Release Updates (RUs). Update the path of the patch list directory in the
installDBclient.sh
script located atasap_img_builder/scripts
. For example,$ORACLE_HOME/37257886/37260974
. -
OPatch utility version 12.2.0.1.34 or later.
-
Java, installed with JAVA_HOME set in the environment.
-
ASAP is installed in a silent installation mode using the
asap_image.properties
file. You should update the properties file with the database, WebLogic Server, ORACLE_HOME, port numbers, and all required details. -
Keep the TRAEFIK Ingress service node port details ready where it is being deployed.
-
Create ASAP database users. For more information, see "Creating Oracle Database Tablespaces, Tablespace User, and Granting Permissions" in ASAP Installation Guide.
For details about the required and supported versions of the prerequisite software, see ASAP Software Compatibility Matrix.
Creating the ASAP Cloud Native Image
The ASAP cloud native image builder tool builds the ASAP cloud native image, which is then pushed to the repository and deployed in the Kubernetes cluster. If the repository is not available, you copy the image to all the worker nodes of the cluster.
The ASAP installer is packaged with the ASAP cloud native image builder and the cloud native toolkit.
Note:
After you download the installer, locate the cloud native image builderasap-img-builder.zip
in the cloud
native tar file.
To create the ASAP cloud native image:
-
Copy the
asap-img-builder.zip
file to the machine where the Podman is running. -
Extract the contents of the zip file by running the following command:
unzip asap-img-builder.zip
-
Copy the following installers to the
$asap-img-builder/installers
directory.- Linux Installer for ASAP 7.4.1 or later
- Installers for WebLogic Server and JDK 8
- Oracle Database Client
- OPatch Utility
- JDK 17
- Oracle Database Release Updates
- Redhat Package Manager(RPM) Installer
-
Copy the required cartridges to the
$asap-img-builder/cartridges
directory. -
Set the environment variable for ASAP_IMG_BUILDER to the
$asap-img-builder
directory. -
Update the
$asap-img-builder/scripts/tnsnames.ora
file with the database details. For example,orcl19c = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = database host)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = service name) ) )
-
Update the
HTTPS_PROXY
andHTTP_PROXY
variables in thebuild_env.sh
script.Note:
The variables in the section Podman details, Installer filenames, and Installation locations are populated by default with the appropriate information.base_image=oraclelinux:8 HTTPS_PROXY= HTTP_PROXY= # Podman details ASAP_IMAGE_TAG="7.4.1.0.0" ASAP_VOLUME=podmanhost_volume ASAP_CONTAINER="asap-c" PODMAN_HOSTNAME="asaphost" # Installer filenames JDK_FILE=jdk-8u441-linux-x64.tar.gz JDK_FILE_17=jdk-17.0.11_linux-x64_bin.tar.gz DB_CLIENT_FILE=LINUX.X64_193000_client.zip FMW_FILE=fmw_12.2.1.4.0_wls_lite_Disk1_1of1.zip DB_OPATCH_FILE=p6880880_190000_Linux-x86-64.zip DB_RU_FILE=p35319490_190000_Linux-x86-64.zip RPM_FILE=asap-installer-7.4.1.0.0-B226.x86_64.rpm # Installation locations TNS_ADMIN=/scripts/ JAVA_HOME=/usr/lib/jvm/java/jdk1.8.0_441 JAVA_HOME_ASAP=/usr/lib/jvm/java/jdk-17.0.11 PATH=$ORACLE_HOME:$JAVA_HOME/bin:$PATH CV_ASSUME_DISTID=OEL8
JDK 8 is required by the ASAP installer and JDK 17 is required by the RPM installer.
Note:
Ensure that the file names ofJDK_FILE
,DB_CLIENT_FILE
,FMW_FILE
,DB_OPATCH_FILE
,DB_RU_FILE
, andRPM_FILE
variables match with the file names in the$ASAP_IMG_BUILDER/installers
directory. -
Update the following parameters in the
$asap-img-builder/asap_image.properties
file with the required details for ASAP and the WebLogic Server domain. You can update the configuration parameters that must be updated after ASAP installation usingasap_image.properties
file. All the configuration parameters should be prefixed withcfg
. You can create multiple ASAP instances by entering multiple unique environment IDs in theENV_ID
variable separated by a comma. For example,ENV_ID=
CNE1, CNE2, CNE3 where CNE1, CNE2, and CNE3 are unique environment IDs.########################################################################## ## Configure ASAP UNIX Environment Variables ########################################################################## ## Type the name of the base directory of the Oracle database client program. The ASAP installation generates an ORACLE_HOME UNIX environment variable based on the directory name. ORACLE_HOME= ## Select the ASAP mode that you require. You can run ASAP in the Production (PROD) or Development (TEST) mode. ASAP loads static provisioning configuration information from the database based on mode. ASAP_SYS=TEST ## Type the ASAP environment ID (maximum 4 alphanumeric characters). The ASAP environment ID is a unique identifier for each ASAP environment as one system can have multiple ASAP instances. ENV_ID= ## Type the name of the location where the ASAP needs to be installed in the image ASAP_BASE= ########################################################################## ## Configure ASAP Database ########################################################################## ## The ASAP installation program retrieves the name of the Oracle RDBMS Server from tnsname.ora file on the installed Oracle client program. ## Name of Oracle RDBMS Server : DSQUERY= ## Oracle Server DBA User Name : DB_USER= ## Oracle Server DBA Password : DB_PASSWORD= ## ASAP Database Users Creation ## ------------------------------ ## CREATE_USERS=true: The database users will be created during the ASAP configuration. ## CREATE_USERS=false: The database users must be created by the user beforehand. CREATE_USERS=true ## Is this an Oracle RAC database : RACDB=false ## RAC Database Connection String, Format: Host1:Port1:ServiceName,Host2:Port2:ServiceName,... : RACDB_CONNECT_STRING= ########################################################################## ## Configure ASAP Database Table spaces ########################################################################## ##Specify the required table space for each ASAP server. The recommended table space set up for the SARM server is SARM_DATA for the data table space and SARM_INDEX for the index table space. #The recommended table space for all other ASAP servers is DATA for data table space and INDX for index table space. ASAP database scripts populate the database schema based on the defined values. ## ADM ADMDB_PARAMETERS=ADM, POOL_TS, POOL_TS ## Control CTRLDB_PARAMETERS=CTRL, POOL_TS, POOL_TS ## NEP NEPDB_PARAMETERS=NEP, POOL_TS, POOL_TS ## SARM SARMDB_PARAMETERS=SARM, POOL_TS, POOL_TS ## TEMP ( Specify the temporary table space you want ASAP to use.) TEMP_TS=TEMP ########################################################################## ## Configure ASAP Database User Password ########################################################################## ##For each ASAP server, type the password for each database schema. ASAP database scripts create user schemas based on the user name and password that you define. ## ADM ADMDB_PASSWORD= ## Control CTRLDB_PASSWORD= ## NEP NEPDB_PASSWORD= ## SARM SARMDB_PASSWORD= ########################################################################## ## Configure ASAP UNIX Environment Variables - ASAP Server Port ########################################################################## ##Define the port number for ASAP servers. ## CTRL Server CTRL_PORT=30001 ## SARM Server SARM_PORT=30002 ## NEP Server NEP_PORT=30003 ## Define the port number for work order event notification for the OCA SRP. This information will be populated in tbl_asap_srp table in the SARM database. ## Oca Server OCA_PORT=30004 ## Define the port number for the Java SRP server to send work orders. This information will be populated in the tbl_listens table in the Control database. Define the port number for the Java SRP server to receive work order events. This information will be populated in the tbl_asap_srp table in the SARM database. ## JSRP - Sending WO JSRPsend_PORT=30005 ## JSRPS123 - Receiving WO event JSRPrecev_PORT=30006 ## ASAP DAEMON DAEMON_PORT=30007 ## JeNEP Listener Port NEP_Listener_PORT=30008 ########################################################################## ## Configure Oracle WebLogic Server for ASAP ########################################################################## ## Path to the WebLogic installation directory WL_HOME=/home/oracle/weblogic ## User Name of the Oracle WebLogic Server Administrator WLS_USER= ## HOST for the Oracle WebLogic Server WLS_HOST= ## Port for the Oracle WebLogic AdminServer ## ------------------------------------------------ ## Specify NON-SSL Port if WLS_SSL_ENABLED is false ## Specify SSL Port if WLS_SSL_ENABLED is true WLS_ADMIN_PORT=7890 ## NON SSL Port for the target server of the WebLogic WLS_TARGET_PORT=7890 ## SSL Port for the target server of the WebLogic WLS_TARGET_SSL_PORT= ## Oracle WebLogic Server WLS_SERVER=AdminServer ## Use SSL? WLS_SSL_ENABLED=true ## SSL KeyStore File KEYSTORE_FILE= ## Weblogic Domain Name WLS_DOMAIN_NAME=asapDomain ## Weblogic Domain Location WLS_DOMAIN_LOCATION= ## Weblogic Channel Listen Port WLS_CHANNEL_LISTEN_PORT=7891 ## Weblogic Channel Public Port WLS_CHANNEL_PUBLIC_PORT=30305 ########################################################################## ## Configure Oracle WebLogic Server Passwords ########################################################################## ## Each password must be at least 8 characters long, and must contain at least 1 number or special character. ## ASAP_admin ADMIN_PASSWORD= ## cmws_studio CMWS_PASSWORD= ## ASAP_monitor MONITOR_PASSWORD= ## ASAP_operator OPERATOR_PASSWORD= ## WebLogic admin password WLS_PASSWORD= ## asap_ws_user WS_PASSWORD= ########################################################################## ## Configure GRPC specific properties ########################################################################## ## SSL for GRPC ? 1 = Enabled, 0 = Not Enabled GRPC_SSL_ENABLED=0 ## Authentication for GRPC ? 1 = Enabled, 0 = Not Enabled GRPC_AUTH_ENABLED=0 ## Absolute path of SSL identity certificate in the pkcs12 format SSL_IDENTITY_PKCS12_LOCATION= ## Absolute path of SSL trust certificate in the pkcs12 format SSL_TRUST_PKCS12_LOCATION= ########################################################################## ## Configure ASAP cfg values ########################################################################## CFG.MSGSND_RETRIES=6
Note:
- You must not change the default value (
0 - Not Enabled
) for the parametersGRPC_SSL_ENABLED
andGRPC_AUTH_ENABLED
. - If Traefik is configured,
WLS_CHANNEL_PUBLIC_PORT
parameter must have the traefik ingress controller nodeport value (for http 30305 and for https 30443). - If DNS is configured,
WLS_CHANNEL_PUBLIC_PORT
must have the value same asWLS_CHANNEL_LISTEN_PORT
. ADMIN_PASSWORD
,CMWS_PASSWORD
,MONITOR_PASSWORD
,OPERATOR_PASSWORD
,WLS_PASSWORD
, andWS_PASSWORD
parameters must have passwords at least 8 characters long, and must contain at least 1 number or special character.- The
asap_image.properties
file is available only in the host machine and not as part of the ASAP image.
- You must not change the default value (
-
Run the
build-asap-images.sh
script using the following command:./build-asap-images.sh -i asap
The script creates the staging ASAP image for the environment IDs specified in the
asap_image.properties
file by installing WebLogic Server, Java, and the database client.
Working with Cartridges
ASAP cartridges are discrete software components developed for ASAP. An ASAP cartridge provides specific domain behavior on top of the core ASAP software. This domain behavior includes a part of, or all services on a network element (NE), element management system (EMS), or network management system (NMS). For more information about cartridges, see ASAP Cartridge Development Guide and for installing cartridges, see ASAP Installation Guide.
To provision orders to network elements, you install cartridges in the ASAP
container that are available in the $ASAP_VOLUME/cartridges/
directory.
After installing the cartridges, you must exit the ASAP container by using the
exit
command.
To install cartridges:
-
Copy the required cartridges to the
$asap-img-builder/cartridges
directory. -
Run the following command to copy installers and cartridges to the volume:
$asap-img-builder/upgrade-asap-image.sh
-
Create a new container with the ASAP image created by the
build-asap-images.sh
script using the following command:podman run --name $ASAP_CONTAINER -dit -h $PODMAN_HOSTNAME -p $WEBLOGIC_PORT -v $ASAP_VOLUME:/$ASAP_VOLUME ASAP-BASE-IMAGE
For example: podman run --name asap-c -dit -h asaphost -p 7890 -v podmanhost_volume:/podmanhost_volume asapcn:7.4.1.0
The container is created with asap-c.
-
Enter into the ASAP container using the following command:
podman exec -it CONTAINER_NAME bash
where
CONTAINER_NAME
is the $ASAP_CONTAINER. For example, asap-c.You have entered into the ASAP container.
-
Start ASAP and WebLogic Server using the
startALL.sh
script. -
Navigate to the ASAP installation directory using
cd $ASAP_BASE
. -
Source the environment profile using the
source Environment_Profile
script. -
Verify the ASAP server status using the
status
command. -
Install the cartridges present in the
/podmanhost_volume/cartridges
directory. For more information, see "Installing a Cartridge" in ASAP Installation Guide. -
Exit the ASAP container by using the following command:
exit
-
After you install the cartridge, create an image from the staging container using the following command:
podman commit CONTAINER_NAME imagename:version
WhereCONTAINER_NAME
is the $ASAP_CONTAINER.version
is the version of the ASAP image.Note:
version
should be higher than the previous version.
-
Stop and remove the containers using the following commands:
podman stop CONTAINER_NAME
podman rm CONTAINER_NAME
where
CONTAINER_NAME
is the $ASAP_CONTAINER.
Securing Your ASAP Installation
ASAP security is designed to provide confidentiality, data integrity, and ensure on-demand access to services for authorized users. For information about ASAP security, see "Setting Up and Managing ASAP Security" in ASAP System Administrator's Guide.