The below picture indicates the current state of the Cloud Pak Deployer, which infrastructures are supported to provision or use OpenShift, the storage classes which can be controlled and the Cloud Paks with cartridges and components.
The Cloud Pak Deployer requires podman or docker to run, which are available on most Linux distributions such as Red Hat Enterprise Linux (preferred), Fedora, CentOS, Ubuntu and MacOS. On Windows Docker behaves differently than Linux platforms and this can cause the deployer to fail.
Once the guest operating system is up and running, log on as root to the guest operating system. For convenience, VirtualBox also supports port forwarding so you can use PuTTY to access the Linux command line.
If you clone the repository from the command line, you will need to enter a token when you run the git clone command. You can retrieve your token as follows:
Go to a directory where you want to download the Git repo.
First go to the directory where you cloned the GitHub repository, for example ~/cloud-pak-deployer.
cd cloud-pak-deployer
+
Then run the following command to build the container image.
./cp-deploy.sh build
+
This process will take 5-10 minutes to complete and it will install all the pre-requisites needed to run the automation, including Ansible, Python and required operating system packages. For the installation to work, the system on which the image is built must be connected to the internet.
\ No newline at end of file
diff --git a/10-use-deployer/1-overview/overview/index.html b/10-use-deployer/1-overview/overview/index.html
new file mode 100644
index 000000000..a9ab947b7
--- /dev/null
+++ b/10-use-deployer/1-overview/overview/index.html
@@ -0,0 +1 @@
+ Overview - Cloud Pak Deployer
The server on which you run the Cloud Pak Deployer may not have the necessary clients to interact with the cloud infrastructure, OpenShift, or the installed Cloud Pak. You can run commands using the same container image that runs the deployment of OpenShift and the Cloud Paks through the command line: Open a command line
If you want to destroy the provisioned OpenShift cluster, including the installed Cloud Pak(s), you can do this through the Cloud pak Deployer. Steps can be found here: Destroy the assets
\ No newline at end of file
diff --git a/10-use-deployer/3-run/aws-rosa/index.html b/10-use-deployer/3-run/aws-rosa/index.html
new file mode 100644
index 000000000..2bd593e0a
--- /dev/null
+++ b/10-use-deployer/3-run/aws-rosa/index.html
@@ -0,0 +1,40 @@
+ AWS ROSA - Cloud Pak Deployer
On Amazon Web Services (AWS), OpenShift can be set up in various ways, managed by Red Hat (ROSA) or self-managed. The steps below are applicable to the ROSA (Red Hat OpenShift on AWS) installation. More information about ROSA can be found here: https://aws.amazon.com/rosa/
There are 5 main steps to run the deployer for AWS:
A typical setup of the ROSA cluster is pictured below:
When deploying ROSA, an external host name and domain name are automatically generated by Amazon Web Services and both the API and Ingress servers can be resolved by external clients. At this stage, one cannot configure the domain name to be used.
Deployer reads the configuration from a directory you set in the CONFIG_DIR environment variable. A status directory (STATUS_DIR environment variable) is used to log activities, store temporary files, scripts. If you use a File Vault (default), the secrets are kept in the $STATUS_DIR/vault directory.
You can find OpenShift and Cloud Pak sample configuration (yaml) files here: sample configuration. For ROSA installations, copy one of ocp-aws-rosa-*.yaml files into the $CONFIG_DIR/config directory. If you also want to install a Cloud Pak, copy one of the cp4*.yaml files.
Set configuration and status directories environment variables🔗
Cloud Pak Deployer uses the status directory to log its activities and also to keep track of its running state. For a given environment you're provisioning or destroying, you should always specify the same status directory to avoid contention between different deploy runs.
If you do not yet have an access key (or you no longer have the associated secret), create an access key
Store your Access Key ID and Secret Access Key in safe place
Alternative: Using temporary AWS security credentials (STS)🔗
If your account uses temporary security credentials for AWS resources, you must use the Access Key ID, Secret Access Key and Session Token associated with your temporary credentials.
You must set the infrastructure.use_sts to True in the openshift configuration if you need to use the temporary security credentials. Cloud Pak Deployer will then run the rosa create cluster command with the appropriate flag.
Without these changes, sthe cloud player will fail and you will receive the following error message: "Failed to get the cluster-admin password from the vault".
If you want to pull the Cloud Pak images from the entitled registry (i.e. an online install), or if you want to mirror the images to your private registry, you need to download the entitlement key. You can skip this step if you're installing from a private registry and all Cloud Pak images have already been downloaded to the private registry.
Select Get Entitlement Key and create a new key (or copy your existing key)
Copy the key value
Warning
As stated for the API key, you can choose to download the entitlement key to a file. However, when we reference the entitlement key, we mean the 80+ character string that is displayed, not the file.
Optional: If your user does not have permanent administrator access but using temporary credentials, you can set the AWS_SESSION_TOKEN to be used for the AWS CLI.
export AWS_SESSION_TOKEN=your_session_token
+
AWS_ACCESS_KEY_ID: This is the AWS Access Key you retrieved above, often this is something like AK1A2VLMPQWBJJQGD6GV
AWS_SECRET_ACCESS_KEY: The secret associated with your AWS Access Key, also retrieved above
AWS_SESSION_TOKEN: The session token that will grant temporary elevated permissions
ROSA_LOGIN_TOKEN: The offline access token that was retrieved before. This is a very long string (200+ characters). Make sure you enclose the string in single or double quotes as it may hold special characters
CP_ENTITLEMENT_KEY: This is the entitlement key you acquired as per the instructions above, this is a 80+ character string
Warning
If your AWS_SESSION_TOKEN is expires while the deployer is still running, the deployer may end abnormally. In such case, you can just issue new temporary credentials (AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY and AWS_SESSION_TOKEN) and restart the deployer. Alternatively, you can update the 3 vault secrets, respectively aws-access-key, aws-secret-access-key and aws-session-token with new values as they are re-retrieved by the deployer on a regular basis.
If you only want to validate the configuration, you can run the dpeloyer with the --check-only argument. This will run the first stage to validate variables and vault secrets and then execute the generators.
To run the container using a local configuration input directory and a data directory where temporary and state is kept, use the example below. If you don't specify the status directory, the deployer will automatically create a temporary directory. Please note that the status directory will also hold secrets if you have configured a flat file vault. If you lose the directory, you will not be able to make changes to the configuration and adjust the deployment. It is best to specify a permanent directory that you can reuse later. If you specify an existing directory the current user must be the owner of the directory. Failing to do so may cause the container to fail with insufficient permissions.
./cp-deploy.sh env apply --accept-all-licenses
+
You can also specify extra variables such as env_id to override the names of the objects referenced in the .yaml configuration files as {{ env_id }}-xxxx. For more information about the extra (dynamic) variables, see advanced configuration.
The --accept-all-licenses flag is optional and confirms that you accept all licenses of the installed cartridges and instances. Licenses must be either accepted in the configuration files or at the command line.
When running the command, the container will start as a daemon and the command will tail-follow the logs. You can press Ctrl-C at any time to interrupt the logging but the container will continue to run in the background.
You can return to view the logs as follows:
./cp-deploy.sh env logs
+
Deploying the infrastructure, preparing OpenShift and installing the Cloud Pak will take a long time, typically between 1-5 hours,dependent on which Cloud Pak cartridges you configured. For estimated duration of the steps, refer to Timings.
If you need to interrupt the automation, use CTRL-C to stop the logging output and then use:
If the Cloud Pak Deployer fails, for example because certain infrastructure components are temporarily not available, fix the cause if needed and then just re-run it with the same CONFIG_DIR and STATUS_DIR as well extra variables. The provisioning process has been designed to be idempotent and it will not redo actions that have already completed successfully.
Once the process has finished, it will output the URLs by which you can access the deployed Cloud Pak. You can also find this information under the cloud-paks directory in the status directory you specified.
To retrieve the Cloud Pak URL(s):
cat $STATUS_DIR/cloud-paks/*
+
This will show the Cloud Pak URLs:
Cloud Pak for Data URL for cluster pluto-01 and project cpd:
+https://cpd-cpd.apps.pluto-01.pmxz.p1.openshiftapps.com
+
The admin password can be retrieved from the vault as follows:
List the secrets in the vault:
./cp-deploy.sh vault list
+
This will show something similar to the following:
Secret list for group sample:
+- aws-access-key
+- aws-secret-access-key
+- ibm_cp_entitlement_key
+- rosa-login-token
+- pluto-01-cluster-admin-password
+- cp4d_admin_zen_40_pluto_01
+- all-config
+
You can then retrieve the Cloud Pak for Data admin password like this:
./cp-deploy.sh vault get --vault-secret cp4d_admin_zen_40_pluto_01
+
PLAY [Secrets] *****************************************************************
+included: /cloud-pak-deployer/automation-roles/99-generic/vault/vault-get-secret/tasks/get-secret-file.yml for localhost
+cp4d_admin_zen_40_pluto_01: gelGKrcgaLatBsnAdMEbmLwGr
+
You can find examples of a couple of typical changes you may want to do here: Post-run changes.
\ No newline at end of file
diff --git a/10-use-deployer/3-run/aws-self-managed/index.html b/10-use-deployer/3-run/aws-self-managed/index.html
new file mode 100644
index 000000000..24b461046
--- /dev/null
+++ b/10-use-deployer/3-run/aws-self-managed/index.html
@@ -0,0 +1,45 @@
+ AWS Self-managed - Cloud Pak Deployer
Red Hat OpenShift also supports single-node deployments in which control plane and compute are combined into a single node. Obviously, this type of configuration does not cater for any high availability requirements that are usually part of a production installation, but it does offer a more cost-efficient option for development and testing purposes.
Cloud Pak Deployer can deploy a single-node OpenShift with elastic storage and a sample configuration is provided as part of the deployer.
Warning
When deploying the IBM Cloud Paks on single-node OpenShift, there may be intermittent timeouts as pods are starting up. In those cases, just re-run the deployer with the same configuration and check status of the pods.
Deployer reads the configuration from a directory you set in the CONFIG_DIR environment variable. A status directory (STATUS_DIR environment variable) is used to log activities, store temporary files, scripts. If you use a File Vault (default), the secrets are kept in the $STATUS_DIR/vault directory.
You can find OpenShift and Cloud Pak sample configuration (yaml) files here: sample configuration. For self-managed OpenShift installations, copy one of ocp-aws-self-managed-*.yaml files into the $CONFIG_DIR/config directory. If you also want to install a Cloud Pak, copy one of the cp4*.yaml files.
Set configuration and status directories environment variables🔗
Cloud Pak Deployer uses the status directory to log its activities and also to keep track of its running state. For a given environment you're provisioning or destroying, you should always specify the same status directory to avoid contention between different deploy runs.
When deploying a self-managed OpenShift on Amazon web Services, a public hosted zone must be created in the same account as your OpenShift cluster. The domain name or subdomain name registered in the Route53 service must be specifed in the openshift configuration of the deployer.
If you can use your permanent security credentials for the AWS account, you will need an Access Key ID and Secret Access Key for the deployer to setup an OpenShift cluster on AWS.
If you do not yet have an access key (or you no longer have the associated secret), create an access key
Store your Access Key ID and Secret Access Key in safe place
Alternative: Using temporary AWS security credentials (STS)🔗
If your account uses temporary security credentials for AWS resources, you must use the Access Key ID, Secret Access Key and Session Token associated with your temporary credentials.
If the openshift configuration has the infrastructure.credentials_mode set to Manual, Cloud Pak Deployer will automatically configure and run the Cloud Credential Operator utility.
If you want to pull the Cloud Pak images from the entitled registry (i.e. an online install), or if you want to mirror the images to your private registry, you need to download the entitlement key. You can skip this step if you're installing from a private registry and all Cloud Pak images have already been downloaded to the private registry.
Select Get Entitlement Key and create a new key (or copy your existing key)
Copy the key value
Warning
As stated for the API key, you can choose to download the entitlement key to a file. However, when we reference the entitlement key, we mean the 80+ character string that is displayed, not the file.
CP_ENTITLEMENT_KEY: This is the entitlement key you acquired as per the instructions above, this is a 80+ character string. You don't need to set this environment variable when you install the Cloud Pak(s) from a private registry
Set the environment variables for AWS self-managed OpenShift deployment🔗
Optional: If your user does not have permanent administrator access but using temporary credentials, you can set the AWS_SESSION_TOKEN to be used for the AWS CLI.
export AWS_SESSION_TOKEN=your_session_token
+
AWS_ACCESS_KEY_ID: This is the AWS Access Key you retrieved above, often this is something like AK1A2VLMPQWBJJQGD6GV
AWS_SECRET_ACCESS_KEY: The secret associated with your AWS Access Key, also retrieved above
AWS_SESSION_TOKEN: The session token that will grant temporary elevated permissions
Warning
If your AWS_SESSION_TOKEN is expires while the deployer is still running, the deployer may end abnormally. In such case, you can just issue new temporary credentials (AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY and AWS_SESSION_TOKEN) and restart the deployer. Alternatively, you can update the 3 vault secrets, respectively aws-access-key, aws-secret-access-key and aws-session-token with new values as they are re-retrieved by the deployer on a regular basis.
Create the secrets needed for self-managed OpenShift cluster🔗
You need to store the below credentials in the vault so that the deployer has access to them when installing self-managed OpenShift cluster on AWS.
If you only want to validate the configuration, you can run the dpeloyer with the --check-only argument. This will run the first stage to validate variables and vault secrets and then execute the generators.
To run the container using a local configuration input directory and a data directory where temporary and state is kept, use the example below. If you don't specify the status directory, the deployer will automatically create a temporary directory. Please note that the status directory will also hold secrets if you have configured a flat file vault. If you lose the directory, you will not be able to make changes to the configuration and adjust the deployment. It is best to specify a permanent directory that you can reuse later. If you specify an existing directory the current user must be the owner of the directory. Failing to do so may cause the container to fail with insufficient permissions.
./cp-deploy.sh env apply --accept-all-licenses
+
You can also specify extra variables such as env_id to override the names of the objects referenced in the .yaml configuration files as {{ env_id }}-xxxx. For more information about the extra (dynamic) variables, see advanced configuration.
The --accept-all-licenses flag is optional and confirms that you accept all licenses of the installed cartridges and instances. Licenses must be either accepted in the configuration files or at the command line.
When running the command, the container will start as a daemon and the command will tail-follow the logs. You can press Ctrl-C at any time to interrupt the logging but the container will continue to run in the background.
You can return to view the logs as follows:
./cp-deploy.sh env logs
+
Deploying the infrastructure, preparing OpenShift and installing the Cloud Pak will take a long time, typically between 1-5 hours,dependent on which Cloud Pak cartridges you configured. For estimated duration of the steps, refer to Timings.
If you need to interrupt the automation, use CTRL-C to stop the logging output and then use:
If the Cloud Pak Deployer fails, for example because certain infrastructure components are temporarily not available, fix the cause if needed and then just re-run it with the same CONFIG_DIR and STATUS_DIR as well extra variables. The provisioning process has been designed to be idempotent and it will not redo actions that have already completed successfully.
Once the process has finished, it will output the URLs by which you can access the deployed Cloud Pak. You can also find this information under the cloud-paks directory in the status directory you specified.
To retrieve the Cloud Pak URL(s):
cat $STATUS_DIR/cloud-paks/*
+
This will show the Cloud Pak URLs:
Cloud Pak for Data URL for cluster pluto-01 and project cpd (domain name specified was example.com):
+https://cpd-cpd.apps.pluto-01.example.com
+
The admin password can be retrieved from the vault as follows:
List the secrets in the vault:
./cp-deploy.sh vault list
+
This will show something similar to the following:
Secret list for group sample:
+- aws-access-key
+- aws-secret-access-key
+- ocp-pullsecret
+- ocp-ssh-pub-key
+- ibm_cp_entitlement_key
+- pluto-01-cluster-admin-password
+- cp4d_admin_zen_40_pluto_01
+- all-config
+
You can then retrieve the Cloud Pak for Data admin password like this:
./cp-deploy.sh vault get --vault-secret cp4d_admin_zen_40_pluto_01
+
PLAY [Secrets] *****************************************************************
+included: /cloud-pak-deployer/automation-roles/99-generic/vault/vault-get-secret/tasks/get-secret-file.yml for localhost
+cp4d_admin_zen_40_pluto_01: gelGKrcgaLatBsnAdMEbmLwGr
+
You can find examples of a couple of typical changes you may want to do here: Post-run changes.
\ No newline at end of file
diff --git a/10-use-deployer/3-run/azure-aro/index.html b/10-use-deployer/3-run/azure-aro/index.html
new file mode 100644
index 000000000..4546dc93f
--- /dev/null
+++ b/10-use-deployer/3-run/azure-aro/index.html
@@ -0,0 +1,48 @@
+ Azure ARO - Cloud Pak Deployer
Running the Cloud Pak Deployer on Microsoft Azure - ARO🔗
On Azure, OpenShift can be set up in various ways, managed by Red Hat (ARO) or self-managed. The steps below are applicable to the ARO (Azure Red Hat OpenShift).
There are 5 main steps to run the deployer for Azure:
A typical setup of the ARO cluster is pictured below:
When deploying ARO, you can configure the domain name by setting the openshift.domain_name attribute. The resulting domain name is managed by Azure, and it must be unique across all ARO instances deployed in Azure. Both the API and Ingress urls are set to be public in the template, so they can be resolved by external clients. If you want to use a custom domain and don't have one yet, you buy one from Azure: https://learn.microsoft.com/en-us/azure/app-service/manage-custom-dns-buy-domain.
Deployer reads the configuration from a directory you set in the CONFIG_DIR environment variable. A status directory (STATUS_DIR environment variable) is used to log activities, store temporary files, scripts. If you use a File Vault (default), the secrets are kept in the $STATUS_DIR/vault directory.
You can find OpenShift and Cloud Pak sample configuration (yaml) files here: sample configuration. For ARO installations, copy one of ocp-azure-aro*.yaml files into the $CONFIG_DIR/config directory. If you also want to install a Cloud Pak, copy one of the cp4*.yaml files.
Set configuration and status directories environment variables🔗
Cloud Pak Deployer uses the status directory to log its activities and also to keep track of its running state. For a given environment you're provisioning or destroying, you should always specify the same status directory to avoid contention between different deploy runs.
Verify your quota and permissions in Microsoft Azure🔗
Check Azure resource quota of the subscription - Azure Red Hat OpenShift requires a minimum of 40 cores to create and run an OpenShift cluster.
The ARO cluster is provisioned using the az command. Ideally, one has to have Contributor permissions on the subscription (Azure resources) and Application administrator role assigned in the Azure Active Directory. See details here.
AZURE_RESOURCE_GROUP: The Azure resource group that will hold all resources belonging to the cluster: VMs, load balancers, virtual networks, subnets, etc.. Typically you will create a resource group for every OpenShift cluster you provision.
AZURE_LOCATION: The Azure location of the resource group, for example useast or westeurope.
AZURE_SP: Azure service principal that is used to create the resources on Azure. You will get the service principal from the Azure administrator.
You must run the OpenShift installation using an Azure Service Principal with sufficient permissions. The Azure account administrator will share the SP credentials as a JSON file. If you have subscription-level access you can also create the Service Principal yourself. See steps in Create Azure service principal.
If you want to pull the Cloud Pak images from the entitled registry (i.e. an online install), or if you want to mirror the images to your private registry, you need to download the entitlement key. You can skip this step if you're installing from a private registry and all Cloud Pak images have already been downloaded to the private registry.
Select Get Entitlement Key and create a new key (or copy your existing key)
Copy the key value
Warning
As stated for the API key, you can choose to download the entitlement key to a file. However, when we reference the entitlement key, we mean the 80+ character string that is displayed, not the file.
If you only want to validate the configuration, you can run the dpeloyer with the --check-only argument. This will run the first stage to validate variables and vault secrets and then execute the generators.
To run the container using a local configuration input directory and a data directory where temporary and state is kept, use the example below. If you don't specify the status directory, the deployer will automatically create a temporary directory. Please note that the status directory will also hold secrets if you have configured a flat file vault. If you lose the directory, you will not be able to make changes to the configuration and adjust the deployment. It is best to specify a permanent directory that you can reuse later. If you specify an existing directory the current user must be the owner of the directory. Failing to do so may cause the container to fail with insufficient permissions.
./cp-deploy.sh env apply --accept-all-licenses
+
You can also specify extra variables such as env_id to override the names of the objects referenced in the .yaml configuration files as {{ env_id }}-xxxx. For more information about the extra (dynamic) variables, see advanced configuration.
The --accept-all-licenses flag is optional and confirms that you accept all licenses of the installed cartridges and instances. Licenses must be either accepted in the configuration files or at the command line.
When running the command, the container will start as a daemon and the command will tail-follow the logs. You can press Ctrl-C at any time to interrupt the logging but the container will continue to run in the background.
You can return to view the logs as follows:
./cp-deploy.sh env logs
+
Deploying the infrastructure, preparing OpenShift and installing the Cloud Pak will take a long time, typically between 1-5 hours,dependent on which Cloud Pak cartridges you configured. For estimated duration of the steps, refer to Timings.
If you need to interrupt the automation, use CTRL-C to stop the logging output and then use:
If the Cloud Pak Deployer fails, for example because certain infrastructure components are temporarily not available, fix the cause if needed and then just re-run it with the same CONFIG_DIR and STATUS_DIR as well extra variables. The provisioning process has been designed to be idempotent and it will not redo actions that have already completed successfully.
Once the process has finished, it will output the URLs by which you can access the deployed Cloud Pak. You can also find this information under the cloud-paks directory in the status directory you specified.
To retrieve the Cloud Pak URL(s):
cat $STATUS_DIR/cloud-paks/*
+
This will show the Cloud Pak URLs:
Cloud Pak for Data URL for cluster pluto-01 and project cpd (domain name specified was example.com):
+https://cpd-cpd.apps.pluto-01.example.com
+
The admin password can be retrieved from the vault as follows:
List the secrets in the vault:
./cp-deploy.sh vault list
+
This will show something similar to the following:
Secret list for group sample:
+- ibm_cp_entitlement_key
+- sample-provision-ssh-key
+- sample-provision-ssh-pub-key
+- cp4d_admin_zen_sample_sample
+
You can then retrieve the Cloud Pak for Data admin password like this:
./cp-deploy.sh vault get --vault-secret cp4d_admin_zen_sample_sample
+
PLAY [Secrets] *****************************************************************
+included: /automation_script/automation-roles/99-generic/vault/vault-get-secret/tasks/get-secret-file.yml for localhost
+cp4d_admin_zen_sample_sample: gelGKrcgaLatBsnAdMEbmLwGr
+
You can find examples of a couple of typical changes you may want to do here: Post-run changes.
\ No newline at end of file
diff --git a/10-use-deployer/3-run/azure-self-managed/index.html b/10-use-deployer/3-run/azure-self-managed/index.html
new file mode 100644
index 000000000..0931a1c91
--- /dev/null
+++ b/10-use-deployer/3-run/azure-self-managed/index.html
@@ -0,0 +1,48 @@
+ Azure Self-managed - Cloud Pak Deployer
Running the Cloud Pak Deployer on Microsoft Azure - Self-managed🔗
On Azure, OpenShift can be set up in various ways, managed by Red Hat (ARO) or self-managed. The steps below are applicable to the self-managed Red Hat OpenShift.
There are 5 main steps to run the deployer for Azure:
A typical setup of the OpenShift cluster on Azure is pictured below:
When deploying self-managed OpenShift on Azure, you must configure the domain name by setting the openshift.domain_name, which must be public domain with a registrar. OpenShift will create a public DNS zone with additional entries to reach the OpenShift API and the applications (Cloud Paks). If you don't have a domain yet, you buy one from Azure: https://learn.microsoft.com/en-us/azure/app-service/manage-custom-dns-buy-domain.
Deployer reads the configuration from a directory you set in the CONFIG_DIR environment variable. A status directory (STATUS_DIR environment variable) is used to log activities, store temporary files, scripts. If you use a File Vault (default), the secrets are kept in the $STATUS_DIR/vault directory.
You can find OpenShift and Cloud Pak sample configuration (yaml) files here: sample configuration. For Azure self-managed installations, copy one of ocp-azure-self-managed*.yaml files into the $CONFIG_DIR/config directory. If you also want to install a Cloud Pak, copy one of the cp4*.yaml files.
Set configuration and status directories environment variables🔗
Cloud Pak Deployer uses the status directory to log its activities and also to keep track of its running state. For a given environment you're provisioning or destroying, you should always specify the same status directory to avoid contention between different deploy runs.
Verify your quota and permissions in Microsoft Azure🔗
Check Azure resource quota of the subscription - Azure Red Hat OpenShift requires a minimum of 40 cores to create and run an OpenShift cluster.
The self-managed cluster is provisioned using the IPI installer command. Ideally, one has to have Contributor permissions on the subscription (Azure resources) and Application administrator role assigned in the Azure Active Directory. See details here.
AZURE_RESOURCE_GROUP: The Azure resource group that will hold all resources belonging to the cluster: VMs, load balancers, virtual networks, subnets, etc.. Typically you will create a resource group for every OpenShift cluster you provision.
AZURE_LOCATION: The Azure location of the resource group, for example useast or westeurope.
AZURE_SP: Azure service principal that is used to create the resources on Azure. You will get the service principal from the Azure administrator.
You must run the OpenShift installation using an Azure Service Principal with sufficient permissions. The Azure account administrator will share the SP credentials as a JSON file. If you have subscription-level access you can also create the Service Principal yourself. See steps in Create Azure service principal.
If you want to pull the Cloud Pak images from the entitled registry (i.e. an online install), or if you want to mirror the images to your private registry, you need to download the entitlement key. You can skip this step if you're installing from a private registry and all Cloud Pak images have already been downloaded to the private registry.
Select Get Entitlement Key and create a new key (or copy your existing key)
Copy the key value
Warning
As stated for the API key, you can choose to download the entitlement key to a file. However, when we reference the entitlement key, we mean the 80+ character string that is displayed, not the file.
CP_ENTITLEMENT_KEY: This is the entitlement key you acquired as per the instructions above, this is a 80+ character string. You don't need to set this environment variable when you install the Cloud Pak(s) from a private registry
Create the secrets needed for self-managed OpenShift cluster🔗
You need to store the OpenShift pull secret and service principal credentials in the vault so that the deployer has access to it.
If you only want to validate the configuration, you can run the dpeloyer with the --check-only argument. This will run the first stage to validate variables and vault secrets and then execute the generators.
To run the container using a local configuration input directory and a data directory where temporary and state is kept, use the example below. If you don't specify the status directory, the deployer will automatically create a temporary directory. Please note that the status directory will also hold secrets if you have configured a flat file vault. If you lose the directory, you will not be able to make changes to the configuration and adjust the deployment. It is best to specify a permanent directory that you can reuse later. If you specify an existing directory the current user must be the owner of the directory. Failing to do so may cause the container to fail with insufficient permissions.
./cp-deploy.sh env apply --accept-all-licenses
+
You can also specify extra variables such as env_id to override the names of the objects referenced in the .yaml configuration files as {{ env_id }}-xxxx. For more information about the extra (dynamic) variables, see advanced configuration.
The --accept-all-licenses flag is optional and confirms that you accept all licenses of the installed cartridges and instances. Licenses must be either accepted in the configuration files or at the command line.
When running the command, the container will start as a daemon and the command will tail-follow the logs. You can press Ctrl-C at any time to interrupt the logging but the container will continue to run in the background.
You can return to view the logs as follows:
./cp-deploy.sh env logs
+
Deploying the infrastructure, preparing OpenShift and installing the Cloud Pak will take a long time, typically between 1-5 hours,dependent on which Cloud Pak cartridges you configured. For estimated duration of the steps, refer to Timings.
If you need to interrupt the automation, use CTRL-C to stop the logging output and then use:
If the Cloud Pak Deployer fails, for example because certain infrastructure components are temporarily not available, fix the cause if needed and then just re-run it with the same CONFIG_DIR and STATUS_DIR as well extra variables. The provisioning process has been designed to be idempotent and it will not redo actions that have already completed successfully.
Once the process has finished, it will output the URLs by which you can access the deployed Cloud Pak. You can also find this information under the cloud-paks directory in the status directory you specified.
To retrieve the Cloud Pak URL(s):
cat $STATUS_DIR/cloud-paks/*
+
This will show the Cloud Pak URLs:
Cloud Pak for Data URL for cluster pluto-01 and project cpd (domain name specified was example.com):
+https://cpd-cpd.apps.pluto-01.example.com
+
The admin password can be retrieved from the vault as follows:
List the secrets in the vault:
./cp-deploy.sh vault list
+
This will show something similar to the following:
Secret list for group sample:
+- ibm_cp_entitlement_key
+- sample-provision-ssh-key
+- sample-provision-ssh-pub-key
+- cp4d_admin_cpd_demo
+
You can then retrieve the Cloud Pak for Data admin password like this:
./cp-deploy.sh vault get --vault-secret cp4d_admin_zen_sample_sample
+
PLAY [Secrets] *****************************************************************
+included: /automation_script/automation-roles/99-generic/vault/vault-get-secret/tasks/get-secret-file.yml for localhost
+cp4d_admin_zen_sample_sample: gelGKrcgaLatBsnAdMEbmLwGr
+
You can find examples of a couple of typical changes you may want to do here: Post-run changes.
\ No newline at end of file
diff --git a/10-use-deployer/3-run/azure-service-principal/index.html b/10-use-deployer/3-run/azure-service-principal/index.html
new file mode 100644
index 000000000..57e5fb0a3
--- /dev/null
+++ b/10-use-deployer/3-run/azure-service-principal/index.html
@@ -0,0 +1,52 @@
+ Create an Azure Service Principal - Cloud Pak Deployer
\ No newline at end of file
diff --git a/10-use-deployer/3-run/existing-openshift/index.html b/10-use-deployer/3-run/existing-openshift/index.html
new file mode 100644
index 000000000..60d74b927
--- /dev/null
+++ b/10-use-deployer/3-run/existing-openshift/index.html
@@ -0,0 +1,44 @@
+ Existing OpenShift - Cloud Pak Deployer
Running the Cloud Pak Deployer on an existing OpenShift cluster🔗
When running the Cloud Pak Deployer on an existing OpenShift cluster, the following is assumed:
The OpenShift cluster is up and running with sufficient compute nodes
The appropriate storage class(es) have been pre-created
You have cluster administrator permissions to OpenShift
Info
You can also choose to run Cloud Pak Deployer as a job on the OpenShift cluster. This removes the dependency on a separate server or workstation to run the deployer. Please note that you may need unrestricted OpenShift entitlements for this. To run the deployer on OpenShift via the OpenShift console, see Run on OpenShift using console
With the Existing OpenShift type of deployment you can install and configure the Cloud Pak(s) both on connected and disconnected (air-gapped) cluster. When using the deployer for a disconnected cluster, make sure you specify --air-gapped for the cp-deploy.sh command.
There are 5 main steps to run the deployer for existing OpenShift:
Deployer reads the configuration from a directory you set in the CONFIG_DIR environment variable. A status directory (STATUS_DIR environment variable) is used to log activities, store temporary files, scripts. If you use a File Vault (default), the secrets are kept in the $STATUS_DIR/vault directory.
You can find OpenShift and Cloud Pak sample configuration (yaml) files here: sample configuration. For existing OpenShift installations, copy one of ocp-existing-ocp-*.yaml files into the $CONFIG_DIR/config directory. If you also want to install a Cloud Pak, copy one of the cp4*.yaml files.
Set configuration and status directories environment variables🔗
Cloud Pak Deployer uses the status directory to log its activities and also to keep track of its running state. For a given environment you're provisioning or destroying, you should always specify the same status directory to avoid contention between different deploy runs.
No steps should be required to prepare the infrastructure; this type of installation expects the OpenShift cluster to be up and running with the supported storage classes.
If you want to pull the Cloud Pak images from the entitled registry (i.e. an online install), or if you want to mirror the images to your private registry, you need to download the entitlement key. You can skip this step if you're installing from a private registry and all Cloud Pak images have already been downloaded to the private registry.
Select Get Entitlement Key and create a new key (or copy your existing key)
Copy the key value
Warning
As stated for the API key, you can choose to download the entitlement key to a file. However, when we reference the entitlement key, we mean the 80+ character string that is displayed, not the file.
CP_ENTITLEMENT_KEY: This is the entitlement key you acquired as per the instructions above, this is a 80+ character string. You don't need to set this environment variable when you install the Cloud Pak(s) from a private registry
Store the OpenShift login command or configuration🔗
Because you will be deploying the Cloud Pak on an existing OpenShift cluster, the deployer needs to be able to access OpenShift. There are thre methods for passing the login credentials of your OpenShift cluster(s) to the deployer process:
Regardless of which authentication option you choose, the deployer will retrieve the secret from the vault when it requires access to OpenShift. If the secret cannot be found or if it is invalid or the OpenShift login token has expired, the deployer will fail and you will need to update the secret of your choice.
For most OpenShift installations, you can retrieve the oc login command with a temporary token from the OpenShift console. Go to the OpenShift console and click on your user at the top right of the page to get the login command. Typically this command looks something like this: oc login --server=https://api.pluto-01.coc.ibm.com:6443 --token=sha256~NQUUMroU4B6q_GTBAMS18Y3EIba1KHnJ08L2rBHvTHA
Before passing the oc login command or the kubeconfig file, make sure you can login to your cluster using the command or the config file. If the cluster's API server has a self-signed certificate, make sure you specify the --insecure-skip-tls-verify flag for the oc login command.
Login successful.
+
+You have access to 65 projects, the list has been suppressed. You can list all projects with 'oc projects'
+
+Using project "default".
+
Make sure you put the oc login command between quotes (single or double) to make sure the full command is stored.
When the deployer is run, it automatically sets the oc-login vault secret to the specified oc login command. When logging in to OpenShift, the deployer first checks if there is a specific oc login secret for the cluster in question (see option 2). If there is not, it will default to the generic oc-login secret (option 1).
If you already have a "kubeconfig" file that holds the credentials of your cluster, you can use this, otherwise: - Log in to OpenShift as a cluster administrator using your method of choice - Locate the Kubernetes config file. If you have logged in with the OpenShift client, this is typically ~/.kube/config
If you did not just login to the cluster, the current context of the kubeconfig file may not point to your cluster. The deployer will check that the server the current context points to matches the cluster_name and domain_name of the configured openshift object. To check the current context, run the following command:
oc config current-context
+
Now, store the Kubernetes config file as a vault secret.
If the deployer manages multiple OpenShift clusters, you can specify a kubeconfig file for each of the clusters by prefixing the kubeconfig with the name of the openshift object, for example:
If you only want to validate the configuration, you can run the dpeloyer with the --check-only argument. This will run the first stage to validate variables and vault secrets and then execute the generators.
To run the container using a local configuration input directory and a data directory where temporary and state is kept, use the example below. If you don't specify the status directory, the deployer will automatically create a temporary directory. Please note that the status directory will also hold secrets if you have configured a flat file vault. If you lose the directory, you will not be able to make changes to the configuration and adjust the deployment. It is best to specify a permanent directory that you can reuse later. If you specify an existing directory the current user must be the owner of the directory. Failing to do so may cause the container to fail with insufficient permissions.
./cp-deploy.sh env apply --accept-all-licenses
+
You can also specify extra variables such as env_id to override the names of the objects referenced in the .yaml configuration files as {{ env_id }}-xxxx. For more information about the extra (dynamic) variables, see advanced configuration.
The --accept-all-licenses flag is optional and confirms that you accept all licenses of the installed cartridges and instances. Licenses must be either accepted in the configuration files or at the command line.
When running the command, the container will start as a daemon and the command will tail-follow the logs. You can press Ctrl-C at any time to interrupt the logging but the container will continue to run in the background.
You can return to view the logs as follows:
./cp-deploy.sh env logs
+
Deploying the infrastructure, preparing OpenShift and installing the Cloud Pak will take a long time, typically between 1-5 hours,dependent on which Cloud Pak cartridges you configured. For estimated duration of the steps, refer to Timings.
If you need to interrupt the automation, use CTRL-C to stop the logging output and then use:
If the Cloud Pak Deployer fails, for example because certain infrastructure components are temporarily not available, fix the cause if needed and then just re-run it with the same CONFIG_DIR and STATUS_DIR as well extra variables. The provisioning process has been designed to be idempotent and it will not redo actions that have already completed successfully.
Once the process has finished, it will output the URLs by which you can access the deployed Cloud Pak. You can also find this information under the cloud-paks directory in the status directory you specified.
To retrieve the Cloud Pak URL(s):
cat $STATUS_DIR/cloud-paks/*
+
This will show the Cloud Pak URLs:
Cloud Pak for Data URL for cluster pluto-01 and project cpd (domain name specified was example.com):
+https://cpd-cpd.apps.pluto-01.example.com
+
The admin password can be retrieved from the vault as follows:
List the secrets in the vault:
./cp-deploy.sh vault list
+
This will show something similar to the following:
Secret list for group sample:
+- ibm_cp_entitlement_key
+- oc-login
+- cp4d_admin_cpd_demo
+
You can then retrieve the Cloud Pak for Data admin password like this:
./cp-deploy.sh vault get --vault-secret cp4d_admin_cpd_sample
+
PLAY [Secrets] *****************************************************************
+included: /cloud-pak-deployer/automation-roles/99-generic/vault/vault-get-secret/tasks/get-secret-file.yml for localhost
+cp4d_admin_zen_sample_sample: gelGKrcgaLatBsnAdMEbmLwGr
+
You can find examples of a couple of typical changes you may want to do here: Post-run changes.
\ No newline at end of file
diff --git a/10-use-deployer/3-run/ibm-cloud/index.html b/10-use-deployer/3-run/ibm-cloud/index.html
new file mode 100644
index 000000000..244f5a9b4
--- /dev/null
+++ b/10-use-deployer/3-run/ibm-cloud/index.html
@@ -0,0 +1,26 @@
+ IBM Cloud - Cloud Pak Deployer
Deployer reads the configuration from a directory you set in the CONFIG_DIR environment variable. A status directory (STATUS_DIR environment variable) is used to log activities, store temporary files, scripts. If you use a File Vault (default), the secrets are kept in the $STATUS_DIR/vault directory.
You can find OpenShift and Cloud Pak sample configuration (yaml) files here: sample configuration. For IBM Cloud installations, copy one of ocp-ibm-cloud-roks*.yaml files into the $CONFIG_DIR/config directory. If you also want to install a Cloud Pak, copy one of the cp4*.yaml files.
Set configuration and status directories environment variables🔗
Cloud Pak Deployer uses the status directory to log its activities and also to keep track of its running state. For a given environment you're provisioning or destroying, you should always specify the same status directory to avoid contention between different deploy runs.
In order for the Cloud Pak Deployer to create the infrastructure and deploy IBM Cloud Pak for Data, it must perform tasks on IBM Cloud. In order to do so it requires an IBM Cloud API Key. This can be created by following these steps:
Ensure you have selected the correct IBM Cloud Account for which you wish to use the Cloud Pak Deployer
Click Create an IBM Cloud API Key and provide a name and description
Copy the IBM Cloud API key using the Copy button and store it in a safe place, as you will not be able to retrieve it later
Warning
You can choose to download the API key for later reference. However, when we reference the API key, we mean the IBM Cloud API key as a 40+ character string.
If you want to pull the Cloud Pak images from the entitled registry (i.e. an online install), or if you want to mirror the images to your private registry, you need to download the entitlement key. You can skip this step if you're installing from a private registry and all Cloud Pak images have already been downloaded to the private registry.
Select Get Entitlement Key and create a new key (or copy your existing key)
Copy the key value
Warning
As stated for the API key, you can choose to download the entitlement key to a file. However, when we reference the entitlement key, we mean the 80+ character string that is displayed, not the file.
CP_ENTITLEMENT_KEY: This is the entitlement key you acquired as per the instructions above, this is a 80+ character string. You don't need to set this environment variable when you install the Cloud Pak(s) from a private registry
If you only want to validate the configuration, you can run the dpeloyer with the --check-only argument. This will run the first stage to validate variables and vault secrets and then execute the generators.
To run the container using a local configuration input directory and a data directory where temporary and state is kept, use the example below. If you don't specify the status directory, the deployer will automatically create a temporary directory. Please note that the status directory will also hold secrets if you have configured a flat file vault. If you lose the directory, you will not be able to make changes to the configuration and adjust the deployment. It is best to specify a permanent directory that you can reuse later. If you specify an existing directory the current user must be the owner of the directory. Failing to do so may cause the container to fail with insufficient permissions.
./cp-deploy.sh env apply --accept-all-licenses
+
You can also specify extra variables such as env_id to override the names of the objects referenced in the .yaml configuration files as {{ env_id }}-xxxx. For more information about the extra (dynamic) variables, see advanced configuration.
The --accept-all-licenses flag is optional and confirms that you accept all licenses of the installed cartridges and instances. Licenses must be either accepted in the configuration files or at the command line.
When running the command, the container will start as a daemon and the command will tail-follow the logs. You can press Ctrl-C at any time to interrupt the logging but the container will continue to run in the background.
You can return to view the logs as follows:
./cp-deploy.sh env logs
+
Deploying the infrastructure, preparing OpenShift and installing the Cloud Pak will take a long time, typically between 1-5 hours,dependent on which Cloud Pak cartridges you configured. For estimated duration of the steps, refer to Timings.
If you need to interrupt the automation, use CTRL-C to stop the logging output and then use:
If the Cloud Pak Deployer fails, for example because certain infrastructure components are temporarily not available, fix the cause if needed and then just re-run it with the same CONFIG_DIR and STATUS_DIR as well extra variables. The provisioning process has been designed to be idempotent and it will not redo actions that have already completed successfully.
Once the process has finished, it will output the URLs by which you can access the deployed Cloud Pak. You can also find this information under the cloud-paks directory in the status directory you specified.
To retrieve the Cloud Pak URL(s):
cat $STATUS_DIR/cloud-paks/*
+
This will show the Cloud Pak URLs:
Cloud Pak for Data URL for cluster pluto-01 and project cpd (domain name specified was example.com):
+https://cpd-cpd.apps.pluto-01.example.com
+
The admin password can be retrieved from the vault as follows:
List the secrets in the vault:
./cp-deploy.sh vault list
+
This will show something similar to the following:
Secret list for group sample:
+- ibm_cp_entitlement_key
+- sample-provision-ssh-key
+- sample-provision-ssh-pub-key
+- sample-terraform-tfstate
+- cp4d_admin_cpd_demo
+
You can then retrieve the Cloud Pak for Data admin password like this:
./cp-deploy.sh vault get --vault-secret cp4d_admin_cpd_demo
+
PLAY [Secrets] *****************************************************************
+included: /cloud-pak-deployer/automation-roles/99-generic/vault/vault-get-secret/tasks/get-secret-file.yml for localhost
+cp4d_admin_zen_sample_sample: gelGKrcgaLatBsnAdMEbmLwGr
+
You can find examples of a couple of typical changes you may want to do here: Post-run changes.
\ No newline at end of file
diff --git a/10-use-deployer/3-run/images/aws-rosa-ocs.png b/10-use-deployer/3-run/images/aws-rosa-ocs.png
new file mode 100644
index 000000000..37f2cb217
Binary files /dev/null and b/10-use-deployer/3-run/images/aws-rosa-ocs.png differ
diff --git a/10-use-deployer/3-run/images/aws-self-managed-ocs.png b/10-use-deployer/3-run/images/aws-self-managed-ocs.png
new file mode 100644
index 000000000..37f2cb217
Binary files /dev/null and b/10-use-deployer/3-run/images/aws-self-managed-ocs.png differ
diff --git a/10-use-deployer/3-run/images/azure-aro.png b/10-use-deployer/3-run/images/azure-aro.png
new file mode 100644
index 000000000..8d4212c70
Binary files /dev/null and b/10-use-deployer/3-run/images/azure-aro.png differ
diff --git a/10-use-deployer/3-run/images/ibm-roks-ocs.png b/10-use-deployer/3-run/images/ibm-roks-ocs.png
new file mode 100644
index 000000000..42e568754
Binary files /dev/null and b/10-use-deployer/3-run/images/ibm-roks-ocs.png differ
diff --git a/10-use-deployer/3-run/images/vsphere-ocs-nfs.png b/10-use-deployer/3-run/images/vsphere-ocs-nfs.png
new file mode 100644
index 000000000..b99c4bfcf
Binary files /dev/null and b/10-use-deployer/3-run/images/vsphere-ocs-nfs.png differ
diff --git a/10-use-deployer/3-run/run/index.html b/10-use-deployer/3-run/run/index.html
new file mode 100644
index 000000000..c4d7d278e
--- /dev/null
+++ b/10-use-deployer/3-run/run/index.html
@@ -0,0 +1 @@
+ Running Cloud Pak Deployer - Cloud Pak Deployer
Cloud Pak Deployer supports various public and private cloud infrastructures. Click on the links below, or in the left menu to find details about running the deployer on each of the following infrastructures:
\ No newline at end of file
diff --git a/10-use-deployer/3-run/vsphere/index.html b/10-use-deployer/3-run/vsphere/index.html
new file mode 100644
index 000000000..7716e833a
--- /dev/null
+++ b/10-use-deployer/3-run/vsphere/index.html
@@ -0,0 +1,35 @@
+ vSphere - Cloud Pak Deployer
A typical setup of the vSphere cluster with OpenShift is pictured below:
When deploying OpenShift and the Cloud Pak(s) on VMWare vSphere, there is a dependency on a DHCP server for issuing IP addresses to the newly configured cluster nodes. Also, once the OpenShift cluster has been installed, valid fully qualified host names are required to connect to the OpenShift API server at port 6443 and applications running behind the ingress server at port 443. The Cloud Pak deployer cannot set up a DHCP server or a DNS server and to be able to connect to OpenShift or to reach the Cloud Pak after installation, name entries must be set up.
Deployer reads the configuration from a directory you set in the CONFIG_DIR environment variable. A status directory (STATUS_DIR environment variable) is used to log activities, store temporary files, scripts. If you use a File Vault (default), the secrets are kept in the $STATUS_DIR/vault directory.
You can find OpenShift and Cloud Pak sample configuration (yaml) files here: sample configuration. For vSphere installations, copy one of ocp-vsphere-*.yaml files into the $CONFIG_DIR/config directory. If you also want to install a Cloud Pak, copy one of the cp4*.yaml files.
Set configuration and status directories environment variables🔗
Cloud Pak Deployer uses the status directory to log its activities and also to keep track of its running state. For a given environment you're provisioning or destroying, you should always specify the same status directory to avoid contention between different deploy runs.
The OpenShift IPI installer requires vSphere credentials to create VMs and storage
Firewall rules
The OpenShift cluster's API server on port 6443 and application server on port 443 must be reachable.
Whitelisted URLs
The OpenShift and Cloud Pak download locations and registry must be accessible from the vSphere infrastructure. See Whitelisted locations
DHCP
When provisioning new VMs, IP addresses must be automatically assigned through DHCP
DNS
A DNS server that will resolve the OpenShift API server and applications is required. See DNS configuration
Time server
A time server to synchronize the time must be available in the network and configured through the DHCP server
There are also some optional settings, dependent on the specifics of the installation:
Pre-requisite
Description
Bastion server
It can be useful to have a bastion/installation server to run the deployer. This (virtual) server must reside within the vSphere network
NFS details
If an NFS server is used for storage, it must be reacheable (firewall) and no_root_squash must be set
Private registry
If the installation must use a private registry for the Cloud Pak installation, it must be available and credentials shared
Certificates
If the Cloud Pak URL must have a CA-signed certificate, the key, certificate and CA bundle must be available at instlalation time
Load balancer
The OpenShift IPI install creates 2 VIPs and takes care of the routing to the services. In some implementations, a load balancer provided by the infrastructure team is preferred. This load balancer must be configured externally
During the provisioning and configuration process, the deployer needs access to the OpenShift API and the ingress server for which the IP addresses are specified in the openshift object.
Ensure that the DNS server has the following entries:
api.openshift_name.domain_name → Point to the api_vip address configured in the openshift object
*.apps.openshift_name.domain_name → Point to the ingress_vip address configured in the openshift object
If you do not configure the DNS entries upfront, the deployer will still run and it will "spoof" the required entries in the container's /etc/hosts file. However to be able to connect to OpenShift and access the Cloud Pak, the DNS entries are required.
In order for the Cloud Pak Deployer to create the infrastructure and deploy the IBM Cloud Pak, it must have provisioning access to vSphere and it needs the vSphere user and password. The user must have permissions to create VM folders and virtual machines.
VSPHERE_USER: This is the user name of the vSphere user, often this is something like admin@vsphere.local
VSPHERE_PASSWORD: The password of the vSphere user. Be careful with special characters like $, ! as they are not accepted by the IPI provisioning of OpenShift
If you want to pull the Cloud Pak images from the entitled registry (i.e. an online install), or if you want to mirror the images to your private registry, you need to download the entitlement key. You can skip this step if you're installing from a private registry and all Cloud Pak images have already been downloaded to the private registry.
Select Get Entitlement Key and create a new key (or copy your existing key)
Copy the key value
Warning
As stated for the API key, you can choose to download the entitlement key to a file. However, when we reference the entitlement key, we mean the 80+ character string that is displayed, not the file.
CP_ENTITLEMENT_KEY: This is the entitlement key you acquired as per the instructions above, this is a 80+ character string. You don't need to set this environment variable when you install the Cloud Pak(s) from a private registry
If you only want to validate the configuration, you can run the dpeloyer with the --check-only argument. This will run the first stage to validate variables and vault secrets and then execute the generators.
To run the container using a local configuration input directory and a data directory where temporary and state is kept, use the example below. If you don't specify the status directory, the deployer will automatically create a temporary directory. Please note that the status directory will also hold secrets if you have configured a flat file vault. If you lose the directory, you will not be able to make changes to the configuration and adjust the deployment. It is best to specify a permanent directory that you can reuse later. If you specify an existing directory the current user must be the owner of the directory. Failing to do so may cause the container to fail with insufficient permissions.
./cp-deploy.sh env apply --accept-all-licenses
+
You can also specify extra variables such as env_id to override the names of the objects referenced in the .yaml configuration files as {{ env_id }}-xxxx. For more information about the extra (dynamic) variables, see advanced configuration.
The --accept-all-licenses flag is optional and confirms that you accept all licenses of the installed cartridges and instances. Licenses must be either accepted in the configuration files or at the command line.
When running the command, the container will start as a daemon and the command will tail-follow the logs. You can press Ctrl-C at any time to interrupt the logging but the container will continue to run in the background.
You can return to view the logs as follows:
./cp-deploy.sh env logs
+
Deploying the infrastructure, preparing OpenShift and installing the Cloud Pak will take a long time, typically between 1-5 hours,dependent on which Cloud Pak cartridges you configured. For estimated duration of the steps, refer to Timings.
If you need to interrupt the automation, use CTRL-C to stop the logging output and then use:
If the Cloud Pak Deployer fails, for example because certain infrastructure components are temporarily not available, fix the cause if needed and then just re-run it with the same CONFIG_DIR and STATUS_DIR as well extra variables. The provisioning process has been designed to be idempotent and it will not redo actions that have already completed successfully.
Once the process has finished, it will output the URLs by which you can access the deployed Cloud Pak. You can also find this information under the cloud-paks directory in the status directory you specified.
To retrieve the Cloud Pak URL(s):
cat $STATUS_DIR/cloud-paks/*
+
This will show the Cloud Pak URLs:
Cloud Pak for Data URL for cluster pluto-01 and project cpd (domain name specified was example.com):
+https://cpd-cpd.apps.pluto-01.example.com
+
The admin password can be retrieved from the vault as follows:
List the secrets in the vault:
./cp-deploy.sh vault list
+
This will show something similar to the following:
Secret list for group sample:
+- vsphere-user
+- vsphere-password
+- ocp-pullsecret
+- ocp-ssh-pub-key
+- ibm_cp_entitlement_key
+- sample-kubeadmin-password
+- cp4d_admin_cpd_demo
+
You can then retrieve the Cloud Pak for Data admin password like this:
./cp-deploy.sh vault get --vault-secret cp4d_admin_cpd_demo
+
PLAY [Secrets] *****************************************************************
+included: /cloud-pak-deployer/automation-roles/99-generic/vault/vault-get-secret/tasks/get-secret-file.yml for localhost
+cp4d_admin_zen_sample_sample: gelGKrcgaLatBsnAdMEbmLwGr
+
You can find examples of a couple of typical changes you may want to do here: Post-run changes.
\ No newline at end of file
diff --git a/10-use-deployer/5-post-run/post-run/index.html b/10-use-deployer/5-post-run/post-run/index.html
new file mode 100644
index 000000000..ba6ddfbc2
--- /dev/null
+++ b/10-use-deployer/5-post-run/post-run/index.html
@@ -0,0 +1,10 @@
+ Post-run changes - Cloud Pak Deployer
If you want to change the deployed configuration, you can just update the configuration files and re-run the deployer. Make sure that you use the same input configuration and status directories and also the env_id if you specified one, otherwise deployment may fail.
Below are a couple of examples of post-run changes you may want to do.
When initially installed, the Cloud Pak Deployer will generate a strong password for the Cloud Pak for Data admin user (or cpadmin if you have selected to use Foundational Services IAM). If you want to change the password afterwards, you can do this from the Cloud Pak for Data user interface, but this means that the deployer will no longer be able to make changes to the Cloud Pak for Data configuration.
If you have updated the admin password from the UI, please make sure you also update the secret in the vault.
First, list the secrets in the vault:
./cp-deploy.sh vault list
+
This will show something similar to the following:
Secret list for group sample:
+- ibm_cp_entitlement_key
+- sample-provision-ssh-key
+- sample-provision-ssh-pub-key
+- sample-terraform-tfstate
+- cp4d_admin_zen_sample_sample
+
Then, update the password:
./cp-deploy.sh vault set -vs cp4d_admin_zen_sample_sample -vsv "my Really Sec3re Passw0rd"
+
Finally, run the deployer again. It will make the necessary changes to the OpenShift secret and check that the admin user can log in. In this case you can speed up the process via the --skip-infra flag.
\ No newline at end of file
diff --git a/10-use-deployer/7-command/command/index.html b/10-use-deployer/7-command/command/index.html
new file mode 100644
index 000000000..e81293618
--- /dev/null
+++ b/10-use-deployer/7-command/command/index.html
@@ -0,0 +1,27 @@
+ Running commands - Cloud Pak Deployer
Open a command line within the Cloud Pak Deployer container🔗
Sometimes you may need to access the OpenShift cluster using the OpenShift client. For convenience we have made the oc command available in the Cloud Pak Deployer and you can start exploring the current OpenShift cluster immediately without having to install the client on your own workstation.
Make sure you have set the CONFIG_DIR and STATUS_DIR environment variables to the same values when you ran the env apply command. This will ensure that the oc command will access the OpenShift cluster(s) of that configuration.
If you have not run the deployer yet and do not intend to install any Cloud Paks, but you do want to access the OpenShift cluster from the command line to check or prepare items, run the deployer with the --skip-cp-install flag.
./cp-deploy.sh env apply --skip-cp-install
+
Deployer will check the configuration, download clients, attempt to login to OpenShift and prepare the OpenShift cluster with the global pull secret and (for Cloud Pak for Data) node settings. After that the deployer will finish without installing any Cloud Pak.
-------------------------------------------------------------------------------
+Entering Cloud Pak Deployer command line in a container.
+Use the "exit" command to leave the container and return to the hosting server.
+-------------------------------------------------------------------------------
+Installing OpenShift client
+Current OpenShift context: cpd
+
Now, you can check the OpenShift cluster version:
[root@Cloud Pak Deployer Container ~]$ oc get clusterversion
+NAME VERSION AVAILABLE PROGRESSING SINCE STATUS
+version 4.8.14 True False 2d3h Cluster version is 4.8.14
+
Or, display the list of OpenShift projects:
[root@Cloud Pak Deployer Container ~]$ oc get projects | grep -v openshift-
+NAME DISPLAY NAME STATUS
+calico-system Active
+default Active
+ibm-cert-store Active
+ibm-odf-validation-webhook Active
+ibm-system Active
+kube-node-lease Active
+kube-public Active
+kube-system Active
+openshift Active
+services Active
+tigera-operator Active
+cpd Active
+
\ No newline at end of file
diff --git a/10-use-deployer/9-destroy/destroy/index.html b/10-use-deployer/9-destroy/destroy/index.html
new file mode 100644
index 000000000..3a0e3fe65
--- /dev/null
+++ b/10-use-deployer/9-destroy/destroy/index.html
@@ -0,0 +1,11 @@
+ Destroy cluster - Cloud Pak Deployer
Optional: set environment variables for deployer config and status directories. If not specified, respectively $HOME/cpd-config and $HOME/cpd-status will be used.
IBM_CLOUD_API_KEY: This is the API key you generated using your IBM Cloud account, this is a 40+ character string
STATUS_DIR: The directory where the Cloud Pak Deployer keeps all status information and log files. Please note that if you have chosen to use a File Vault, the directory specified must be the one you used when you created the environment
CONFIG_DIR: Directory that holds the configuration. This must be the same directory you used when you created the environment
STATUS_DIR: The directory where the Cloud Pak Deployer keeps all status information and log files. Please note that if you have chosen to use a File Vault, the directory specified must be the one you used when you created the environment
CONFIG_DIR: Directory that holds the configuration. This must be the same directory you used when you created the environment
STATUS_DIR: The directory where the Cloud Pak Deployer keeps all status information and log files. Please note that if you have chosen to use a File Vault, the directory specified must be the one you used when you created the environment
CONFIG_DIR: Directory that holds the configuration. This must be the same directory you used when you created the environment
Please ensure you specify the same extra (dynamic) variables that you used when you ran the env apply command.
When running the command, the container will start as a daemon and the command will tail-follow the logs. You can press Ctrl-C at any time to interrupt the logging but the container will continue to run in the background.
You can return to view the logs as follows:
./cp-deploy.sh env logs
+
If you need to interrupt the process, use CTRL-C to stop the logging output and then use:
Once the process has finished successfully, you can delete the status directory.
\ No newline at end of file
diff --git a/30-reference/configuration/cloud-pak/index.html b/30-reference/configuration/cloud-pak/index.html
new file mode 100644
index 000000000..f7732bcf3
--- /dev/null
+++ b/30-reference/configuration/cloud-pak/index.html
@@ -0,0 +1,241 @@
+ Cloud Paks - Cloud Pak Deployer
Defines the Cloud Pak(s) which is/are layed out on the OpenShift cluster, typically in one or more OpenShift projects. The Cloud Pak definition represents the instance users connect to and which is responsible for managing the functional capabilities installed within the application.
Name of the OpenShift project of the Cloud Pak for Data instance
Yes
openshift_cluster_name
Name of the OpenShift cluster
Yes, inferred from openshift
Existing openshift cluster
cp4d_version
Cloud Pak for Data version to install, this will determine the version for all cartridges that do not specify a version
Yes
4.x.x
sequential_install
If set to True the deployer will run the OLM utils playbooks to install catalog sources, subscriptions and CRs. If set to False, deployer will use OLM utils to generate the scripts and then run them, which will cause the catalog sources, subscriptions and CRs to be created immediately and install in parallel
No
True (default), False
use_fs_iam
If set to True the deployer will enable Foundational Services IAM for authentication
No
False (default), True
change_node_settings
Controls whether the node settings using the machine configs will be applied onto the OpenShift cluster.
No
True, False
db2u_limited_privileges
Depicts whether Db2U containers run with limited privileges. If they do (True), Deployer will create KubeletConfig and Tuned OpenShift resources as per the documentation.
No
False (default), True
accept_licenses
Set to 'True' to accept Cloud Pak licenses. Alternatively the --accept-all-licenses can be used for the cp-deploy.sh command
No
True, False (default)
cp4d_entitlement
Set to cpd-enterprise, cpd-standard, watsonx-data, watsonx-ai, watsonx-gov-model-management, watsonx-gov-risk-compliance, dependent on the deployed license
Whether the Cloud Pak for Data is a production license
No
True (default), False
image_registry_name
When using private registry, specify name of image_registry
No
openshift_storage_name
References an openshift_storage element in the OpenShift cluster that was defined for this Cloud Pak for Data instance. The name must exist under `openshift.[openshift_cluster_name].openshift_storage.
No, inferred from openshift->openshift_storage
cartridges
List of cartridges to install for this Cloud Pak for Data instance. See Cloud Pak for Data cartridges for more details
The immediate content of the cp4i object is actually a list of OpenShift projects (namespaces). There can be more than one project and instances can be created in separate projects.
Before you run the Cloud Pak Deployer be sure that the correct operator channels are defined for the selected instance types. Some products require a license ID, please check the documentation of each product for the correct license. If you decide to use CASE files instead of the IBM Operator Catalog (more on that below) make sure that you selected the correct CASE versions - please refer: https://github.com/IBM/cloud-pak/tree/master/repo/case
The following properties are defined on the project level:
Property
Description
Mandatory
Allowed values
project
The name of the OpenShift project that will be created and used for the installation of the defined instances.
Yes
openshift_cluster_name
Dynamically defined form the env_id parameter during the execution.
Yes, inferred from openshift
Existing openshift cluster
openshift_storage_name
Reference to the storage definition that exists in the openshift object (please see above). The definition must include the class name of the file storage type and the class name of the block storage type.
No, inferred from openshift->openshift_storage
cp4i_version
The version of the Cloud Pak for Integration (e.g. 2021.4.1)
Yes
use_case_files
The property defines if the CASE files are used for installation. If it is True then the operator catalogs are created from the CASE files. If it is False, the IBM Operator Catalog from the entitled registry is used.
No
True, False (default)
accept_licenses
Set to True to accept Cloud Pak licenses. Alternatively the --accept-all-licenses can be used for the cp-deploy.sh command
Yes
True, False
use_top_level_operator
If it is True then the CP4I top-level operator that installs all other operators is used. Otherwise, only the operators for the selected instance types are installed.
No
True, False (default)
top_level_operator_channel
Needed if the use_top_level_operator is True otherwise, it is ignored. Specifies the channel of the top-level operator.
No
top_level_operator_case_version
Needed if the use_top_level_operator is True otherwise, it is ignored. Specifies the CASE package version of the top-level operator.
No
operators_in_all_namespaces
It defines whether the operators are visible in all namespaces or just in the specific namespace where they are needed.
No
True, False (default)
instances
List of the instances that are going to be created (please see below).
Yes
Warning
Despite the properties use_case_files, use_top_level_operator and operators_in_all_namespaces are defined as optional, they are actually crucial for the way of execution of the installation process. If any of them is omitted, it is assumed that the default False value is used. If none of them exists, it means that all are False. In this case, it means that the IBM Operator Catalog is used and only the needed operators for specified instance types are installed in the specific namespace.
The instance property contains one or more instances definitions. Each instance must have a unique name. There can be more the one instance of the same type.
For each instance definition, an instance type must be specified. We selected the type names that are as much as possible similar to the naming convention used in the Platform Navigator use interface. The following table shows all existing types:
The Platform Navigator is defined as one of the instance types. There is typically only one instance of it. The exception would be an installation in two or more completely separate namespaces (see the CP4I documentation). Special attention is paid to the installation of the Navigator. The Cloud Pak Deployer will install the Navigator instance first, before any other instance, and it will wait until the instance is ready (this could take up to 45 minutes).
When the installation is completed, you will find the admin user password in the status/cloud-paks/cp4i--cp4i-PN-access.txt file. Of course, you can obtain the password also from the platform-auth-idp-credentials secret in ibm-common-services namespace.
Property
Description
Sample value for 2021.4.1
name
Unique name within the cluster using only lowercase alphanumerics and "-"
Defines the Cloud Pak for Watson AIOps installation to be configured on the OpenShift cluster(s). The following instances can be installed by the deployer: * AI Manager * Event Manager * Turbonomic * Instana * Infrastructure management * ELK stack (ElasticSearch, Logstash, Kibana)
Aside from the base install, the deployer can also install ready-to-use demos for each of the instances
The project that is specified at the cp4waiops level defines the OpenShift project into which the instances of each of the services will be installed. Below is a list of instance "kinds" that can be installed. For every "service instance" there can also be a "demo content" entry to prepare the demo content for the capability.
Defines the Cloud Pak for Business Automation installation to be configured on the OpenShift cluster(s). See Cloud Pak for Business Automation for additional details.
---
+cp4ba:
+-project:cp4ba
+collateral_project:cp4ba-collateral
+openshift_cluster_name:"{{env_id}}"
+openshift_storage_name:auto-storage
+accept_licenses:false
+state:installed
+cpfs_profile_size:small# Profile size which affect replicas and resources of Pods of CPFS as per https://www.ibm.com/docs/en/cpfs?topic=operator-hardware-requirements-recommendations-foundational-services
+
+# Section for Cloud Pak for Business Automation itself
+cp4ba:
+# Set to false if you don't want to install (or remove) CP4BA
+enabled:true# Currently always true
+profile_size:small# Profile size which affect replicas and resources of Pods as per https://www.ibm.com/docs/en/cloud-paks/cp-biz-automation/latest?topic=pcmppd-system-requirements
+patterns:
+foundation:# Foundation pattern, always true - https://www.ibm.com/docs/en/cloud-paks/cp-biz-automation/latest?topic=deployment-capabilities-production-deployments#concept_c2l_1ks_fnb__foundation
+optional_components:
+bas:true# Business Automation Studio (BAS)
+bai:true# Business Automation Insights (BAI)
+ae:true# Application Engine (AE)
+decisions:# Operational Decision Manager (ODM) - https://www.ibm.com/docs/en/cloud-paks/cp-biz-automation/latest?topic=deployment-capabilities-production-deployments#concept_c2l_1ks_fnb__odm
+enabled:true
+optional_components:
+decision_center:true# Decision Center (ODM)
+decision_runner:true# Decision Runner (ODM)
+decision_server_runtime:true# Decision Server (ODM)
+# Additional customization for Operational Decision Management
+# Contents of the following will be merged into ODM part of CP4BA CR yaml file. Arrays are overwritten.
+cr_custom:
+spec:
+odm_configuration:
+decisionCenter:
+# Enable support for decision models
+disabledDecisionModel:false
+decisions_ads:# Automation Decision Services (ADS) - https://www.ibm.com/docs/en/cloud-paks/cp-biz-automation/latest?topic=deployment-capabilities-production-deployments#concept_c2l_1ks_fnb__ads
+enabled:true
+optional_components:
+ads_designer:true# Designer (ADS)
+ads_runtime:true# Runtime (ADS)
+content:# FileNet Content Manager (FNCM) - https://www.ibm.com/docs/en/cloud-paks/cp-biz-automation/latest?topic=deployment-capabilities-production-deployments#concept_c2l_1ks_fnb__ecm
+enabled:true
+optional_components:
+cmis:true# Content Management Interoperability Services (FNCM - CMIS)
+css:true# Content Search Services (FNCM - CSS)
+es:true# External Share (FNCM - ES)
+tm:true# Task Manager (FNCM - TM)
+ier:true# IBM Enterprise Records (FNCM - IER)
+icc4sap:false# IBM Content Collector for SAP (FNCM - ICC4SAP) - Currently not implemented
+application:# Business Automation Application (BAA) - https://www.ibm.com/docs/en/cloud-paks/cp-biz-automation/latest?topic=deployment-capabilities-production-deployments#concept_c2l_1ks_fnb__baa
+enabled:true
+optional_components:
+app_designer:true# App Designer (BAA)
+ae_data_persistence:true# App Engine data persistence (BAA)
+document_processing:# Automation Document Processing (ADP) - https://www.ibm.com/docs/en/cloud-paks/cp-biz-automation/latest?topic=deployment-capabilities-production-deployments#concept_c2l_1ks_fnb__adp
+enabled:true
+optional_components:
+document_processing_designer:true# Designer (ADP)
+# Additional customization for Automation Document Processing
+# Contents of the following will be merged into ADP part of CP4BA CR yaml file. Arrays are overwritten.
+cr_custom:
+spec:
+ca_configuration:
+# GPU config as described on https://www.ibm.com/docs/en/cloud-paks/cp-biz-automation/latest?topic=resource-configuring-document-processing
+deeplearning:
+gpu_enabled:false
+nodelabel_key:nvidia.com/gpu.present
+nodelabel_value:"true"
+# [Tech Preview] Deploy OCR Engine 2 (IOCR) for ADP - https://www.ibm.com/support/pages/extraction-language-technology-preview-feature-available-automation-document-processing-2301
+ocrextraction:
+use_iocr:none# Allowed values: "none" to uninstall, "all" or "auto" to install (these are aliases)
+workflow:# Business Automation Workflow (BAW) - https://www.ibm.com/docs/en/cloud-paks/cp-biz-automation/latest?topic=deployment-capabilities-production-deployments#concept_c2l_1ks_fnb__baw
+enabled:true
+optional_components:
+baw_authoring:true# Workflow Authoring (BAW) - always keep true if workflow pattern is chosen. BAW Runtime is not implemented.
+kafka:true# Will install a kafka cluster and enable kafka service for workflow authoring.
+
+# Section for IBM Process mining
+pm:
+# Set to false if you don't want to install (or remove) Process Mining
+enabled:true
+# Additional customization for Process Mining
+# Contents of the following will be merged into PM CR yaml file. Arrays are overwritten.
+cr_custom:
+spec:
+processmining:
+storage:
+# Disables redis to spare resources as per https://www.ibm.com/docs/en/process-mining/latest?topic=configurations-custom-resource-definition
+redis:
+install:false
+
+# Section for IBM Robotic Process Automation
+rpa:
+# Set to false if you don't want to install (or remove) RPA
+enabled:true
+# Additional customization for Robotic Process Automation
+# Contents of the following will be merged into RPA CR yaml file. Arrays are overwritten.
+cr_custom:
+spec:
+# Configures the NLP provider component of IBM RPA. You can disable it by specifying 0. https://www.ibm.com/docs/en/rpa/latest?topic=platform-configuring-rpa-custom-resources#basic-setup
+nlp:
+replicas:1
+
+# Set to false if you don't want to install (or remove) CloudBeaver (PostgreSQL, DB2, MSSQL UI)
+cloudbeaver_enabled:true
+
+# Set to false if you don't want to install (or remove) Roundcube
+roundcube_enabled:true
+
+# Set to false if you don't want to install (or remove) Cerebro
+cerebro_enabled:true
+
+# Set to false if you don't want to install (or remove) AKHQ
+akhq_enabled:true
+
+# Set to false if you don't want to install (or remove) Mongo Express
+mongo_express_enabled:true
+
+# Set to false if you don't want to install (or remove) phpLDAPAdmin
+phpldapadmin_enabled:true
+
Used to configure extra UIs. The following properties are defined on the project level.
Property
Description
Mandatory
Allowed values
cloudbeaver_enabled
Set to true to enable CloudBeaver (PostgreSQL, DB2, MSSQL UI).
Yes
true, false
roundcube_enabled
Set to true to enable Roundcube. Client for mail.
Yes
true, false
cerebro_enabled
Set to true to enable Cerebro. Client for ElasticSearch in CP4BA.
Yes
true, false
akhq_enabled
Set to true to enable AKHQ. Client for Kafka in CP4BA.
Yes
true, false
mongo_express_enabled
Set to true to enable Mongo Express. Client for MongoDB.
Yes
true, false
phpldapadmin_enabled
Set to true to enable phpLDApAdmin. Client for OpenLDAP.
Yes
true, false
\ No newline at end of file
diff --git a/30-reference/configuration/cp4ba/index.html b/30-reference/configuration/cp4ba/index.html
new file mode 100644
index 000000000..6e37d686f
--- /dev/null
+++ b/30-reference/configuration/cp4ba/index.html
@@ -0,0 +1 @@
+ Cloud Pak for Business Automation - Cloud Pak Deployer
Contains CP4BA version 23.0.2 iFix 2. RPA and Process Mining are currently not deployed due to discrepancy in Cloud Pak Foundational Services version. Contains IPM version 1.14.3.Contains RPA version 23.0.14.
This is not an official IBM documentation. Absolutely no warranties, no support, no responsibility for anything. Use it on your own risk and always follow the official IBM documentations. It is always your responsibility to make sure you are license compliant when using this repository to install IBM Cloud Pak for Business Automation.
Please do not hesitate to create an issue here if needed. Your feedback is appreciated.
Not for production use (neither dev nor test or prod environments). Suitable for Demo and PoC environments - but with Production deployment.
Automatic deployment of the whole platform where you don't need to take care about almost any prerequisites
OCP Ingress certificate is used for Routes so there is only one certificate you need to trust in you local machine to trust all URLs of the whole platform
Trusted certificate in browser also enable you to save passwords
Wherever possible a common admin user cpadmin with adjustable password is used, so you don't need to remember multiple credentials when you want to access the platform (convenience also comes with responsibility - so you don't want to expose your platform to whole world)
The whole platform is running on containers, so you don't need to manually prepare anything on traditional VMs and take care of them including required prerequisites
Many otherwise manual post-deployment steps have been automated
Pre integrated and automatically connected extras are deployed in the platform for easier access/management/troubleshooting
You have a working Production deployment which you can use as a reference for further custom deployments
When you perform full deployment, as a result you will get full CP4BA platform as seen in the picture. You can also omit some capabilities - this is covered later in this doc.
More details about each section from the picture follows below it.
Contains extra software which makes working with the platform even easier.
phpLDAPadmin - Web UI for OpenLDAP directory making it easier to admin and troubleshoot the LDAP.
Gitea - Contains Git server with web UI and is used for ADS and ADP for project sharing and publishing. Organizations for ADS and APD are automatically created. Gitea is connected to OpenLDAP for authentication and authorization.
Nexus - Repository manager which contains pushed ADS java libraries needed for custom development and also for publishing custom ADS jars. Nexus is connected to OpenLDAP for authentication and authorization.
Roundcube - Web UI for included Mail server to be able to browse incoming emails.
Cerebro - Web UI elastic search browser automatically connected to ES instance deployed with CP4BA.
AKHQ - Web UI kafka browser automatically connected to Kafka instance deployed with CP4BA.
Kibana - Web UI elastic search dashboard tool automatically connected to ES instance deployed with CP4BA.
Mail server - For various mail integrations e.g. from BAN, BAW and RPA.
Mongo Express - Web UI for Mongo DB databases for CP4BA and Process Mining to easier troubleshoot DB.
CloudBeaver - Web UI for Postgresql and MSSQL databases making it easier to admin and troubleshoot the DBs.
CP4BA (Cloud Pak for Business Automation) section🔗
With proper sizing of the cluster and provided RWX File and RWO Block Storage Class, CP4BA deployed with Deployer should be working on any OpenShift 4.12 with Worker Nodes which in total have (60 CPU, 128GB Memory).
CP4BA Review and perform post deploy manual steps for CP4BA as specified in Project cloud-pak-deployer in ConfigMap cp4ba-postdeploy in postdeploy.md file. It is best to copy the contents and open it in nice MarkDown editor like VSCode.
RPA Review and perform post deploy manual steps for RPA as specified in Project cloud-pak-deployer in ConfigMap cp4ba-rpa-postdeploy in postdeploy.md file. It is best to copy the contents and open it in nice MarkDown editor like VSCode.
Process Mining Review and perform post deploy manual steps for IPM as specified in Project cloud-pak-deployer in ConfigMap cp4ba-pm-postdeploy in postdeploy.md file. It is best to copy the contents and open it in nice MarkDown editor like VSCode.
Endpoints, access info and other useful information is available in Project cloud-pak-deployer in ConfigMap cp4ba-usage in usage.md file after installation. It is best to copy the contents and open it in nice MarkDown editor like VSCode.
\ No newline at end of file
diff --git a/30-reference/configuration/cp4d-assets/index.html b/30-reference/configuration/cp4d-assets/index.html
new file mode 100644
index 000000000..a9265c93f
--- /dev/null
+++ b/30-reference/configuration/cp4d-assets/index.html
@@ -0,0 +1,103 @@
+ Assets - Cloud Pak Deployer
The Cloud Pak Deployer can implement demo assets and accelerators as part of the deployment process to standardize standing up fully-featured demo environments, or to test patches or new versions of the Cloud Pak using pre-defined assets.
If you put a script named apply-custom-node-settings.sh in the CONFIG_DIR/assets directory, it will be run as part of applying the node settings. This way you can override the existing node settings applied by the deployer or update the compute nodes with new settings. For more information regarding the apply-custom-node-settings.sh script, go to Prepare OpenShift cluster on IBM Cloud and IBM Cloud Satellite.
A cp4d_asset entry defines one or more assets to be deployed for a specific Cloud Pak for Data instance (OpenShift project). In the configuration, a directory relative to the configuration directory (CONFIG_DIR) is specified. For example, if the directory where the configuration is stored is $HOME/cpd-config/sample and you specify assets as the asset directory, all assets under /cpd-config/sample/assets are processed.
You can create one or more subdirectories under the specified location, each holding an asset to be deployed. The deployer finds all cp4d-asset.sh scripts and cp4d-asset.yaml Ansible task files and runs them.
The following runtime attributes will be set prior to running the shell script or the Ansible task: * If the Cloud Pak for Data instances has the Common Core Services (CCS) custom resource installed, cpdctl is configured for the current Cloud Pak for Data instance and the current context is set to the admin user of the instance. This means you can run all cpdctl commands without first having to login to Cloud Pak for Data. * * The current working directory is set to the directory holding the cp4d-asset.sh script. * When running the cp4d-asset.sh shell script, the following environment variables are available: - CP4D_URL: Cloud Pak for Data URL - CP4D_ADMIN_PASSWORD: Cloud Pak for Data admin password - CP4D_OCP_PROJECT: OpenShift project that holds the Cloud Pak for Data instance - KUBECONFIG: OpenShift configuration file that allows you to run oc commands for the cluster
Download the zip file to the cp4d-assets directory in the specified configuration directory
Create the cp4d-asset.sh shell script (example below)
Add a cp4d_asset entry to the Cloud Pak for Data config file in the config directory (or in any other file with extention .yaml)
cp4d-asset.sh shell script:
#!/bin/bash
+SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )
+
+# Function to retrieve project by name
+function retrieve_project {
+ project_name=$1
+
+ # First check if project already exists
+ project_id=$(cpdctl project list \
+ --output json | \
+ jq -r --arg project_name $project_name \
+ 'if .total_results==0 then "" else .resources[] | select(.entity.name == $project_name) | .metadata.guid end')
+
+ echo $project_id
+}
+
+# Function to create a project
+function create_project {
+ project_name=$1
+
+ retrieve_project $project_name
+
+ if [ "$project_id" != "" ];then
+ echo "Project $project_name already exists"
+ return
+ else
+ echo "Creating project $project_name"
+ storage_id=$(uuidgen)
+ storage=$(jq --arg storage_id $storage_id '. | .guid=$storage_id | .type="assetfiles"' <<< '{}')
+ cpdctl project create --name $project_name --storage "$storage"
+ fi
+
+ # Find project_id to return
+ project_id=$(cpdctl project list \
+ --output json | \
+ jq -r --arg project_name $project_name \
+ 'if .total_results==0 then "" else .resources[] | select(.entity.name == $project_name) | .metadata.guid end')
+}
+
+# Function to import a project
+function import_project {
+ project_id=$1
+ zip_file=$2
+ import_id=$(cpdctl asset import start \
+ --project-id $project_id --import-file $zip_file \
+ --output json --jmes-query "metadata.id" --raw-output)
+
+ cpdctl asset import get --project-id $project_id --import-id $import_id --output json
+
+}
+
+# Function to run jobs
+function run_jobs {
+ project_id=$1
+ for job in $(cpdctl job list --project-id $project_id \
+ --output json | jq -r '.results[] | .metadata.asset_id');do
+ cpdctl job run create --project-id $project_id --job-id $job --job-run "{}"
+ done
+}
+
+#
+# Start of the asset code
+#
+
+# Unpack the utilities-customer-attrition-prediction-industry-accelerator directory
+rm -rf /tmp/utilities-customer-attrition-prediction-industry-accelerator
+tar xzf utilities-customer-attrition-prediction-industry-accelerator.tar.gz -C /tmp
+asset_dir=/tmp/customer-attrition-prediction-industry-accelerator
+
+# Change to the asset directory
+pushd ${asset_dir} > /dev/null
+
+# Log on to Cloud Pak for Data with the admin user
+cp4d_token=$(curl -s -k -H 'Content-Type: application/json' -X POST $CP4D_URL/icp4d-api/v1/authorize -d '{"username": "admin", "password": "'$CP4D_ADMIN_PASSWORD'"}' | jq -r .token)
+
+# Import categories
+curl -s -k -H 'accept: application/json' -H "Authorization: Bearer ${cp4d_token}" -H "content-type: multipart/form-data" -X POST $CP4D_URL/v3/governance_artifact_types/category/import?merge_option=all -F "file=@./utilities-customer-attrition-prediction-glossary-categories.csv;type=text/csv"
+
+# Import glossary terms
+curl -s -k -H 'accept: application/json' -H "Authorization: Bearer ${cp4d_token}" -H "content-type: multipart/form-data" -X POST $CP4D_URL/v3/governance_artifact_types/glossary_term/import?merge_option=all -F "file=@./utilities-customer-attrition-prediction-glossary-terms.csv;type=text/csv"
+
+# Check if customer-attrition project already exists. If so, do nothing
+project_id=$(retrieve_project "customer-attrition")
+
+# If project does not exist, import it and run jobs
+if [ "$project_id" == "" ];then
+ create_project "customer-attrition"
+ import_project $project_id \
+ /tmp/utilities-customer-attrition-prediction-industry-accelerator/utilities-customer-attrition-prediction-analytics-project.zip
+ run_jobs $project_id
+else
+ echo "Skipping deployment of CP4D asset, project customer-attrition already exists"
+fi
+
+# Return to original directory
+popd > /dev/null
+
+exit 0
+
\ No newline at end of file
diff --git a/30-reference/configuration/cp4d-cartridges/index.html b/30-reference/configuration/cp4d-cartridges/index.html
new file mode 100644
index 000000000..92f76edfe
--- /dev/null
+++ b/30-reference/configuration/cp4d-cartridges/index.html
@@ -0,0 +1,31 @@
+ Cartridges - Cloud Pak Deployer
Defines the services (cartridges) which must be installed into the Cloud Pak for Data instances. The cartridges will be configured with the storage class defined at the Cloud Pak for Data object level. For each cartridge you can specify whether it must be installed or removed by specifying the state. If a cartridge is installed and the state is changed to removed, the cartridge and all of its instances are removed by the deployer when it is run.
An example Cloud Pak for Data object with cartridges is below:
When run, the deployer installs the Db2 OLTP (db2oltp), Watson Machine Learning (wml) and Watson Studio (ws) cartridges. If the Watson Knowledge Catalog (wkc) is installed in the cpd-instance OpenShift project, it is removed.
After the deployer installs Db2 OLTP, a new Db2 instance is created with the specified attributes.
This is a list of cartridges that will be installed in the Cloud Pak for Data instance. Every cartridge is identified by its name.
Some cartridges may require additional information to correctly install or to create an instance for the cartridge. Below you will find a list of all tested Cloud Pak for Data cartridges and their specific properties.
Defines the Cloud Pak Foundational Services (fka Common Services) which are required for all Cloud Pak for Data installations. Cloud Pak for Data Foundational Services provide functionalities around certificate management, license service, identity and access management (IAM), etc.
This cartridge is mandatory for every Cloud Pak for Data instance.
Defines the Cloud Pak for Data platform operator (fka "lite") which installs the base services needed to operate Cloud Pak for Data, such as the Zen metastore, Zen watchdog and the user interface.
This cartridge is mandatory for every Cloud Pak for Data instance.
\ No newline at end of file
diff --git a/30-reference/configuration/cp4d-connections/index.html b/30-reference/configuration/cp4d-connections/index.html
new file mode 100644
index 000000000..7088735e8
--- /dev/null
+++ b/30-reference/configuration/cp4d-connections/index.html
@@ -0,0 +1,20 @@
+ Platform connections - Cloud Pak Deployer
Cloud Pak for Data platform connection - cp4d_conection🔗
The cp4d_connection object can be used to create Global Platform connections.
cp4d_connection:
+- name: connection_name # Name of the connection, must be unique
+ type: database # Type, currently supported: [database]
+ cp4d_instance: cpd # CP4D instance on which the connection must be created
+ openshift_cluster_name: cluster_name # OpenShift cluster name on which the cp4d_instance is deployed
+ database_type: db2 # Type of connection
+ database_hostname: hostname # Hostname of the connection
+ database_port: 30556 # Port of the connection
+ database_name: bludb # Database name of the connection
+ database_port_ssl: true # enable ssl flag
+ database_credentials_username: 77066f69 # Username of the datasource
+ database_credentials_password_secret: db-credentials # Vault lookup name to contain the password
+ database_ssl_certificate_secret: db-ssl-cert # Vault lookup name to contain the SSL certificate
+
Cloud Pak for Data backup and restore platform connections - cp4d_backup_restore_connections🔗
The cp4d_backup_restore_connections can be used to backup all current configured Global Platform connections, which are either created by the Cloud Pak Deployer or added manually. The backup is stored in the status/cp4d/exports folder as a json file.
A backup file can be used to restore global platform connections. A flag can be used to indicate whether if a Global Platform connection with the same name already exists, the restore is skipped.
Using the Cloud Pak Deployer cp4d_backup_restore_connections capability implements the following: - Connect to the IBM Cloud Pak for Data instance specified using cp4d_instance and openshift_cluster_name - If connections_backup_file is specified export all Global Platform connections to the specified file in the status/cp4d/export/connections folder - If connections_restore_file is specified, load the file and restore the Global Platform connections - The connections_restore_overwrite (true/false) indicates whether if a Global Platform Connection with the same already exists, it will be replaced.
\ No newline at end of file
diff --git a/30-reference/configuration/cp4d-instances/index.html b/30-reference/configuration/cp4d-instances/index.html
new file mode 100644
index 000000000..4748b9d0a
--- /dev/null
+++ b/30-reference/configuration/cp4d-instances/index.html
@@ -0,0 +1,107 @@
+ Instances - Cloud Pak Deployer
Some cartridges have the ability to create one or more instances to run an isolated installation of the cartridge. If instances have been configured for the cartridge, the deployer can manage creating and deleting the instances.
The following Cloud Pak for Data cartridges are currently supported for managing instances:
Analytics engine powered by Apache Spark Instances🔗
Analytics Engine instances can be defined by adding the instances section to the cartridges entry of cartridge analytics-engine. The following example shows the configuration to define an instance.
DataStage instances can be defined by adding the instances section to the cartridges entry of cartridge datastage-ent-plus. The following example shows the configuration to define an instance.
DataStage, upon deployment, always creates a default instance called ds-px-default. This instance cannot be configured in the instances section.
Optionally, the default px_runtime and px_compute instances of the DataStage instance can be tweaked. Both scale_px_runtime and scale_px_compute must be specified when used, and all properties must be specified.
DB2 OLTP instances can be defined by adding the instances section to the cartridges entry of cartridge db2. The following example shows the configuration to define an instance.
Data Virtualization instances can be defined by adding the instances section to the cartridges entry of cartridge dv. The following example shows the configuration to define an instance.
A Cognos Analytics instance can be defined by adding the instances section to the cartridges entry of cartridge ca. The following example shows the configuration to define an instance.
Name of the DB2 instance used for the Cognos Repository database
Yes
The Cognos Content Repository database can use an IBM Cloud Pak for Data DB2 OLTP instance. The Cloud Pak Deployer will first determine whether an existing DB2 OLTP existing with the name specified metastore_ref. If this is the case, this DB2 OLTP instance will be used and the database is prepared using the Cognos DB2 script prior to provisioning the Cognos instance.
EnterpriseDB instances can be defined by adding the instances section to the cartridges entry of cartridge dv. The following example shows the configuration to define an instance.
cp4d:
+- project: cpd-instance
+ openshift_cluster_name: "{{ env_id }}"
+...
+ cartridges:
+
+ # Please note that for EDB Postgress, a secret edb-postgres-license-key must be created in the vault
+ # before deploying
+ - name: edb_cp4d
+ size: small
+ state: installed
+ instances:
+ - name: instance1
+ version: "13.5"
+ #Optional Parameters
+ type: Standard
+ members: 1
+ size_gb: 50
+ resource_request_cpu: 1000m
+ resource_request_memory: 4Gi
+ resource_limit_cpu: 1000m
+ resource_limit_memory: 4Gi
+
An OpenPages instance can be defined by adding the instances section to the cartridges entry of cartridge openpages. The following example shows the configuration to define an instance.
The size of the OpenPages instances, default is xsmall
No
\ No newline at end of file
diff --git a/30-reference/configuration/cp4d-ldap/index.html b/30-reference/configuration/cp4d-ldap/index.html
new file mode 100644
index 000000000..c544a85ae
--- /dev/null
+++ b/30-reference/configuration/cp4d-ldap/index.html
@@ -0,0 +1,46 @@
+ LDAP - Cloud Pak Deployer
Cloud Pak for Data can connect to an LDAP user registry for identity and access managment (IAM). When configured, for a Cloud Pak for Data instance, a user must authenticate with the user name and password stored in the LDAP server.
If SAML is also configured for the Cloud Pak for Data instance, authentication (identity) is managed by the SAML server but access management (groups, roles) can still be served by LDAP.
IBM Cloud Pak for Data can connect to an LDAP user registry in order for users to log on with their LDAP credentials. The configuration of LDAP can be specified in a seperate yaml file in the config folder, or included in an existing yaml file.
A cp4d_ldap_config entry contains the connectivity information to the LDAP user registry. The project and openshift_cluster_name values uniquely identify the Cloud Pak for Data instance. The ldap_domain_search_password_vault entry contains a reference to the vault, which means that as a preparation the LDAP bind user password must be stored in the vault used by the Cloud Pak Deployer using the key referenced in the configuration. If the password is not available, the Cloud Pak Deployer will fail and not able to configure the LDAP connectivity.
# Each Cloud Pak for Data Deployment deployed in an OpenShift Project of an OpenShift cluster can have its own LDAP configuration
+cp4d_ldap_config:
+- project: cpd-instance
+ openshift_cluster_name: sample # Mandatory
+ ldap_host: ldaps://ldap-host # Mandatory
+ ldap_port: 636 # Mandatory
+ ldap_user_search_base: ou=users,dc=ibm,dc=com # Mandatory
+ ldap_user_search_field: uid # Mandatory
+ ldap_domain_search_user: uid=ibm_roks_bind_user,ou=users,dc=ibm,dc=com # Mandatory
+ ldap_domain_search_password_vault: ldap_bind_password # Mandatory, Password vault reference
+ auto_signup: "false" # Mandatory
+ ldap_group_search_base: ou=groups,dc=ibm,dc=com # Optional, but mandatory when using user groups
+ ldap_group_search_field: cn # Optional, but mandatory when using user groups
+ ldap_mapping_first_name: cn # Optional, but mandatory when using user groups
+ ldap_mapping_last_name: sn # Optional, but mandatory when using user groups
+ ldap_mapping_email: mail # Optional, but mandatory when using user groups
+ ldap_mapping_group_membership: memberOf # Optional, but mandatory when using user groups
+ ldap_mapping_group_member: member # Optional, but mandatory when using user groups
+
The above configuration uses the LDAPS protocol to connect to port 636 on the ldap-host server. This server can be a private server if an upstream DNS server is also defined for the OpenShift cluster that runs Cloud Pak for Data. Common Name uid=ibm_roks_bind_user,ou=users,dc=ibm,dc=com is used as the bind user for the LDAP server and its password is retrieved from vault secret ldap_bind_password.
User Group configuration - cp4d_user_group_configuration🔗
The cp4d_user_group_configuration: can optionally create User Group(s) with references to LDAP Group(s). A user_groups entry must contain at least 1 role_assignments and 1 ldap_groups entry.
# Each Cloud Pak for Data Deployment deployed in an OpenShift Project of an OpenShift cluster can have its own User Groups configuration
+cp4d_user_group_configuration:
+- project: zen-sample # Mandatory
+ openshift_cluster_name: sample # Mandatory
+ user_groups:
+ - name: CA_Analytics_Viewer
+ description: User Group for Cognos Analytics Viewers
+ role_assigmnents:
+ - name: zen_administrator_role
+ ldap_groups:
+ - name: cn=ca_viewers,ou=groups,dc=ibm,dc=com
+ - name: CA_Analytics_Administrators
+ description: User Group for Cognos Analytics Administrators
+ role_assigmnents:
+ - name: zen_administrator_role
+ ldap_groups:
+ - name: cn=ca_admins,ou=groups,dc=ibm,dc=com
+
Role Assignment values: - zen_administrator_role - zen_user_role - wkc_data_scientist_role - zen_developer_role - zen_data_engineer_role (requires installation of DataStage cartridge to become available)
During the creation of User Group(s) the following validations are performed: - LDAP configuration is completed - The provided role assignment(s) are available in Cloud Pak for Data - The provided LDAP group(s) are available in the LDAP registry - If the User Group already exists, it ensures the provided LDAP Group(s) are assigned, but no changes to the existing role assignments are performed and no LDAP groups are removed from the User Group
When using Cloud Pak for Data LDAP connectivity and User Groups, the User Groups can be assigned to authorize the users of the LDAP groups access to the proviosioned instance(s).
Currently supported instance authorization: - Cognos Analytics (ca)
cp4d_instance_configuration:
+- project: zen-sample # Mandatory
+ openshift_cluster_name: sample # Mandatory
+ cartridges:
+ - name: cognos_analytics
+ manage_access: # Optional, requires LDAP connectivity
+ - ca_role: Analytics Viewer # Mandatory, one the CA Access roles
+ cp4d_user_group: CA_Analytics_Viewer # Mandatory, the CP4D User Group Name
+ - ca_role: Analytics Administrators # Mandatory, one the CA Access roles
+ cp4d_user_group: CA_Analytics_Administrators # Mandatory, the CP4D User Group Name
+
A Cognos Analytics (ca) instance can have multiple manage_access entries. Each entry consists of 1 ca_role and 1 cp4d_user_group element. The ca_role must be one of the following possible values: - Analytics Administrators - Analytics Explorers - Analytics Users - Analytics Viewer
During the configuration of the instance authorization the following validations are performend: - LDAP configuration is completed - The provided ca_role is valid - The provided cp4d_user_group exists
\ No newline at end of file
diff --git a/30-reference/configuration/cp4d-saml/index.html b/30-reference/configuration/cp4d-saml/index.html
new file mode 100644
index 000000000..c5ce9294c
--- /dev/null
+++ b/30-reference/configuration/cp4d-saml/index.html
@@ -0,0 +1,10 @@
+ SAML - Cloud Pak Deployer
You can configure Single Sign-on (SSO) by specifying a SAML server for the Cloud Pak for Data instance, which will take care of authenticating users. SAML configuration can be used in combination with the Cloud Pak for Data LDAP configuration, in which case LDAP complements the identity with access management (groups) for users.
An cp4d_saml_config entry holds connection information, certificates and field configuration that is needed in the exchange between Cloud Pak for Data user management and the identity provider (idP). The entry must created for every Cloud Pak for Data project that requires SAML authentication.
When a cp4d_saml_config entry exists for a certain cp4d project, the user management pods are updated with a samlConfig.json file and then restarted. If an entry is removed later, the file is removed and the pods restarted again. When no changes are needed, the file in the pod is left untouched and no restart takes place.
The above configuration uses the IBM preproduction IAM server to delegate authentication to and authentication is done via the user's e-mail address. An issuer must be configured in the identity provider (idP) and the idP's certificate must be kept in the vault so Cloud Pak for Data can confirm its identity.
Name of OpenShift project of the matching cp4d entry. The cp4d project must exist.
Yes
entrypoint
URL of the identity provider (idP) login page
Yes
field_to_authenticate
Name of the parameter to authenticate with the idP
Yes
sp_cert_secret
Vault secret that holds the private certificate to authenticate to the idP. If not specified, requests will not be signed.
No
idp_cert_secret
Vault secret that holds the public certificate of the idP. This confirms the identity of the idP
Yes
issuer
The name you chose to register the Cloud Pak for Data instance with your idP
Yes
identifier_format
Format of the requests from Cloud Pak for Data to the idP. If not specified, urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress is used
No
callback_url
Specify the callback URL if you want to override the default of cp4d_url/auth/login/sso/callback
No
The callbackUrl field in the samlConfig.json file is automatically populated by the deployer if it is not specified by the cp4d_saml_config entry. It then consists of the Cloud Pak for Data base URL appended with /auth/login/sso/callback.
Before running the deployer with SAML configuration, ensure that the secret configured for idp_cert_secret exists in the vault. Check Vault configuration for instructions on adding secrets to the vault.
\ No newline at end of file
diff --git a/30-reference/configuration/cpd-global-config/index.html b/30-reference/configuration/cpd-global-config/index.html
new file mode 100644
index 000000000..751273807
--- /dev/null
+++ b/30-reference/configuration/cpd-global-config/index.html
@@ -0,0 +1,8 @@
+ Global config - Cloud Pak Deployer
Cloud Pak Deployer can use properties set in the global configuration (global_config) during the deployment process and also as substitution variables in the configuration, such as {{ env_id}} and {{ ibm_cloud_region }}.
The following global_config variables are automatically copied into a "simple" form so they can be referenced in the configuration file(s) and also overridden using the command line.
Variable name
Description
environment_name
Name used to group secrets, typically you will specify sample
cloud_platform
Cloud platform applicable to configuration, such as ibm-cloud, aws, azure
env_id
Environment ID used in various other configuration objects
ibm_cloud_region
When Cloud Platform is ibm-cloud, the region into which the ROKS cluster is deployed
aws_region
When Cloud Platform is aws, the region into which the ROSA/self-managed OpenShift cluster is deployed
azure_location
When Cloud Platform is azure, the region into which the ARO OpenShift cluster is deployed
universal_admin_user
User name to be used for admin user (currently not used)
universal_password
Password to be used for all (admin) users it not specified in the vault
confirm_destroy
Is destroying of clusters, services/cartridges and instances allowed?
For all other variables, you can refer to the qualified form, for example: "{{ global_config.division }}"
If you run the cp-deploy.sh command and specify -e env_id=jupiter-03, this will override the value in the global_config object. The same applies to the other variables.
\ No newline at end of file
diff --git a/30-reference/configuration/cpd-objects/index.html b/30-reference/configuration/cpd-objects/index.html
new file mode 100644
index 000000000..4fcd88dd7
--- /dev/null
+++ b/30-reference/configuration/cpd-objects/index.html
@@ -0,0 +1 @@
+ Objects overview - Cloud Pak Deployer
All objects used by the Cloud Pak Deployer are defined in a yaml format in files in the config directory. You can create a single yaml file holding all objects, or group objects in individual yaml files. At deployment time, all yaml files in the config directory are merged.
To make it easier to navigate the different object types, they have been groups in different tabs. You can also use the index below to find the definitions.
\ No newline at end of file
diff --git a/30-reference/configuration/dns/index.html b/30-reference/configuration/dns/index.html
new file mode 100644
index 000000000..305e486b7
--- /dev/null
+++ b/30-reference/configuration/dns/index.html
@@ -0,0 +1,11 @@
+ DNS - Cloud Pak Deployer
When deploying OpenShift in a private network, one may want to reach additional private network services by their host name. Examples could be a database server, Hadoop cluster or an LDAP server. OpenShift provides a DNS operator which deploys and manages CoreDNS which takes care of name resolution for pods running inside the container platform, also known as DNS forwarding.
If the services that need to be reachable our registered on public DNS servers, you typically do not have to configure upstream DNS servers.
The upstream DNS used for a particular OpenShift cluster is configured like this:
The zones which have been defined for each of the upstream_dns configurations control which DNS server(s) will be used for name resolution. For example, if example.com is given as the zone and an upstream DNS server of 172.31.2.73:53, any host name matching *.example.com will be resolved using DNS server 172.31.2.73 and port 53.
If you want to remove the upstream DNS that was previously configured, you can change the deployer configuration as below and run the deployer. Removing the upstream_dns element altogether will not make changes to the OpenShift DNS operator.
List of alternative upstream DNS servers(s) for OpenShift
No
name
Name of the upstream DNS entry
Yes
zones
Specification of one or more zone for which the DNS server is applicable
Yes
dns_servers
One or more DNS servers (host:port) that will resolve host names in the specified zone
Yes
\ No newline at end of file
diff --git a/30-reference/configuration/images/cloud-pak-context-deployment-basic.png b/30-reference/configuration/images/cloud-pak-context-deployment-basic.png
new file mode 100644
index 000000000..1f01ab267
Binary files /dev/null and b/30-reference/configuration/images/cloud-pak-context-deployment-basic.png differ
diff --git a/30-reference/configuration/images/cloud-pak-context-deployment-full.png b/30-reference/configuration/images/cloud-pak-context-deployment-full.png
new file mode 100644
index 000000000..6cecab493
Binary files /dev/null and b/30-reference/configuration/images/cloud-pak-context-deployment-full.png differ
diff --git a/30-reference/configuration/images/cloud-pak-context-deployment.drawio b/30-reference/configuration/images/cloud-pak-context-deployment.drawio
new file mode 100644
index 000000000..19eb76b5e
--- /dev/null
+++ b/30-reference/configuration/images/cloud-pak-context-deployment.drawio
@@ -0,0 +1 @@
+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
\ No newline at end of file
diff --git a/30-reference/configuration/images/cloud-pak-deployer-logging.drawio b/30-reference/configuration/images/cloud-pak-deployer-logging.drawio
new file mode 100644
index 000000000..c44403b47
--- /dev/null
+++ b/30-reference/configuration/images/cloud-pak-deployer-logging.drawio
@@ -0,0 +1 @@
+3LzXluNIli34NfVYuaAI8QiA0IQgBCFeZkFrrfH1A/OIrBQRXd09N6umb/uKcAcN0o7c+xwD/4ay7SFM4VCofZI2f0Og5Pgb+vwbgsAwhN9/wMj5bYSkkG8D+VQm3w/6bcAqr/T7IPR9dC2TdP7DgUvfN0s5/HEw7rsujZc/jIXT1O9/PCzrmz/edQjz9IcBKw6bH0fdMlmK76P4A/tth5iWefHrrWGc+ranDX89+vtU5iJM+v13Qyj3N5Sd+n75ttUebNoA6f0qmG/n8f/B3n882ZR2y3/lBEcm1a7vccc/siafRFO8lr+j366yhc36fcbfH3Y5fxXB1K9dkoKLQH9Dmb0ol9Qawhjs3W+l32PF0jb3J/je/PGhvj/nlk5Levxu6PtDCmnfpst03od834tQ3wX23WTgXwW4/6aAB/59rPid7LFfDwy/Kz3/x7V/E8u98V0y/w0pYT9IyVijpozvixlTuYVLeu9lm35N7r9GEy5ZP7U/CPKe//JHac3L1Ncp2zf9dI90fXcfyWRl0/xpKGzKvLs/xrdU03ucAdIsbyulv+9oyyQBt/mpev6owL9AQyiC/qcagnHiRw2h/yoFEX+xGf9RMX9DUJ6H7p97TxLOxddV/iJrR7E/WTv+oywx8ifWjv7LrJ38QZhmCgxbDJe/gZviDTDj6N7IwYY+pJ1VlNny6577pv/Y+fsTpt8Gv40k5fbnoXkIu1/H2L5bwrK7Df73TvWPe/z+0N8N/+Gif7kHNmm2/P/vfwT+n9rMbTX/Rv9DHj/YzD/CYVj/E1+E/z/4Ih6TaZT9SU/3eBKmZBb/LFz+FTLH/yhzDMN/9FP0JzL/l7kp/l8IejfmGMBm2X7hnH/Y7SuM0sbo53IpeyCpqF+Wvr0PaMAOJozr/EtHv5Nu9vXzE9tfeqCwcB6+4a+sPIBmma9b0r+OQr+O3NvFsgD0RoPpI/w6NH2Y/LKXddmmSRn+0k/5PQw+D+DzvR33bdt38721FGt7xxYeBf/Brn8En7+/+ry3zyH9Zd7A+XdOgobj7z/f/8vQ5f++8I3+NHr/AqH/54YhqSOq/D/cGTZj+Hftyp7eU/07/O+ziyTNwrX5WUT8b1tFEi7hbRTfPiI80BDClh9GN3dIEfKevn80yyk4J7+32Bl8Hlna//pLh3IDRtG64d4f0y9SxLeAGHGdMUX7YuRe502f47Jex3EcyxbzbwizjuPyXnNFKt3axA47b6nxoFVsZRipuvdDBy+e5e3njD6ND7vDjzs18hcZGTXP0z3PdlQolciKw486JsVr08iKhWkykYxKp/OC4+R8sj4yN+43KeBv0AoX+LzCmRubJyvpT3DpYUBWDLbKhe+Lp9hOyksQZNM6REFV0yAb3veZSjo8xOkTVveUGKRsVDlMCXnuP0/f+8jKZ5w/VqDkS4ITxEr7kbQRW02+mWepx5TkR8Ly6PrszosgQdpE5o2UN/amdX6myflMVWBZpFeQHyFODpyPX40+we+SpYV5ATNuY8S9hHhquBBFw0t4yHX/7sutuqM+k4rNw3dqy3692JLvF2qB9AIKq3f4OnwFXa5MwC6+EJQAd8fmzgU8hh1yp3X35HkHv9zQ/vZcC6EMjnJveHh2ujabPve2HF+O//gEWr6wrDTx0gi7JYKjFm6Yb2HTwAMkXdCIkmv7Er0SKzGVjzUUg+gp+U+m1Mz67CAKieT3+jgLX2E+l/dIp7GsxyZvFEWlT9MpMJgibr9iouFjZSJQFgc55rQu1ki5/e1QzOyUZAYrWqaHIxJc4L5k5kFFoTCOsohDwjOKGmxaqauYQ8CxTmxBJJVlqfL5rm+TghMTtDZQ+AyjhusbUc3kD/Bv72pxGXtUQaRG4rGny6ffIgReSBTPPPwUGltDi89L0e/cwh/VfJyX/mZb6Ox4fxDFA0pIFEkpr9IDm66esXA/Gn1a15SauGb2ulhgaZVj+zvvlIfNXCLDiTREqTbxTezbCgHbdP2Xqi0Gvt0aYmC3gobkXRc1/1qxNn14ShBOoQIbPQBeutNaDFs3QINuqNLXLe3AGWHHLfePdU7wpOLu+vBecvzMSRCmc+QYWdgsG5jUHs48+z5WFa0xkJdI4wbash053viREW6JMGfqCeblr6+If8SBYZTSMHuja6HHg3+I4qf13fuo95yEpztC+1EwPJduQEnrJXafGlOU1UE29LZ3HrkhIpNdBuHdf3nvzDD+oypBP4IbcdhXVKEt56ObyoP1JQmEx38bi0WhXwj4X4PSfpoYkB9BWjgtU5mAiPu/EKIhP0I0GP5JMv4rINpPBf5jdeV/lcAx4n+awPEfBG70gIQ0fT7/b5D4DyYO/Shx4vFvFPiPHOR/l8AxDP7l8T9L5D+WZ+g1KZdvQs9LgJv/Orn/pCLyrxb5P2q7/0TgCPbvjCq/hrDfifx3RS/o9deL/ZZxRD6wB/Sj7DMyTuN/WXwh/ih7hPxJZQn7F1U5EKfUi4gSegia/97CyTvW4l8j+u/Emt7Z0/r+sZ+W4ub1Xdhwv43+qeD22zGvHpDSL3FX6bKc39tN4br0f1TGT4q84K5/EOpP5Dz36xSn/8yQfm1hhVOeLv8MqSE/V9OUNuFSbn98kp/J/OtUeprC83cHDH3ZLfPvrmyAgd9hVuRP2sf/1FH6T47/tRjym76/PcFv2v/HVP4PnPHH8gY9DE0Zh181i68o+DfQ6Zv2cEpA8fh/oVtiP7ol9ZOIiP3LIuKPVOJHP+0SGnRggSyacJ7L+I+i/aOX/sHlbklNpwf2/AJj5K8DPtj7yz/2P4/vp377dP7+k5FO5T1TIP9/XnT/Tz3x19j/J///UVW/707+RBW/jv33PPgHl8Mg4ufJ8ddLfItB38/6J76LPf54IfTxpwt9k8wPF/rL3Pi/0Hn+v8KC/qcYBon+RYZBIr/AoHr+/Qf+o5lAyL/VTJAfodcPZjLvZduEXzh1vh9n+Z7Wf7CJ30fs3wrX+RQm5a3UPyHevyBq/7kCBP0YtMmfrmMg/2Vh+8eFDP+XOd0/NZL/Ia74gKBfSOpPbkP8gv2p3/NfdUhwOQj6zSH/lAEQCP3h0v+BU/538eAD+hPsQP8N+O5Xk/yP8N0d1lAYGMc3nBf3TZPGS/8jzvu/vsf1kkBLi/re4/JQNqXuvznNffW4sE4/k+SxJwHqgVI3kzyCNUpXFP1MqdSe+31C7kezBDH3XZja56CRzrlakou3fdIrxzcjzdA5zNClbPnXUDC9qk2556kM/xqk5QyUeV6UdQGF+SANiFv4fKoHrbeh0bRayeh8yBiU12cv2q4BBvdX0/hxXes9Gksk9jiuB40hDRfwYCQZyHIjg3ZqERy5iETNItDITU6bvLaOk8USfbRcuwiV4RPiHJA53PQi6EdQT3tLhYvAhHlp5blLCTJjEUECj5Td/wNUwZlYGwi5EU7Qx0E5rjjeHSmD5h185hroA9hiM42FbZSgweMbSZcUYHirhZXwUFF9rbZuaCJhP8TsdYVFvlGyRtcOsr0F1C8nodSzeBfwiLZ1nebTd1wjLYtGxBF1ksbqT05ycXZDMsJWKPPFFx5od7U4STSzB28o/3Hia1dGu1fRsOUILIyv3Lu5itybxIvLQUcGdlRtRkPbh5ZCVdpT1tRDrUAnQ819xIy07Jod7W0MUUF+zoxG3EzJ49vPjtvm+eK+whVj56NTG63XUC5nU5irRbRZgmoC3RUe49t5uYqC9j8cpuzvxnSlHGqf+9ymtGwsgS9dcLjzlWQyW5HbJWMvgy5SkhS9QGNdJD5hrdS8009QZYOuC+YVjW4YapKoeVKnQKVU8A6I+Sj6WFc5Wpk2L4wwQ+VZfmuQitCv6Mj8ZLNPPLaNKLnPCM8pSj10+urorcQsO49yXJzxqsZZS/CaY/l3W9GSw0823ITFTOi26c8uRKHBNYuvhmD63TvdFz9wJjy/SGKG6AxruDRZwvzj42T80dSK8fgOsv0o4Nf3E62j1Lns1BViyxTmd2UKPT2rrtbu6UPm4Zaorm5xyFnwE5fwSROo07AXHyxbyLtu0J5OX+wt6Q1ucXLjgq4XeebmJBp8asVIZl1Jl0Jzq2XaHq/e3L4CZ3jsMDvqetZLnwLHC/aTtPXzc8nAlued2uhtl0PQ4MITqudeKDVuLjrOFfIBtgwMdvdTNJ7j7IMal+glt1toU5qW5vO9qx+s0YLK7jnZypO3qUuhZHKOxbjSck0Fk/bMs7fMpLFbjnfaWKZzcbKUufJ5+abCTyeUxIfnurqO9h/5wKmyTJO0HLvO22PymkjItPMnnQuP7Hz0LVNyiAmMyhNtf8oKJg5yiLbeMpNze87aQ0vz4juUdrrc48NcQWBYmGlCj2cLiqb8ByIXwdeyDHqOLM3xpszL5qkM+mOJ6ZdQPYFBI7NKhFaCDbWQbOwsnnHeY+3RTmE8u9Vp1BCGdWVM4e9LT+M+MHThzdcDplNHmJMjh5QNL71aDAZ3dAItK73TohZ8A+tP/P3+JTgi0sDidWBTbYEAomkB3UdIMvqMBRqvSwjikOp9YFT8JHZ2nHqwVNLuOwzPjP7berstP1OYoz7LGKc7XUPXHoYrRfnYxTSpeVPlKfO+/EbBdbZMF3fmr6sjcfu6rz6V5nG7DcPe4Yp/SpuHl6/ek+lLxCUsA6sE4pzx4JV9GvynmhrEeiSNqnfMxxo8RiklToRBK/k48XXFILAudcNGUVw6aecKlpMd2TpFgf1EtNsv1rjiGNocPa+bVLkHDNNZuTrNxGG9j9eIs+qt6HA1VJD++aKISQoEoDv2leMLmZS8iuH2+RIDbOLcPnuHqUelKEVUNjS+oyx4x/Qodpcy7TSCTjro/27b/G21j44LLtXeEwoPa3oP59hL0pvLRHa8d0JHwys8SUv9YNImN2kb+tmqKB4FweJgS3lOUn+mlaAt5STJZ3/sh8q/ViPnQT9efFxoLZjHFedemIvvt94YeUCIPNPlhlQguHZYwMckGbI6tsCBF1fyJ8pOwvx6OKaQl3V7q8XBtRIcjXsaIH305EHP+/OeHMxShFP7dugBcuqzMg5BNZtMolQMe8FoD0GS34hudO4tkmbAds0UrKCQvJiaTHLPmRo3+/htMrqeJAmJ5jkT1aLS8rKojpVi7xtIZw/t8605j81ZnICR58HhRb4PIRMwQ5jqMY8o+dG5+8lbcQFkN5+CetCxJznvtQiADddsLs3NZIaFZznX8Gr3zTCw4eUBrbad0XLDHSEJOqSNiDEeOxPU9TGqmpM76vtF4lqCkjgFZnGEKOo5KE4XydQyRy+9WO9JY2/BM5/5x+U/w6xsin7RPCOu8ae2e88H3XzpBEsEmAuW+srTBYdjgtvbmCqndXQJLJzEvjSHT44HgMSk3L98E/MTAoicqDpdoHkkqtTnO4jBg2TPzABQjyf5LZrK5JDDfhGD0pYOO58+w/W2imuM59aivVZb2YkZocgy5tVgJGL4vLOW70RXSvTyZCzoDicVSInrw0E3Q+E9Q1FKOEcM6FXxWKB5brfycl+1nM4azzuyGSU2Ga7KoMLb7eOX9pUILKNzPmCpUaKgxM5CoZo9ylICyZxWUZ/9bjBOhQA9OWfbcSDJBSLQcV+Ebzy/rdk8ELzjgPYZdgDgMNs77mr2j6MP00sEKx5axqBKmaZaGWOmrTPXJO2LOkHTR3Xlw61x3spyxFXk2LeYmmaAnlcTN7YomAgGCYGoR1QiZFeoV3bXDeqc7gQqBll6RaTdTKXTN7SsmPTnTZ6iYejYhm6bu+m6KBW+Sbej5ewjLXX9jTohhI1MveoQVBUcYS0zEUOQ18GWnOu+AJA5czAZ0jZITM88SXGQD28ft7PF/rWv52vWXj5uOeW7ogkLLfgLeVTZ3iwx2cJ+br+P8K17q0HWT/ueSLdVBowaiKCzlcSb5KskXBpAHoPxboDKa6gI8ifUor0Ayc7KrSr/aRetLnjkjv69bFZgnZFOZ0AbJv4wHlfOscOLR8HThlWBcXgaU5Gc6QfVEOJYS27PKFI+QCZBWKeWrZnIJN3TDVh2X7VlTgoG781E9a4eVEn4xsAJUg1bhWW35WMYwVU/6HTI3/M59+mD6lUDrEKRJoNojZfUm+4rKeuVaLNge0YASNnohtWO13GYzDGzrahcWDykXoDzFrnxMIBGVzQZ0kMiq4efv2gpfrPmyq4FEe3Lt5BBCM+MwiweGt6zLB1yFWKcWlshn3o+n0ZDfa4tEBvh5LqWzSwxdyMbf9KU0uSP5UMWP6MqgNDeNoPVWBueZJAwMRX/4RXmo5grJn4FhSq/dN3hEVbqzj71tm92PuggW5Lfoj2jgWnl4bCIoSVLkePm0o0mZANNmIubrzrlz7cMJVote1fenov5TlmpdJdn90RGK9tXEEaoDte9JZXV91g+VY8A6g4Qc17J2/mEYcZoWFCcPZVexgACB+5fAFswIXlIhVvCXWSteu/FS1guqo+IAhATcEuFiZqpjiqviYtxToj58dSd3X9ZW4Fo7mtNXyBfHMRVVSvH9UGEazkEVuA1EkPuQ+9p9dle89VN9DE8HmbXOYOlI0z3TC/ilDOCAsIgn8Mb6z93nlZFvmqWrUKE+G0dJTdoTqHXdyIFGAB5fx6AW+c1p7q5Zm2zSga74fdOiaNLtqYe0ltPLz1tyVlznrN4/fm2wq4Wn1/xAldfIGGgFto3uasO+aN6+nkedhShAHpovPdGoaGGRXziJL2MegYZiXg1xw+m/+EFzGyFIfhSo/XuT1iyA3fdHnsZ8YzlIISnkNSMeHGGLgklultQmR8uXzDaaijrikqJqvQqj3VO9RX5fSA6sAZ0WxFwc/mbddzZ3RL23qRujOIVKXUUDJpnBWEgEGIYrMdBM5eHc4qcHHAoQkuJrunyVHabQfbkEO5pRT2jFo3PEsA2lDT9hVf8QHGcsaCild+BM1Mkdt5Pri2ZHTyji2nOcB6zjgvX/b0dlry/TdZJkTbAHuaWHsMgLjX3rt99PQ1Yp9r+hXXinKKlbpFAJR2kSbOlPTfDtUCkF46EOFmOJ4vTrkWrcJWUJyWSwC5DgbquyjtBiaX+eE0pPt2uwHyo7GggY5pVgYtEGBWURiRS8XGY8RYAa97h4lWWQd+SCTC5zfnmTOmz22pH+Tz1srZA8lh1kotkSq7UT6FS1Ma2e1C8KAynqONAIcMBzIlurLp88jjzRs1iMeyQIsXXHXuugMHe1RjRQbbOTBjqS3wpKYjRwKNIjEqAsy5KCNkF737FyaC9U4MXiStHfTqIqj+nTXvElwcmBwYUjNymMe8uI3fcGyn5sKE88dkJ495P+ttxsY9VVrSSecqTwxUk9S7MAaotRxjEEKZIeUHJp1jOGNWdWcNXEXI2SWzr0SHtcz4rIwo9zROQSszCXkjUKF4gKRFxS16tuBRAN/XNme+3JeXX53PFxwXcgeSaNFYfB85a7XDTtMenyY4g7Vf704Y0ALYK/LojrOW2xRfSAutVeOz5FUTBv8tgm65xfGw5sFEL7Qpab3iVd6LqP7DKZnQVal4DhqPgvLNF0SgOBc5p0sYT1QYBwVp8qque6ip9Z47uXZEwRG3YooGJP8eGaom30ZPrBcmYSMf4i3lhLxkBD9+/UW/zC3jFd5kbbVkJ3GG6DYDx9Fo1tiBwMIHX5sd4U07AB59RSj14o8Z881O7aqWGPaSnAZNN9DR2+/0Eg+TX9iS5OzTjT+HOFhXwSNR375BOu77eeg3efx5F9XzmzeEVCYozPPeMgCRYC9RLYD+KUBmzPp9Cst8A3FCCL61l+4WjczXi+jf2cArVGt2mvXnIGrRGpgcnVyKAUCmk5TylSQVVQ5Xt5Gc6vLB1lqpdnIENFt2aujT1MqGX8HQECY+YI/OxZ7f3HfMGwcMTSuX1QcnYBc9uAkGtRrAalxrZpArPCF1feO7AySYeRWFhhpR5M/Ut8GSs93n2uOC3k87OPWs+ux4C2RgrSO+Rq9nS3TNhGs2c+FDlLFC/5aEsiI1WTHAYz098Nm39qVbwxJVv+rTfxqtY5eOboz5eFFg3630tTJUG6/02UEp9woK1og/8A+oGlPlG6e0Y4sRRWOuQwhOaM/zwKoIcY8o2Exp/6RJ3BHpGO0t15Hag+zFWEK4Lq8LKP4m9BCZwbl4qSXRBfbzUjK0diWPkjbVxlqada6485Hc8bH54MnNB+raicFDfhHhGwSAJ2nRdjZl8tqfRKq/QvjJgp+QBJ2VnoA+Kdtp4H29kMJqjGJlQHDtbtMo3YqncA2mXPWrCOnOD1OgveS6twa+jGnvRC/EgAIThScKCHWQah6ONWH8JLpZEE2ibJkFQbbdakJPMAQ6Ngg7Qaq6va+0EQHVmHmDlMqrcjHV9sYmNEmuIXL7Y6h/APi9t4CoVYyCTazXTj+0xiWCSqpfMfGRRbL4woTUvkY9opVlmhycZB0PNlvd76iWZN6xSOOUztmTpR/aAvWo1mc8zGt3xlsdYDbHXtA/IVqkBYtX+Iy6gUgHUllDES62VeQ0TnADCcofwkvNcRlq1fjAmdvNiABJGg9pMRuB5DcvVDtOEnIztzzLWuV2Iva+ebXPDIGEyXQfBGbIBWTG9mb/fru3VW6Dgc7Oca/EVJ3RtkAQunOkeJ5VAfpu0gB6jm3pDmO0xaN4RmebBUqsbJ/yEzpfTTk/rybbeLMf5fY0QWeyMIpygvlDZ1cxz0RTTNId6pJ9dimS8H5uF7eqLKsS+dLqLxuQHND1fuvM6z4KjmytJIMexKvsD6/FcNoHvH+ygwH2/lKVcgzhpo8CB5vnRxu3laHPuX/psHjcD5yLim9uZUV86fE3VZBQjF7qaEYRGWPwpEj2U3nP2LdSensq8cPE1PxZF3rbXgy0VFH6xyLJ/yrjU0vwOAaVqR7zMBB1X0S63z1iOKu6hmH1u09IovQvnnqAyOFKO0X3ZMGF/KRqhXz4Jp9MnkG5mjtkVVwdigZVVo5U+LNyOnKXMlKawuXCc1Uuq5TcfmtPRCwVcdEAUohHsZr8iEHKeyVSZzOCjn/DKdjgGafAS3C3bv/iZryiVcz7QGFZeu/mI4Gl3c6vD/B5YSI8BmUx52Hd+nM9nETokLAMXbUWJzJ8MYxZsX4sjYsnlHQic0HYiWn5bbb3iMAtqpDO5LkPoRsdOx7P7cm257+rZe7KGDCqhGhG+6yRScCcnJSk2b4EUvK8MtqlUKLnD7viRuUbChooTcl9kjjqtki6AAVgHQLXkUoQYtW6AqUgroTaFqCyzoefNa0MMvA/Tu2LGlJLEfT5so/p3TjlY4uIV5ySdGELejkMjAO7U5zftT5pCdH1hUblppj6iPNmiaCb78s6VMbaiDxB6mAUs3rL1JpXYG4Q3bEMMUJPnegYW8kxH60Xqr2IVCt+amlJxXmtT7j5zIzQxhkbsEZ+mcG+OZZFpweyCzOSlIOMkPJUKz3kS0sdQaXa/9MTx0S6BOTUn56YDIB/JBfBrMRfa07V9u1OIE2nto0IoPxWbkqjyzDPUg6IAQqfhFaYI7fpYqNOboXTq5VkknyfEfSxdiaeJqJbLxurn02/l0Go/yKtcvl6SoB5ohkE3HjXbkTvVti4ffDt26Fr0cJxRwi106HEhF/EtnfCk5n3b+HrDpkN1+bVpo3CzWKQZNRSdw3FxSOngAPHVAmCqZvrR1nGvpjeWD+q1havA9XB0NrJuPLDdBvpz+x5Oj0QUogja3rH0MOmbDUVk7/nSjcC3I7vNmE8JiLY69E58TbIqStAF7YXGDtcck3bAzZuOtB3dixvaP0iCINYMd78xz3r3nAhJMKKQVclzsYqt3sKNz27io+Ealx8CxPJsJhAtyrh4+x4QA2VbKIfKvDCFFSiCQ3VrmGBF25cAFGuRGFVadNCbK4QLTFLlzumHiGPd/WYNcvrV14pR6hA+CoEdgCzqKEVweXmfy6+vc343znwHH2bDTE9MXilK6u/LXgUyJokSd9NkD/tmcF62kMer7W+s+unFwraFVILmncvZLUJvb8DJ1kQokBOqRUCCXRcib2qgO2JDh/E81SXwa8u+ye+MNR+8cUb+PS6vECxGGyDKM8/p0qPC31yn8JI9ffGTY4cduQKLR3n2bQnmoZeqaoYodSVBdMFOyjKJr8UpqYEwY0SCCxpwzNHMgcjgwixZzlnkMiSUKmW6/MHzUBIMy/sT1USqOmc5KYP5+mwt/FVaGz0SvHC5ZcWtwucdsp4PrxZBSBLMpDZwOuTZkJclesvS1fOMqMhw0bpZnjPo+s3WMGbGOhyXZxAIU3OzGJob1FrC43ytqkfJgKlQGHOk5HJ0cWIVqO+5tgVLeEOyk/3GlTNac4nzxe7AdIyaM+kURbgzdowk9zXQWrhEowI+6oo+b5+TOp5OtE9pv9xxHj7v0Q+ghe/achAKuo2pdokIp2juSbKtOr4sp1QUGl78szz8DZPyqmqf/Dw6MUCX/V41xYOV0rXl4hodrMN1K1UkY8/8iCFLOM+baOYS8HL8YX+AxL6/lRboSEs45YM7XfNW4n18cQEy4kHe6FK8awLUQ1v5x2en56RgRvrqwP5aOE5847SKuwXPURHfXS+zf72YkuvV17u7IXxQb6lloNPXi09TZ5ZQZ7OfTJtZVKqOZ88yGZ+L56y3YAoNSCJN6G1hGcPFO3/n0vOFK3X2YoIRIduACVcjY54JgFeg0rgCgDVGkWug73SKIOqlUMuDGv28eALWoD6etO5Abbk4oUxxZhulOzZbazcHcEIyC54wq+oBJILxKlPe+HEky9nIJ1Vv1eDzVgFmmXJMd18663+cZKcaPT3Z+qZIm9L4CyUda7SkJPxcY9W5GRqItdFxM+HBA4ZXmuhFkcCpzh5NnbieidAdyQWrSR4EcPzUo9QAFSRyGC6tH/nQxMxy1IlwT77IatMDFKU3vKkFb43tQtuvNGuCjQXqITfm8Id3Ji9k5gQE9BzI8L5gvBBG/x5BPh3eg4xyvkw1b9M3G173YYWGTF6kcZVBvM5OAQKspJQiGP+dwpzMDN5xmvHJKh+xIagX8QH1gUp+gShftuuyfvUNqRKJjyQs3u+memPlR3mKDGvOni/PUZvoDpbs5CQQmXHBIoZ9lEJkWsmqhVZT8xoWXftr6QSi63qgdCAdOsOms2xAvMaaJhSshb/ekeYSDzZAuiianMqGZNPjCsQIDoWphwD4UVwWvW+znJF91LK9FCx/I7idIgpFbnat6d6bsVCS6pYs+LSduALDvzQgG4hCo0fuPFR4dOYr7wYu7JlZATWm9XVzfPTyfOvGt4pxQJafJAbrFhb7XpjSutFfmhmTRxLilyeMZ89oT4mzTHYR6uHdU8w0gU4XRUgwUCOBJ6C6zxvLU8LqntWUhx1AriqF+flh5K5+hFQCUtPr7X1u+tq0LfAZ0i2tp5bNsSRGb/O12BMI+wkjN77RJp64IqCMUjdmTN3pTDdGbm8D01dvKjw71ofroGEz5icAsdH5VTiMx9dtzPwi2oDUWTeD4VY3YnXl89ZLduerzLn5Fnjyp7+u6U0d0TVAuuqMmvGS1ALLP96OXJtL9i9voyF7EfQz3XTbTwINvHH4+ThWLZXvBE9vpA08VXiBIMyoJ/fMRW4iQui8hJVDgeTUHXhf1QGhvyJAj7Ba8++w04CeWt/4xTGM86WsC3WzMwiCH0lPDl0MvcfamtrpqwtkyB/tjoJmaQ555bp1yDF9w2KYcXYkjqMb1lWf8kG7e+l0EDezI5yfqjC9NsgxCBQ3Z1kR8A67CfwwR7fF7usel5N9TkS3EJL+MdH8YlT9AWXfIX89PvNX5Wjj5nr7UsVNEhMztfavFH8dmUQL3+vUwHIDyzpW9hkTEEc2ROuZfSy60bgDRaaAgofUQL/lDmJqWXly+gDKEdFXt8XhgcrGZ3aVCxGbS4xXsPbQwsK5ZZFbAQk1lUW22HkMHG7FW8o1oI9gJ3G6P3Ay2o12dwEzv/UsC4N2Y36+UOBrTcWNKAWeQMnEu7aASm7aqejO3L8S4eg5rzL0G2IAc/Ulgq20BfRn/bdddcF1Ru+iOBAKMuIFXp4Pja1cy21RWYOlwL0i5dq4uZ7h2Yn0UQTaRVtmNOOr2bFwHpdlKP0hhvBbQ8/K7lD0pT5SnuPrE2CbsQzyyvlMmPtV+wiQr1dcY1tW8Oe0da9Z9Tf/6aygaMnoSWAMBOBpxvm1SodERTSRtz5bku3Km3JIGQ3IGTjWA/88mrdqy1dR4foRvzVQVnp8wUHKe6zrBjG2EppxyDxtdypa1Qh1w6glqJ3os2qOBr/W56gnkRoYmkr1yLlN6joHBvmAzFwWOAwC+t7gZ9Bk6DYPHq+/HAn4a1tSHGin8VMFJFltAfrU6VGi62kldN/1ealWwiG3isfCPhskXVH4ojOl8mmD+kYgo5Thxs8pkD6WMAyWUGBZirhREPkyioC/6nU0MwClW+gdtZ+xENbVkIhsvGHeTTiYtzR9zoMXHD0PFxz0ez0ue9GD8squGabSfbFIfgiDOIIQbpiTpfLIzaRvqnh9M3rYvflVIQgGMAYecHvRHmWzwxw0P8iHtuu6oT96TLACrSj4jpX3HJ7uw2JzZnszh3YHu4LN1z8VmyW4CvXFyyw6rreH/SY6YqxylMjQZK1wQe9MnEpY8FPMogA+qN7L9LT3hGiCb6wH4qm+pIjVahvCderobJK/GB/QbMyoLLE0u1xcelfcT9WdnPp+mJYuqC8PITV09T/M1/KdY0mO3Tb0YCw25cG/dta3Se71Vctn9Ool2olFcNikvN+XvyiwjHwt4lEtUNvFPIOYsQGUlHg77TVa2bNGZaX3294mDZ7tRwfJ4Q7LnfjSnlFq0freenDDxODst5OvHtpVYude4SI7+8tY+WIBvgKnpoaaparZeK18Xr5fD8SXpsnPDGJCtrq2Z/TeBD0tyfdBoMlpSWZlJ4jfPPMc2HFnz3Ck7U/UaeNpNwj1KJHl3ctu2XAKOva94lriGoY8LqU4CFPy8SmNDbSc0Vn2jK1Z13oNqmu8QB7QQgmLYvGpp5RgMgh0bivc0z5MFvZHhtb4tUVbTgE3Gsg08pLTOkaAmtxp28Uv53Jhi3kW6vyC8kB+yqXMnQ0nYzc/Ti8D1EcoEOvJbH91dZSbazel/lGPMvl+Y8yT/bSQfbHBrPvsjQne7Y6uAJDerMSlQrZI2noMOTfPK8lpRIHpxoBgNv3h5JjteBuWZ9l2A/40ybbBskiy71pdOhRkCFR63OrIneJPdIdp2y0lwp9b1dOo2zjgNDxaZVFCpXBwfmghpntIqLb5GEHAi+ZIU04rU/SY6zEb94JjU3d4HJACoia5L9R1UBDAdWq9TasPFtVoaw5Fgo8t3OC9/Xddm7SsDSLamgNGqY0gpbeHCUDJYXQM5hq1DtdWGqbRtPUZmxlHPhz2SE7v1oT9Xg2DJKvmfNTcPfVQcDQr0/ydqV4gCMXdzfFiG6f9Aulf7CPnJWY8ch35EE+Xy9+FBOlCCGIo2Zhpml5HGNcPwi7WUOSg19zp+keyiA9OFWgcLIX+Wf07Bbf2A1Fl4gCmyuTHBrflYyskhx44XcLkfC/talv9+zFBaeQTU0vkxZu+UOiLquwv2A7o/+pnzvNJAVFBXHwSTAkzBeLe7EaS6FMB9RWrBmi2frKLrq41VrBycCqWLI+PvH69K4yWP6cpJJECkSRumjoo7kB1t521elXLILtQseVSMPnpi3OcmxwfdV/fmewtmxnKOt5ZW8zOAXAigxu58fUAt/WxohKwl0W/OmMSPTKnP6Pjkc8QZhn8tVsPtHnYbG4XxwLixFuQqtuKeKlwReSMl0T5WsEx4a7zLm/UjjSy/y5tyAmfpcD5fnFpX98BIYsmRyrnBSoWHjkDFsMLWnluIAWCnI/mKEWBDU68zRd7aC66+bPI2Ya9EXMVxLQnjtYB9RorKac7RkUs+kwYQyNoDpKsdxxUEnbvvXZnq8UKnp6a8gh3Webvu5aY4MRxlhedeCmlecJh+Xk9kXFbH4qK6KDYjz/a8QoJr0q8O891wZLxqw7R52765BwPgfWyGUtiDyQ8XeqQj1ezxMrwDL0AvMfFxJVTf4SusCx+1F7sG9k8QPDC4gZseDiJxtISbCYsoUTN82JsBLgpObo8YAL5vKuBr6kJdg7few/xVnWGwGzXgjUnwu5l10Pt1TWI+7VkAMaYs6pVN0Ffvfr1dS5rTJLtkfuCFCz6HvmIvdFInblAyaX7ym7Y2j7tYc76b98RwnTuCJ1qpYAepL0qyzuYXmGkw/nMdjeHZmi+EDTxpuCCIjVD6A5VZoC2EF8e8bkR6+u9U8EJVmkurwSJCct0EQh07roZ2yjNVqNbCZoOw2fOUTUNkah6mGPHt773ICEFxevhsBTbBBA6kj5du8fq0MhObz7ruVz4cW8RFCU/twcQTZTlbVruCHEldllCxIhf0cyIwJ6vT/LojcShIm9SNLA2mEBS4XE8Q9+B4W6hTUYV2q1eQC+daTrP5HU8zWbG7gzVe2IuVcPxay8VLZzM160oKxFJ1Qcm2pl6zQxm2DhS3lfn4NJx864IPQ1ksRsbtT2VVKntOoJdY0G0IWiomHJE2tb5EvtWbuBhaLFVAr80Y5hlJxNSb8PllLzjHSqKRlgoqem188fOh7Z41eiz+YakMdUA9iNx56OnaRZ8n4nJfAQvSmb55PEGZNWaO90P4aMce83khyuvL6BgsNCS+K+J/kyiwydH9zLzJpcDn1dGnAlPtHwtfjSwstRaNxKqNdU73E8s+AnAldBRzV1ikzljHC2UcvAzjYlKfSig+mBlStbFa5XtPXBk2zAYj8E1jcjMLr/nB4UWXRsTD4M0eJbcI7o6KrHFJ8Kcj2/dkRSspQZJVoKtSU09hGtr+B2YT3aI/EWOzwvModPJp0OXdb9ovj95dypuNnP1RFh6DACa2agsYlI/Nyd6VMKLx4+5RcraIW+MsrBFVNGMWoVFCAhpjXQsjWwFtENl2Pmf8UBpzWiNqJdQqp4X9GG/So45Bx2E5zpCX2776Nsxnx7zTff344VOXstNEVQlLD70qqmld24Dlh7SoFoJQj97x7dOQXLpvSbi+gxT1s9v4khVRMSWME145QNUVh7Lh5X2AR7LpTp2BSONJsUwPB/kS9c40OOd0egpX5ipGWoyMJ+OA3I3hfy1uBNOEE6nz8OTDB7MiIqNgsLgAa71WN4h2WNNpR/TLtlV3PfLg78yQjtXm+1Y5QtpoU3RDTXsDBCpxEJfvrY1xWjHkl+D5TYaMpd7FKTVALKkP/PX4VBQvPjbxfhtwTdhJry2gT+QLnPHbcZeodXChpq6VKRil6pzaX1c3ovybiD+6VW2GzM0Kouk886G6SNBmL6+6grdxGS3K1qAq4tkaUzaKQVCb/h4Advnd8VOlwasZpr9NFmh4OCKaBWA8bTaPOshhm/rGIMlh6KvP+c0oShEpJ3QWl+5GyAg28S+GiVUIJuw1l9+DQe9NqXAndCbbt0Ikj8mU9ce5fObsYH8hL4fXAPCG/uiYJYvntO+n8V46xoRSkDSl7LrQojk3PRR+fAEgjQz2RhObajhuV1MXrBkay0RNBgCahYMZWzYJvpNgwtFqzmchE60zXnjFII4xEk1Lj+naBo/6RdCkKzxo2bVHcjZU7heh3UZQxUUHGT4qNzhi9zHxkssUK9s6RZ5RCeOfK2fENyliqz0ZQ/4No8Y8K36W4BPVT2AFsFIUn6SJifnqS2D1CfHVHRcydviOGkXQbnBqSPRuM95EZvLGrh3oVCGq5EvHOCqSwWYDpa2HPLOUUAxDVOnqpFn9bqZNCuFhHtJNgtqW5XrfOrTDfZZ/SIOLFOhOIslRW5LA6gkhzKFjbAg4Cix2kBEr6hS15XYMOLmsfHX6tID4iIdDWxQpNuuNqpXsWHQyRzUR+nAink1ZVV3d3KSLOTOOweGOihJgu9TQ2t+kCqgXScabLZUA5Mgziy9QbNODetrlNo7bXVSV3aYFEZgWgJ4vQiIql5CIwkoRn1D2uLR2wd4N1nD5O7mzX6dpI0ur8YEmTeW3tsEOO1aRyI7hBq383BcPqc0AUUnpjfR+hWRS3HjpPh8W6FwYy1JJYkj1kkd7V5f7wTo8fCAuZ5jRcmvJfwKvt4/0BHP/iwhKdhOI6thPo7BRASwzqqMvQErCWqlplBvTB/oTJHbTYPqY0j9W46m1z+v6XUDVPTLniY+pZnXtMbx1/LT5kp1Z3q1wR5rz2yzItiZkAVwGK1Nee1Zngbdx5/NH6BN1Qwg/UgaPahyjTtxWmA5jO41L1p4Zm3hrqT80KOilHlV5YDqM5RS2UxjwQLqzAyQd0WfF74xz9WwLPhwvAYuRHa6tv0btZbmBygEqV+vGQD3SwGRn4EMIBDwiLStkZJ97mAN68BWLE4v23qJAPTy/YnrmPyo91L18ZH0P02n+RgXF6ExmgpkL6CAbNQwaLEI6xPF3fhBoRwoVJM3LLeO9yK3xRgXXko+Ymh2E0YTJQCTADCmT1tywxDH3SCU/JZ6hrw+qVxGb4gK1L6NYfz+6DgKv9tVCx4C3HQvL+v6ip6Gd/G84iqXOJLCdwXXyWo+HibNJCcRFDOKij4o7mTQlw2gCp9d0YISN62Nk0tvu24+7RusJjJ+I9eQE0XIjASTlprYxxwtEInsxVZi2xZB30fuW6ht38kXu3QkrhOkdU2zVc0b9HlHSdNODgLFjDheNhA7MyjJEDspeqRmFemZdZlN2Cey+OmTRx3T4pjR17yTnzESQ4Fvkg8j4wY7al3i7OrHBMPHZXTWMsMlDgXt3OqRBsXSEmHuYtgzyUJarnRL7tTCemQnZSOUl4FKyp0JVlnLkjkQ5uVoRudZdWTNOKAYRdJhJPfvhpYEZg93syzhpBCkvb3DBgg7IA10YKUI8/UOESAPiQ9rHitZNztevQIYC8v1AKyVCKsbgdGe+aPKoHhkGRPieusxa28uRJJU86uv6wXexVshESUd5LGUwvUPOGyaXJfcRN8zH0o2AMlrJFqBe8DC+ggymzQMQkltn1oCMtOzznT2upFWF8zC6o6teXDY7cnaWQuWPDJsJenPGwPmrHhEZQR/bjnmjwPTIlTHCBCjtJtrldV9ra3DZmefj/fN+5Epc+2vepnqX5zlBqju2GOEgqLS1xf6pXzRZSdEPurSPrzKMBuu/9z3sisYlXErzXYV+FW8rwn7iNmyHoIenqGz6fD6ENdVJJ8LKK8Rz+5xPt9THwpLcWYnn4gfdG7twF8jg0CiBzk6MyhRMzTzXnE8JeZBWacaGocbnSusoxbsdH7qJbkDMvBXM3/s7JA7Y1n7NCp+uDF1+4QvzD6cCL1aAncznlWwolxhXBCGRMmD9WAyc4lgHogUrUixcBIJOkJOShz24SkhFZ+88BF81p2l3tdT/UCrA3Qk+a/21P5pIWo13vlMIaptNC0sgLIRrdCxnR8P6ZFjNx9KQveat9XedgYg5q4XFVbzaUh/7g9CUVwj4Hv4RGCzfkGw5rx5aur6eajVpuAoipJU9QmkIOII/ihRmeBP5MNufN+8LREqPDau6updc29GOlyfClakfzwSdvvqIAH4XnLacJG3Ce6eC32kFaIm992sTRHmDsRLIwc5zCv1JBmFx3eqvsbkTeyHYnNlfOy4XsmiqJLik8Xu8Aye+hB5pS3Aa0uVqcczbrsBNnrW/ST9zRS2BDV0FS9uCeRzEnn+O7JkIcDgK0hJ5QDVCKMiQJ/QCQKO0KQnVb6eFzPGuF170JrYs2MvtGy6JSktZl+30xhA4q1p1z6BQzr5AJKL4iC2NEso5yXoVN+ZmTdefbwAhKtjqEGunbFR8Ov76vEXVeL+tYFq4bhgtJIlNt2G8ljBkqI4rhTDdojso9s+QeXabmjdb+fg5jUDHlKtHDLzVb5EP3oKuYr2XefoTgg9HV2h3vVYNZasiaHEJkqj1ixi0XnDWEmoooyRTZ6ODfL42T8SiBAiH4dFHYr9u34Mz4ZFq6SFv1Ig9dg51/0q3gYvkQjc12Lgq5s8d114yUkYndt3Xramh3TYTfeG5ZtdLUp9Be/z7SGVORm7rwxvs3qWB2MW5/1gnG/Ci5yCeEJ4JMXzX10hUOW4ckD0r1YDH4re9iZBwrQhLD+z/JZdPrqQ56hpVlvNUaq8cdiURlvgrJKHeonzZWgL8PnGHmFKu3sIzSJYneOeLX9rGefZHS6kTnE4vy8vTpaq/lbXgwPrkorF9N/WcRrOiOi18pYJC/rYVXXGMoESQnKSzrwFqldyOkwLmKaGiLca6bhl3NE41nm7Bdk7Y3HNEJKJhSeegU085OKc0zTejyGCyJfOuwg1VOohbKD64EXrgIaQNltxa48l1UvFRxSpXidTCiMpDD+WdP8itKucZN4NOigKTKfp5iyVqnR3xPJgubFvrLGXrXZIDqvSuNsf1UHJC8n+TPWLnbrVJGCZ6YeSVkZL1c6rFvJyc9+xhU1xq1PCCamQ03/eJVFCjPSu8IizTDc62mp5s0fShUgcp/LRiWJJBsDO0UUF5G7Jq1E2pz04yOnzjF9t687RQYxCNsDZ+jx8HmFnG1WqeAWF4PLWj7t84rN733gePalq85wFQizFFuZqxPcbqicXWw+PFCFxjZ5aNJ9Wb9bxyDiVlzDSM4Y1oikaur7UV7URAR1YqVGZon3uQYGgaIaJcHVC1Rwj0Y31rp3A0ykpJ06X96p4cZKvHrl2U7bPmyEw2tcIaE4B0Frj44awTWhKRQa1Zuzi0GzZN2OzzSs5BgHarSZhQr+0Wj6wp8gF7/YzCD26L77jOAx75I2m6wNXVdcZ7zux9py1MBDwnEOG4W2LpG1Cv17uCQ3WfdQjppFvN2NsWVfbWuu0bG05ymoj3SaLFdfN4TGR9KsmnNY5C12dkTHmnksPihFsDWhecGGteK1ZRTqXSF8TzhH2gs4CTLwwakXnvnoCnME+SjhCIrnRd+2Z76dW3SDUEzwPY5ihrqTwwC1Z9h92x8gQfEde7XPHktXxSiq4/aQsRdmVrGFCpr5QYE6OrH1tnBm8THbnQF8DeTnKH/HmU611mMd58pL7elQGVLqv8MY2Hc1x70UgZBE0KTJQksPR0+jojleacMY+uAsA5vpAJUKwcuXO/erAPKVIFmQl7Ffw3e9MSRMwSgc87n8+Sh+342CnQx3Gk/982YyD59HG5fWlH+LLhYSvt4cwk9pdN0664OCVr7dGuBvxjuxS+0lsdd0T4xpFf2ci5BcS/NbIdaeekmJAzx22JtbRqx079YO1hXUXbVjg1Y75xPGnJnxFgFFOGT6KbClbI+jsR0vhlSd6DHGblUJhyxC85P9l6i2WZEeibcGvucP7TAzDkEJSiBknbWJm1te3PE+9tq5BnUxlhMg3rLXJe7mpzzr/B9CAvHRkp8UlH41mosfCI5d8SMu+uktQ0W1zgc/0lDOhm7zYC9f7zyuBcaHxaG0i65NfU0MbqtR+4GAd5NrTdHthQOeFYPuvOQZs5qSboHBmfBCGX3XnAvwAYpAu63aT2SPX+s8k8VFe4zoubdxgz0JWm80voVaaqPwozIW0V1zRH1MRrsOKYqipOuM3tMuz8qE1V0Ccv70h5pboPkX/q4fNvEM2ZiH3iGulCOTfIoOs4PYV6jbL65XFlw1hs4x2wkKlaI/utTwgYVAQzXS1Nq/fMWP9gKkLlihfzrHYTmi7rvTzn53BpPf0uSkn9KJPD+5/e3hLkiYPgEMs54O7Hv/nKvcX5Hz1Js5Eai/uptqlL9QLAb6z0afo+NcbO0OAkynA70KqmDMhy4GwVG3aiboUzc+lIpzlSk2v14AOBYpx9MLafrDfoOYZkt4TRto3r0XwvzACn/j8NF9TnWuk5inFzFYrsWYbwpGlSVxXxxewoO/hnczdju59++HnvYEZ7AL5fKYUMrqCiEJx8lDorRgnC2bRil6NGvUwnzWpvc/IhZgT6WlB5TmKJ/B7H08KpeWGt9SPeCZgSrwHlMoy6IeoPOCEQWDCKAiSeoYoG6YqCe5hSIxjezELgU9UkzXXnPRBCLv0K4wjitBdVGQ9G4ev5ouYEXB1+JoA9skNnlU/gyA15eBkmQFaNMv9u3kTyhPIS6bpMGkiQwIVqPDTB4DsGhHXCMHrE03v2UoLFSvb2u4G4jWvThye7MWR7vAc2nKzS4qf5SjcqiO1RD9Mxy4B5qwGLUdL5fDFsRE7+aGu0bWA3iw1Jx4WHYjmqX7Lb/Q4x+fc++cbD2RG/tWTMxhwMVA56FEffqIK/Z3bGmSQGoUla7nZz4KNX7IsCEJKHYMJvdJJHkN0DyDF55CrxBwuVjzF+XCd1FJACgnZcQqgwffxHBxmX4XPXuhb0PEeHiH5bc/2VBK9iTQAO3+W73xlySVnUseHAM2hAn0cY0GGyX9ZwK8S+Z51pPn3Pi3cMx51iQqe/yUhlDyn+65oFhnkVlhDwAwFJga6S6/HdhwUdZ4ZdJjAJNnBmk2499SjfCJrFvAFUewPytCjzSNWUBb6fCAR8Ka4UGS4v0acTSzMo9/TqNW3269Be9kkf3E0CJswTEJDD7Dfm+xUluXE+zlLrinI6vJsK0dNey/SFPZVckpTHlZRGdniijswMF+hsQB59PWOF0EX0vMW3S12HnbWo+Pyyr5ZnBxDpCSXiA5+MnCR4L68b5Y9oKt8/Trq6mAoBNThWDHResEUkyV/xBinSjcUhokd6WV1vo6g3g8InTN5gBxxyUgcHh7BerPOBHtSj2BoGUJLJARKN308eOVb2AGluBDPN277Go558CjxE1lqPQ8PPjykTMA08Xu1bAp+/UScSr6UVO79qo4Nr2PnsXA5TR1PeWZ+voJKQxTxynz6YCQaJi6e7sKnuEx7diQJZ7prnn13xUViEvlLZraQoh5j1Ihz+H5YHyaOg+TdoM+SED8hTgGBnqrsJCS/t8Hl7ap0rXQ1XqgM0EHff5MP68al6d7uDYpGXjEi7wDHaVKtJ7hlZhdqvCQYTkgmfR3KameTIAcSRU6Yc7qrZEr81i3cxtX8Ef7a3XRt8OOEAH0VcL811QWYNm9BPulj6cXaL3SW3bO0Ey/V0eOHfGGkRnFladw0559n97YEhf4GoiCkqd/rH6Hp3a/zfYSr+6lpuqVzkvdamFrqAsVhkJ/8eQncshuDzpzt8ssaF0WS19Z8EdWOeKt+fH2XraB4NlD+TfEL2Zy2aQrBZcVzfkt69IT+gocjLzDRmpro7yg+9INCzIsSj9D2TnRLLF83BJOfsRcYqqqhY2VZr/VEpUgj+L9icA6P0wYFJDCOm/pJgsdnH3HCKJy3RD6oStLXUuCgDSCU+jLH5IDs3YZfTTcApwJCHUUqFp7ZCrtu/TGh+K+aq8QbhNzEe0YfG7RBSizuVTCicpiofZlN1xNNkYKHDM6jazE8tEBmKAuNhZrS7OvupQR3rhfqn9kT28qxmk501UYxb9owDBHw5CIzFJlfRWr2t5NeRXvUHk9XXT50qf0nANEgyRsIzUMQ2x81wLTFFk+et0XCFLgL9n99hmYX+hl+FK4MRrQHR8FM2ydj22qSHSfgPNHrQQylVpu9Ld1Fp48Y3lMOk+GuYK7sZaG+/SC2esDf2j31cPv8XSqqjQANygZUwj0NGl/RiiWbjkb2vFgsrEb0TBc3Iej0T5ExiKbyEW7Mj0uBrKxjgpdekAbrHmSATU+eqbPIIT8ix1c8r5vv4b93kYAwVtppSN9Ng0rgZY1juC78XBbnLzbqA3rzrpGxy7yYv0A87VdSKdQ5cnNZhSFLatOpDJvqM4IzKyBnjQDiQMP92lKtqiEaxInsHn1qzynXy73zeIceJMXmQiYBKCVB5Hbadnzbgt/q/tDD84fBIdTU9M11cMT+QKUx7cBZGZyBU3ZnL3SZsND7vN+sogZzE8WkHpjuPuG6uo4Fq/zNlzFnZfszYgQHx3BPFpVqLAMS0taKrO9zf/0nAzEuioWyjKsUGJHkyZK+JmVw8SswtmxN/QrH60vwQLJ3TcsQF50UhDIm5sDmf/ufMCZeSS4c5oVTKju80EfA7z6IWlubPPZfKP3lHJ/vAnjMHp2X3v/t7F8sNtEWvagX+MhRLl6sKzCeOkJ/yBruF7/KKS1Nw+ab73uJPCyR/8WvbweIw4EbdTpnmeIYJtJrtg9bGQvKWX6F4U4hoX+nS9r1HqT6yQH7KxkauH9nOH8HuYIgKM/rzAdd7Q+J6bx2eLYGaT+rGcv6+/G7dY4dthqTAG5/tvl48SqNw1c8DbX5YJ+SzNH0Vr9fle4hUmDONNQP/zdML1qQu+hME62H20ip5La21YY3K5vK5btGoCylGpZV7HiaruuGp3hvii1y0eOINYWHkPf51bGIN+62ntzza67HC+np1A+7ziNtylLb4WcnLDIHIqCU08pUdwd3JrhNfPLYZp2QKvp/yexr4P7GfJz6jH6V7fRTF4lblsk9EajIHBynzR/n9/AS8KJCsXWWT93IyUOjQOnbuvr3yurhBTM1L9Rc6li/U1GFexP4ZaeWnx7Gq7CYRqxXqSXBLqg/J1djzM5fbrTKME4d1WOZhz7/bZDyKAdKAExprn5rVcruPYiQWTEH1WLif39evHmOMInQaLZZ6uitMyddjt/Xj1fJjfTsoxW6evowt+fOrqTYFt/6dndxkxrWpHrpXF5WulAFUdVW36yg+uVv/kcCckSnFUpZQ1yxp9mZOLeeAjPiQ3/2VPVH0HeTw9WsG79wRDqrZarRWomYRG+ZJFHk4jUDG1IUfV0nMlZNeTfdYbIPqWLixn51l4FyTBpeG8g5DYyrlUR1FNVFlm7YDLPOL+LHb3K4rT+2uSV+1hZkLm7VAdXX4PS97YnvyzctS/BXZ/3E2+bSil2i3azKJ6iPezIGwBdmXnWfSk3HQ+Rto4vlylpWQQcLkJbaSFDESJxdcGXXzw7T4Hes7WNW2GRiGZHMqo0IRKIjU+Czav3kMS3VUrTM/Lh9cDHsaBDxZuwI5hecXkdEqobZIncXgiisarKMqsb90F/u2CpCcwqmvhHfx0q4lfpLHHxIuXQhxy23bbH8vNDGSf9sDEePYTantFDg9t+Upk7nZibURG5dY7WY5iwKc0KWLAWKpPMshgFTkAJDkdW0KlB5/fwF442l8+ivrY2Ux1DoMOR/mVg83P38WpS6KnyZdpNdQzWaZEGkj8RBGOGJ11A/Y9BSyCqhxPrqPZmEvjd/5cb5X4co9NcW/9wT0mor5J1PryjOgt6U0af5NoOTGXfsE8PIT+bd/ITyVQaWxtu0LzZJkdkH/W6Fpwlt1YkhPwRdxn5GHPqsJ/aSCs53w7Svc+eZ5rw4xz2lgXrpRdaMGxfV82X337uKVw7XUHqhJ843vcQNf1UDHHsvuWuQKCKIIUvU4ERao0x4Y10jt39b7C8PQzHuj8q/QjDKZ/Xj9+aTNVvPqsv1s5AskWc7zwiAQwB2HcXGjxFEMJq0I0lmmbn5Kf9KRdIjAEv5ijI8tbxwXPH5wi91sYDtD84rQsGf96UYW1l7H64rW6kZfOPpKnw/DCj3uwMkeXX0LxMoJ6D6j++qlKLK29ZrWyoqAn3v8us4D2L9ZeQIaTrHgaUustOdkJ+7sbYLuLh1u+9Xzf7Ei83oIX7Bl+ZWlxyF7t8At+gsfr+hPa/rghmVxoj+Xas0kha+Rla57EQrgmapUS47ewRJtWtV7MbnuRpGm15sN6eRZ8+Z6XIoi2qK+Bq1gFndtLhKY9mI90gaQh7ENOBxOGWsat0wLhOUTU8vm+8zBJST2suJga2cmGV5IcxfhX9I2F2WVJGEtZD4GhAgO/q4iea3NYPjSVeyGc9Flb+QuHfskCfKA6EgMNDk/0zuo+KnvBvSD4SwNfx57q/6ORUvfjh+J38uhGHVFskWL2b0gHhrgPmyTNTT0caMv0OrxUpral2NFsfwFsosuZKxQG9Y/u3sZyBuVsXIrW5elzWK8Ukk7LAtGbmuVFwuqRuV58L6XbSJSqvkK8n6Yc65LMn0cV6UnVxmGgONh94G4npJKMAHoaenAQJ2ZmPoe6B2rUDLCyRdGSVjSAdssmWPFu//gvCU/L/kYVv+97BfAG4qmREQAgclFAhZ9cMScCehj5J/1OEp9o2FTmq575/+BUHCUATWxCnrwroi71I4AXUU8RzFRCDP3zzKInNyI9mvDi+UXVwHA726I65umOrYv4FKeGsBdV9tGMM92IzXJoEny3eX++TKkoASWsxfP71lPxta/aYqlCVG4J6IvpyCD/6TaJ3N1+QY7r192VdkgDw2ko6oCnDIx701kJ7rndAoV7D8OPmivqiX0fJ4kpfoeXLoHCNAgAN266tgMRqS50Uv+pch7Wcf9a/kNM7tmI3rd5dTsZLz4JukRSpoUE1+qS6oBuDn/tdQGqX6MIRZK/q10zgh59OgfMq1So2UnmGBsAy0vvs0bPTsjmo8IUndQ6VE+/wNMzV1u6k/UuXKoGzrNY8wQUcPYii7XuG/bKNWhX/MpwoA9mInb7zK9PdiQ/oOQw7RV8liPEoZvqpspcpm+EgbT4vQLWPwDaLYi4tPzMOKPPERE9fQ5rzyFzNxQv3Ov25/vBi8Zgs6FJS08skawGuw93XiwDYUQfjXMeMPbELa1zCQdSJ5LFi+r2Gcrmn12g+aCGOp8e+Jf2Bdh/Jh8+IpgSCmjMdc5EWDWZK9jeZo5lkxzyc0/mHmEkMS7VkJggqr5w8cpIU7i/I8fhXfdc7OhSsYtqWXNrbG4vj059RWZLnh+7cg72upVen3Cc0MGORdx+laMXtZBfUwzi8t8wfEHyM2fakFReSU4zPGwNZQHn885iWObsNw2Bk/Y4WHkgd24GQw/uJH0XqAPZxdrPV3B0XibwspxSRsMYoS0NfQjUqXKM1daIrT7EnkFFecbs5HpRKaexRny0iwuIQeIUyxe5NG7lozyGCy4XJ7aUsK+V7/qROsusvtYdhSmXRWPbM27G4nTBitcVW876EXQPzGh55QHS4N2Q/MT2iV5iwmROr0nmN2jTAtwWFbvnRINim10a6sfwbZs10Eb0QpsSCP03XE5J2HfGhZAsUxDKFm6ULcgqFLXgcv1OcXT/QF7216DGZOkKFmaiXxJHlyWs4u5+myTQcHFNoyMSZzXpMhMH724lRMNEfoPau6CfLzMO7A+aNYDjD99JdANaco2+lE3P2wDcHKfMb2QO1xnzFjADapNlzSFBOreqRuJeQXVj5wmWQAFv8cY88dmQMmn/RFTo/4jkqhqYsaJY5SzK3yrfkoOXw0N5J1GCisOYvE+/KvMTa/9579hoYIMsN3XDknf+YjrCP8eK1HSCLW/16HPyq+Mx8NB2VucxWG6KH9gYGCQt4iXtuq7Jg3DIPaR4PJLX/dSdBs+Gg5xgIz7psszMBuaJlXZxWRKbwf9HO/4u63VC4X1bb+vHLz2RP+t02ubU12uymV6Sp4/wPI+ztqOQb31RKirtIG12tRqJZp2toh4SYIXImOav/rVEpk36IbDCDEfyQurz2B8zhGEt1ooYMG84o7ucA4cNaHq8QmGvw+ww6MkmLibZjMJxlYmf82L8hQz9exHKUgZmGJIL4x+Av6zBqUyyTWzMPv/RvRd/N361SXHEn96mFL+LWPOksvtMPTCZ9bdN72AUFjfWNzM1KHlrqePrDS96kAWlmTdPeqQBdlTWyx8HJAy7EDgUQWr5TdHyCBMOoT39HSGVoAeddJXht+3Wl6nLLTAFgu8DSUV1ER17sJ6ks+T7QT8W8m9v+GMOg+PBw/ZOI1PTQENilfPMH4Ne9NjGZvfjJDAPKsCAqLEiyMqhsDmjZdSU54OesCjoBPddPstmhehbsM3n5dZW8JWC0IDKZxEcc9WeT8tkP9RiJJejfZ9Vea3spwZKvYeIxAiv0vZ0H+2pllVhRYjSG6r/L0WJVXr9d0iVl2T/lqcWfifRk/6VNbkOxp1I0+yH65Wzflh1+ypiuGYXb50tdcciltDBv+M1tn5ZvrzSb2S1j8pGZF03I/H7lkO5l351HgT5njrLF/WBbgcmrUq4n0aUFbnNcRt4iUeO9CoWgk7FSQq36EY04Lz+KS01m6F9lMC4y0nb+p55ruJ0e/D/wQ4sIbxkFNlzgi6PAon89HOGjJ4ni35hQJWRWvfFet13OSz/rFIjp37Jfq7PP0WoQ/y1/sWUhZ25DgVmM/qWBQ9qWYEF38mqTIb+9nGHGAaJBvNUT6t1fy/Bdtk2OCpqUX3TydT6fPJnc2XBPxF4/j2rsuAklXtDD4mj8uSk3+xgdoCfzakN+3Tt3iLss97yvvzDh4qZceJCqU8U/6gvIgaZoP8iNoNXCL6IMkpsoWwDk5kuy3L1NljA5Hbnv719Iap78ehK54f4DIoabXxt6uihqvkDuGBlfIYR1x+vc3EvDrTzkc0U32UQeohdQJEp8dWQdlGNL8v5EXkA8Gs0mb1O5f9sVy7yFgTTUKw5bDRfoFk64q6NNgH4kP1ID8lakHbgGCJYvHKA4MuJqIKYz5HZ3/dED57TmbtuRXGJNA+dQnDOOY6xkD/aE9oG9UhH/jq9wCugD9U0ujHyTV+PQQqqXN2B5IqLxgQGEZ0IyrooKQf07KZpWdBitSoNvwqz3Ji4MLRddDbKRlivueRepksELzW8p3LZfip3zB635Mn9TkrS5imJL7RZxleYJpMX5UfrggHSzeDTWLsSzEciyGiXK4jwmWIWeCXuvxwRYILcgnVOt9mYlp+Uv28CAyK0GZ5/UvmW/5p9h3akP3HBpQJFiqFMVi4Uzt9dGlse8b+SwfQbuHBUeSZFIAsNz2ALS5bfxUv7xmxpwzrX+xEPfH8EWD4iENjX7GwsM/iekr6bwd34h6l/xUivXMmNKgpgXf/Fz0IuRbaHeG916Q6isBENvrFYMM2NkBsbtc8hz0638vVVerCKCHE2Mot11mcq/lI0m+yafgEeQrAEMetrJo2TrEu46dxWRKTyBYR9Gc4/Sa5tzDLo10H/+mT1aR0mPR3r08Ry0aET0EWrJbx7IEelg8P8lNlVSmaUuAqLHdcQvtfvp1PzRXqbreUMPa9NrvB4wz4q9HpmK+dwZsQyw7uvw1efwTJ1hvYwxTDqU1m4DJL8h/bLbJQMDDC/I9o/OvESFY0L6GOezr1evZAfsbxzqCKJ74/Rtc+qG/BNcWFaskVUaLFXQZmmPg/13CU7H/wpWa3nahXPEMd83s6sipv/vJgn4mqJz2k/Lj8aCHVYuitoW9hJqgaBBYvJk2twos6a6CLNXiP7ymcGD6GqENlYJVdoTCrncHW5D4rC5L5FhZ0QxRGx++VCkT0F9q4XFPjqoptxAlOfeCtgnAu4TVACXgzg+GR2lVkoni4nj4N/0TSOISSf79+KYFCE/tC1ZlK+B7IEVSUHTzFGbJgyype8JzfMaF8r5/DXpX6sGeV2TU6bJuoTGLmQjaKLDLupGLMoerGmJdLizk1rRE63uYF3Skkt+j3klmwE6cc/aizXk5H6vtNDMAdaDuPsg7Re7FbA7SQiUFkHEZRpo43SwuMr+99lWEX3hu+tEtzf3fQ9xDSVPNH2agbh2K1wTtoTRNHkJW3/XWyyvbVbTTzb+x+w5MvTCoS5R9/CDqnPOSrznXIEhUxbPJfkY9ePEzBhoxMRjMw+Mx0jECEQRr+zZ+NL4lVwyePPSVGj927Ffu/lt/HUdTzQgeSlAy7uEkjp1NcxxIwpVFXcgrPHpODC1wHPv9kB9/b56LjffHURM17quD3ar9hsC5ct2qfkoAFf6TI+G4/7E+GkTgvD+Pb1pwhxyRZvleiAozm5/06FeCqv02f5CVFUe8IGjtb4p8/uZEfD8PCI8GNN2CLSJ42vpvAm3yp5+7InvwX8F8HPtakyqriju5MjvixF8wcY+SHN63kDw92cA4iMJemZ8+d78EqKNLIV7aYrUyvI+OMDY2Bioi/83yo+PYKbjuaCuVfQnC+hywJRJELH0H67msQsdFu3uRCZKZ2CQGZiifHmN5G3VAnzbUhqdwnpPSaKBq6tBlRoC4zDKGMEka32RDxRMll7P59/oJXL1W9KVe64w1D69GXAzqChhJ4kHE+tjhcD7Finz1f1w7oUpwNLeDroqwKAhAPgrwK6oL1iKXWJI8oOdlF/TnQLtWjpHcrCvux0ey9w2oFo7t36n6gkl52eszhujC4szALHX4ie7ZjbLKwYJzyhU31LVah3V7gd1p+Hy6jeGlplJfDlxFxoJ8S9jBpwT2/pwmrC+aOwQrJvp73/RfTAzfEVMYbknGXqdQhOM2jS/Ec+Kcob2kaEBBWx/sOHnzmyhB1FwCuonytl2lFRd/qAeC5S02H1t4UpLtZlTe59R8pM3UXVo+xJF8ZhLSHdgK4E74Ruu9gVjR4TyGsWDc81AblWH50T+HMvc1JTCiuWiO6fBTPwQC3ooV/xnlvCwCVU+yjfD/Ip1tXkqpzKulNCAtcYHdLoSz32SkjFyGP6GtK7AzR9G2e6w79X6WxOediL6s06+wW4SW8fCx1NM2aMT+KznluyBf12PhGO97RuoU+mfKU0BfjL88Md7pr6ytcAjZLYmn4aBWUK8+M4Ab33sufzHSTZOyxoeDYUf2+Lwg9YvNyK2fNfrP+0X7NM2JzcljnKOWQB8KAvqzYnL7m+3lkQ9H3VuOq13nkEaNe8VEVEg7I+knsQObxRnbrUtojK17LW5oFZp/jSj871OBXIkLf25vX5ppn+kLN3CS67+pOag7l3WR8gVJRVJug+qpWsLsKZin/7wKJ9ix2Kw2DgSd17DIxlViytnRqjCPG+lMMfngd0xWci3oBY2Sgq+J9GMmBT8DEChS/XzHPuvWM1wWMgwf1iHZ9JMvS3U5Mo1H4YUIKEzqZhn8cp3Z3w63WtxzzX6F9oKjud8Snw8XXrShdbHbjjJQ9iEJi7cuvhIEQZU2OcZivmLK8CewowZlWTCCmpajock8WJdOLdXvBzeFv8ZUKNNUVBdtdcV5ln3xOT8VE/2RXfz69XCtT9vnh1One92Y6Zvdd/Yp5GcM5ejB8K2s84eXwboXksRYC3BYcqBu2KhJ1gKGjTKhUaQbFihtijyU+lLSVm9H613WcJPdHhJaKrIYx1I446/jGsacAw3bokRAjd+s1QLwml9F2qMhbXxhqJPyQvUIltvC6Lh+TxnGz/1neEXxn+0ZeDCGkn88JiXXphU7KVJ0a6cGbjrs17cW8Ek1y6C0OVd3LgE8G2HmX/kTOezXowOfHczO+hoU/fGG1ySyXl6Ikq/MVtWsnWL4dnw3sepK5RItsh71JI1+wx1FVJPnQj/Ta8noXIC5rUwkzVPSv18JRj9k8p8EglQE/MG/FytTqRgGEmHvRmYvUbjS2SDYYDRnw5qdH1Lr96c0x/BXE07Pw3r06mB55xHU7gp0qeS3D5Ftnw8LI3uowNJlZfQXtxjDnpyD+dk/zXhGHM2e+3VDlHbLXfok+ZewshTJ9Tq+J0wmrBtpIVRROkB++zrC7KMNd1OlGBrUP0qjM2uJeDGykoZ05bt5R3Z3C5zPqfDK6z+Mx6ilNn389vGsHmtjuG67db0mkF1rHjR4gl3XIw7+XPHyKa98n5nIu+XB6CmtDT3xXsvNTfoidwMJyv8xl78tIOC/QcFhtEHSu0KslVdbSDi2gh1jWipLL45oSYOEPTv8pSS7vf/Lyz/UP2Fg6hvhQpN52YKmv1YigUQzEvvl79QnxKyzeDptBGTtQr5HPIV57jBBEIA4/5PJ3odNechbVNWWfqmjww3ovPXhcTjRAHQu8OgPBGkALGD5PXXu8RE3c+lCxNis7+tFUnesu++7nGYv7FV/ptFGKuhPqS7o/JHrVmw7qTibOc2sL4xKR/XoLmYSIz9TlqgweRzK+ZevKoAxV0LoxYLWy/a3CGl+we3JqvaV5x9lyTjYdkAiy3pez9D2f5dhlbHQMxb+gJhcXmior1nWKczKAr0f14SXZunsrfbNPp/dNWavP1xxUJNCdgNWUhq4MBvlzFxkxLX+wlderr2Q0UfF3Y8Ah+Y+ytNX+Cof1NpREFGkrqG/ESTU+X5IbEhjOfoKmHBMcrK5sjxQX85PkhzRePRrgvhZZiOzU5+rfAH3a2ZN62NWuyCO17Gd7Vq5G/Uazlo8XugtJ9F92wK68xHL4T7xsnEiQb9g7syyVl+/5cNt2YwsFw1G0SNs/gCDO672gxN6SR3+yTM1rRI2BF8oS5H4IBhObzZNvKK2LEbw5nd2dmMy5HEiK6vfRqhkXLqu3Imc3JI8vFgY16VwV9+/askibeQtwKuUwtjx8BpipIl1L7YEWTwTNMNm9kvRB2wdSs6ab4rZU2+kgDy3Q7s4JmIqvoj6XCoe7if5A82FohjDWQfWz5gXkzRsHXTspew0NuKe5ThMOVdUrZYtqUgDjZMd2haaoy+jo06phv3bjZO9gKc2NhvhdbMyojScDXBnPkx+mpvg5lCjgYFeN7ZTKaSgPHTYq7NEaz8QmYim5wsD4C0p3jpKiVn+eUOEEqKMpoK7ZcO2FuhU1mVPDtPMmsmPPwld00NAyl7UEC2dO3UM+eVCKw4Vh7OqeGms/Ymmm//OuunqmTjw9tAkYBQR77gGRgDQZ5ez8Jdei4pC8AujfyKaSy1SVD817PoLEnhN0v9laOc2iCkYxYl0aiTxwYO9ztjzobKjpIchENNwKQ0FGjx8V1gOgDfwEhQIHuONWOlb9YRX5Fz982yEo42uXKXjhs33hbjJV9iyn9eo25Tajsu0ecjjS2mvxx42G0+Gtpfe3FcViHcZ5dq7H5Co6e2Fevn//VmH8fcAHQLMrhnQ4+Oa38CyXRupRCJXlLVelm4zQwkq16SQ4/xlp0VXeJu/XeuB26OvLosfIJ66zROpxT5vI4tPWZXefciiejGuTYwTL4zzw3bnTxY+ilwYyM3SXQND/h41iCnrHnDu3Axcc9+gW4jvuxo+7vKeHda8sOXk2k8r9feVGD+7b+1AIqU6NNc3Mt47sMG5/2hIjRC5fpgumt3E1OGEfGjS8rVemCB67CdgeQNyvi8PpQudoBz0hwEfnovVuwjo88usx3Q42WlqwrES7eQ0+Lo4s1gPy/h+aAjiPWdW72zj4rbjw0sZBXWVxIObmEXH23pLb/wCAzg9iw4QczlriFHwMhU+Ho7DsDCnaX6Vd9OS+vRVkZCIRAsh02T/TJUWrrGYJstyc6/1wj6YTs8wV0OuoRzINiuQ69W56o+pecc478HNax9qa2GRzrpLqCb2jagSzdBx7nGO8ePmZWwjBSE4uZbm1uz9EJUPLaEkMizqfB4QWvQhimtD3JmaxtcgflcaZHXzOm6o2o/NzvOPa6bCMuTjvI98/j6uNUZ+jvDKaSD9CGWlF/YRdx398FQp85elC0fjH9TaOc1esOlfj9VGdwuoHA/QjBGIbgmfXFdbLkzCK/qw4+MlytmATzb5ARDFVqcpwYVReacDj2EJBVU2cR0oXyuO5X9YNcUSXHE5jVYY1plr+XyQZU9U6CH1Kk/zBk8PhpmuJ04KVn1kuS4u64G606sR32JOiPSDFUw+y5c7XelcXix1ReNEL/Zyt3whRJEt2/w+2q0HrbVZEb+tKHaoEkSBjYPgkKEbI6Q8L+gglAa2X48C7I9+TdEwelJ7iX0WJyHm20tDBC4VV0q4EgeLEdGi6Ib9Oawufe2f7DFFHV0xoe0ERc65me1mU/tSraN05HXDwOyy2StOGH+q5Ld/2b8KwqrhdT9c56uKyJ4KrOZ9wWAnl7SGbb0cF36VK3qsC46bykH9B+FQf/9Hg7ijlaFM/CLqxxcg+VI9283g1kiC3Z6J2uu23t1r6bN9QhNU2yR9rdejj1HXv+1HtAETvh1pjCVYUSieomDya1aihGbLa5VGKd0pd4H5NdEEwAbrsSBO+82BZ06ex905mbqintUfbTxjyN6rsIXMeoYy1hCOYy6ABBr2jNAty/nXbMGVmMixqg4BAo+Ai9cnbFikKz7yR21JBOaKX01iazuJQ9qjC9w/JDRpGrLbCxcj4g0eA64dDVF2hKKtUNn1WK7pjoQJ9MKzWz5WShPXjLf6SrtCyfu4CvMEKXUzbRCoN6gdHit2tZCv9LPgcSmJb1qhzXwubSzEtSbHLxtx/TyK+7GKisnxw3pc1d4JTmtWuCrp7GImPfRn/tW21lBNZ+cvVpCJ2zHeySznUPrvxvHN6wpRjU67KdlAWSF2kyI8/Ibccp4TJooTVIJlDMTZuNvGrfHKLRrKUsjaFnAWsA6GMbatfc2wQFbXEoRTePxNnXEIbniWaEdJ+3ipdWv8TPg5D/4Hgpl4JNG8/xGG1P/WdrE6WOFrqjVVyPOBamDN/DW2qnkBptLxQllRQDA8BxF08sQxu7a1b9psofc3z9VPvXbgyN3eXEe/2/6huld8vcQxREWNSfoF2csZsRfTpcOX9iziJbyoZMBL0CfKa7ow9G9i4jmJDbovY9yLD4cXX2n0qvTkn2ot+x9hX6EIMzKobRjV8RTr8vwa5AIbNciWIY1LbaSoLGTriZBLKSuv66r5tGtzvZjCUVO5pMqASFOxHaAzepw8/+5KRz9tLTpf5opiO6kxudRpnCxDRGggqmKJAOguWMKGiii8BlMqIXJlo6l1mB1WWI31r+4k/dFyl7YSWFwWLcYd26SJ6MzNZSUgd//fNMgGM2tRKGe3Jn6iGqLxrTDxF7+BF2SqmvfNKmWfZw3OLT2oyBT3kbLziepZ6dgzRRJ4TuiUfrL1XgZS8atexrEuEwD71CihD1BPx8FdGR8/ZWDbOE6ttqcHEd8CSLURVqd/d7doByHwYsax6/AFwV+oFhnlBDsg8Nl1/dWnu4hvFOqrtCEiTn/RMDWFDdZHXfVUjs1ErjhxLswR1jMxSiG9NUSHaMOD4rnTrCyH1TD5ZLiWndAsxXLDnWZOdel/Mx3LCwmS8+OinBL0Zo3ivgFi2CDkkVgMHraN8IGbpahC2TuSz+VlGSB92X6MsC1LPCNDk6ydKeENhRr39WPwBjHDD03RtRiYL/2ROat34lv4vhyvSmaQK9K6ZQoIe2LTzRPtJNIFD/cQqHygBYkH0oouuH6ZRWHRFfFZEbU0c0Wc74h//WBkQyz8nRsTQq5GOWuL6w7hbO7qDkD1mlUOa56Hg3IM3FaQzfBxRbfo1MVvK5a0rlj0/ZWeSsspmbC3N1ZYaUvqxrRZy3nbPlKfFndPpM54iTh42eXHQkonLkNh3zrodEOg6gRnpPp0/ZDkyUbfEGAYDKhmlo8l5i14wljS9J/hA30UB3nDUtUQmCz5uB+w+qcLzfuB6MA1NAKYscx3ZZr7XDyyYl1jXEKyIHK/t/TfxFwrT4sW0XkSBXU4/JkUdWN+55+85GkTpPj3/64Y+2y9c1GCpZYllfFVv4PsYrD1sSG5OdVeuq7jcwbsBD/RX1QWU7f06nvDyEmFJz/K6hewETj/jThH4CBCdnQbkosKNJ3y6YUGf7stCoZhjJwYyiX0UfwUfTGdEYuD1tQqE7N12h8VVzbvoqqEcsKPpOH42Kp2Kng39omZYybAzP4+VI28WgegM1lFb4PHZTUXOie0Dgug060ZzLRa/F6dhqu19nC/rIubT3E0rK0a4V3sir8s91+gDhP/Ba4ZyEZTmmabr76y68aq02Vb20oEWhlPkhaL9IttPL/srBcgRtK5ptmrWrbdJZ7COo1vEQ8yL4mH2U2f7UbVewuI3cn0NaLqdP7wbYfWpPrbA9iAau9HyUkGrqs6ANRAoVqhI5vG3wjfsc0DsYbafMaeae8lgc+E69dwtGTpGrIcmH9wcuPb/7v3H8iFMHgH52NevpY32Fggbxsfway0FKLz4tAtdunMa5lw+AgabO8nNa1rDcascY8cu8tiOcKT3vuXUfUO5oSsq6mvm+ZFzSjosIYLUP37Byq50UjTqlovSMQXPaG1czl27N/xY+1Jv+Z5FAPEuuC2/ii3WTnTc9a5D3yP7mcZ+iN/wAU1o/vSdMIEyvLxqbBSWQX3mcXOrs6CwUMtv+mCWnUom6bmEr8yFSfCOabjrREjbOpu9W/IiYTWLxVZHPvzt9OEWZF0bWy1VAbp1rqzi4RznPNup+BJecGunW/s/hgVF4Wj2FoqCU9E1jojaGSr+IiDqN9Jm0Y3fdDnA4I7eiknB+qBWx6+aPGHiLTWqyTug+c8yYTO7dZ7pnG6FrDlX+0IkPkv60L1Wv6Nrnlsp/dn9ktFuTpul6RM7nvvJV2OFlcpObIqO4leX+vBmiW7qQ9/RFS+4U1X/VRW4FtKhGl2seR5JJFJabvmZNqmvYw8JorFJgLcFXwjJb8d59ei+clgmitoLKz+E44DzlDj+Ij3RdJt4NMfoqS8E7N+FVaZcu4y1cLafyNaWeZjUaTn8qJtWUJOwjIliNAJTy5+DQS0Gl5AFt3jfX1YnDmJytXTl00Y6eb6bj7IT5WdboaCZJ3+9hJ+QOgQ3ETSPcVB3VF+IPDgmWf/Nxwa+8IHOThOsqx862Zp/WBRTkIPFqidFo9QB1UgUiyW6Qc5TuYLEtSGCBuGbEgkKK/hxwzDNW7IdfLPwZWFwgi+iZvFrtRPZ/813RoWpRHbN9eq0DNbRwxhQdBfC6ar/CiJcgyh89Y2FbP7mNWSlcX42hWVYnwi1rfiBfdsl03xYUgbotuLkkMkXqoDInFoENEf9Hh1SFX088B2PedS9Oej+XWonJ0nyW/qvZOS9GxuVC6unzAeg9vlRtMHRdOlYOFM96D2lRjtYxjBuj4PAn9VavVPfIYTFPpu4dRY6VRd01/asy6MTOBCeq/ZY7CYuz/hiisYtasn32o21rqq6mu63YtoZyihLdnGDcOb6eT+EMqGCL8r20GIN0mS9UXfiVdjIlfDg8oDM+BMcDoih3SkHOqzYiLeUSt+YU9QEY/6+fvR1tdolpInzmJvZM9TsRbZb/tF577SyziMY33mZUbgwLQizZ6Td6elZIaDuPYBu/Kqu/YchMX7ehXQbcKPfLm6denGAryNCUIPxfBohEAfEao7zhSqPyr3bzy+RQVf/MfFynJJtRDpvahv8nVxNVJM8VLVqrLW8E9J2gnXmH8jW1C9Vrau8IrrIVP/Wd0g0Lc9qX62n60yyJdtgZl6EHfJvoP4qdQW++mvxIZed8o1thgwOdx5hMryfdTXnTd0vijx5kekui4eFio9aGNaDNlSHKPsRLlO69C4Fu4WXn4bSwzOmDC3/O2mp/1CYmAKu7+GFEqXdh40WkTxP+6Hsdzg8rQZkm6EN77W9p76xSBJQHU7Ch5UckbinAR9+xTSdIK5s0ym24dwJOHovwL0SPOBDzD6mYwIcdYtwJoHQcS+h76X54RQGVsCXZYQy9wfUpfnQloFbKeZPuRGFKi8c7kxv/TM1xQ1MKLDjBkG/4QI+7Uo/BP1jKZlnW53c2ZFyi6kNu0FBCmWgnv8wnj2qju6jzR5fP94BdYaLBBggwuX/IFtXhj4VjSG+M11oWi0icBirzb430AZJv6bjw62QWMKwsBeDNg2kKZ8ri+bIYOyiC8f4kt45YSKU6wlFLVPmZZqwjATl/Ts9/yNjnXhkckTy9B0Mf+ix+NvA1Ak8Gss8YHKHBvn/oU8/ZL/9cX5OpJKItroF8duHCMtDGGHRYeJGKMwBEtbF9qemopNG5+Do+cbqS3fnPv2hqWGMxzKwIsNIGzJTOcZmnrkDHR+qW4ERErjIszehlm3hTGBseuvwYSg8yaYbHXlkw/4j+t4p7V3s2fZ/0FfV/FKKzTFSz5s/4O+gAwR1RmV/x/ujrs5/l/tKb7BV/1fBPr3wSNftvz690EYHEK5/0HZ/hLysc+35YXY0H9/BVsUgG/c/35FYOr/gAw9OHTW2Vb9O4xB/+e/g1Vel9V/t4Ch/wf77+vx+u9Q+f9d4G8g0t9lgXG/2PzFeP/dxd/PCFRn/13TrfUqoYURgtb/7eHMTLX0f8n/HiTu9vzfxz57Vr8GFerGF/MQ/4O8C/G+mHTsujzdwHbS4PPrdnf/fX6t4gn8WPdx+f7LgHdSp3GnxEneGeNab/U4vH9Pxm0b+/cDHfgDE6dtuYz7kLFj954V/WZ5Ee/d9v87w6erS/DNbZzeo/E6vTfw/lrUV/4+EvN3wc//PQr93yPgVPEW/w/6+ffrC5GH90nY2mN064RkoRzBumu2W3Fu+f6kiO//WJr9hOB4gLI5/f5bvpLBmZ6FDfqdZfiZRWgANITJ8GhP8h1FvSUX+/t8v1CGySpCzF+xfchB86fkWlGqTOf+7BzfzR/mU8LMp5bs8Jmql2prSxkEKsMrk7jdkbyum7yDshAmyiOwcRGf61EfHGiy7HY2ux71tyfBGiTHM8Hg+mqe4s8DnHoqUhh+PfgHQzouAvgizSaqftluv/QIgTxkphYJyCFlt0M9L5+Sfi8/7Ll+ExojJH9rRJVwNwKgBNNf58iFh8SEdeuldchJqmARQQS3BHK8ESoTTKpNpNQJoPgnQTmuusyBAv5Kh+9SAzM/nV+3zJVj/HVqhEY2ZBU4fLTCTgboT1V2Rze0H+ngv0J54qo8aEn7tC5ymMLLCRbhhbLpKRDJx9H1D5+baYv0LJqQVzKIGqt/OdEH024L0pFpS+GrAND0nqDIbg3gA+U9N31OeXZGFY17jsTi9CkDBCqk0SIVrgSxDdhVtRWNX5O8Varc35KmXirA8C9NDREr0YrXSWmmMSUV5d3FB/ELuUxfBfsrYfpjDSl248MLjUYN5Uo2h7n2h3Zb1CwCUEWM79ftqapP6HGYfJqd5Ysl1H/Ptc8/krFFofjA8ck3osUcVenUjLNN+o8WxeSvUf5HenErt7w7LlDjgAlsWFB1umGoWaaWWZv/bT0QmRG5XtWY6ir3kZcjiBPMUHmWPzqkIfUnuYowO5z7ZcLG3+zQ+GUveYD+Tf3LwP63Ll7Pmzs/zbxqGdFyLG/2zUd0+cWBu7haSd2xwH55NBo9YCY1yYxncPsKP3EWvCoUuUKfAuu4PNvi0gsJKvU0tWECfoCcMIn43fyibZK7j5P7r7uyhNVsLGH8rKqv9Wf+twMQ2TzD5lKrEGY+GVIWWE7D+ZvcuZfDMGlfd6zOngomv7pBt8f+UHdpLT+Dz+0UKewnG3Jo7bVCO9M9WHslcif8hNlZ14tR9CqCqFgv69uv9/xNiFxP+vgcpwSK7Ewio0dOQen58NF5bf4az3QgsGeYo+maFh5qPL8ge9VCW/K8tr7mqXpYp0WNM3KSXWampYuxaHGuzfji9iwVk4/Md7StrHN6jnf7VPqUv8WW1ybkpbOqv24s/vDA93UdHT3pIui6zrO8nochOFPqWSjIcsrvpxTw4sZf0llzyN9Iz+DnhEtRMWn0cnbblJiSO0vWmfoP/zNj8fzUZ3pZf2h/Y5blZTE92N2b9yBqE0KtKKDvzH443pJ4ybrlSce39KMIDQg9PMiqkrGdYVMrZAe7/u60HLH+6pc4Xf3mNloIw4Y6pQnz0fN0jAxdMPl2wnT6iktq5pC640Wlx2BwRTfSijq4bXojDhAyDwFRE9wf0sG/58KW1gYGRNOizws1szlkbJC72GJgh1SwycHPy5ziuvVoa8QzdBmemUPTNv2eX2nMVb91SnwGXUP3EYYbWfacalnUsmvKnDGfsJMJna3zzV/55xko4q8ndamtC4TFWBB/+YpHQNTKGEif50eIWAHqM9KSCeCd/Rq81ywdYuNZp+oD49lTwMi1yP0AgAyum9h3DAK0/8Dm328bxJOrWE5yJfv+CayXfPxxs+edwNDuGnndouszYpjBLtVlJS/bvJSZYNV3oePdUCEwPqGqUooGBui1ffWsIItcNincf5VfhC2cPxZmnAd0jtJk40CzmRSRmX7m3/DIy/lB0EUHdc3Hsf5LUOiE4NOgQCG+7MWc7nkU/1+WrmLBUSWK/hIaYBkI7i473N35+kf1vN3M9HQCVVfOuSqabCEwIAwPXR0nc+RXHCfra7GL9vLpo0nSmedtFrbl3yKOd97w2lYvonSP13mpnLIbJQcSqgL+oC1vXU9aBnEpmKbeGWVECBw9lIZYIR/tsoGOiRJkD0z1+dt4LHlJcRPWPwJcSdt+mGp1sb0IJ/OZR8iY/DiQ0ffMxcVsmb+1f//1Aj711xgXr1pdIVIqhikw+iIYMewEP7nPHsn/YlnWX9mIGKTUYpFnSbcfa0xNi9b1LMtItCzppBXknpMEdW5k5zz+OtM07/+g01qkGfiX38V+qvKcYjqipzjXUw6Ry2vwz5uzU9DPC603r17fNBBdc6/+dka1TCmu3WLFVWC7z6T052EY2KSAsG/VD0bPTq+FJL7x10hoAz/pqG2vWdXc0lVNhfxoGUp+KPAWV4yigYt+vlX2UoBrFBUm+H0xkw+sX+n5nDet8iHrz5ejhT31WmcM/mY7izcYmUU/sDg2gc67LB0Bct6UXx3dIvtDYn8391nc4G+9IcD4oYWFGSDtHtEMOv/lkKRRf2b0N1Kg+BUGgHocyR3JUmeXFI+bENWOeDnl4k2PaVfPnK69/Q16bWcW+uW3trHuBi0Sk2cWPTcIvpjp9U3b0GtOwLA3bsdd9DBkLjBkuYZLxICUhsMiLfCHnZPGpmd1xvi9ls2oscXwVRrlwaojRftzBLYxuH+7rDIZJU4GitUCr2sROPOviobM/wLjNgi4J/fuBxY4uUgAdzxWsfkpX2m2LuQzsH+jm5m/VFxxDuzTnZ6rT4vyt5m2pw2qlr5UL2H08vL6PcvHqs3QHG+ecgJhc7soEV+W0tCm2+9fqfpufYwjiRaCRmJw1DMqEpLPtztz6gZ1L68DFaIiB1OXu6V2x+4rydbXM8lbMAwdO0AJz6HrgliF1refbfecv+IwvqgTQpjE0psBQVXe5fe6EDAEUS6mZv2/RtcXdIGXIR2DxPQiEGUX8V4W+SpbGj7nfiurpoQf263N5kvYaMU9CN4UZ7elZA+HpWNesakHu0G2v7/hgkdjwKiB8DrTiJxFKjXh/xXgG3QAgmcaCuK8K9SjIw9J7s7uKuf1m9ZWHPJa/1GyGtAao38LcBvWBzfwp2SZSeFQ8LRxU2HsJ0+pRCr0i+oIYW5Ff6RlsZwgiyDsWyv2QqCz4edHDHPu2rZmFf0ZrUwNnhEC5rczPgSpxr3MMMfmGUb0tPg3n0pzvdcxx6lRNQD7ExeD6A1FHC1fyep2J/oiOsDabRpz0ANr3WBgMYmlV0dW2bjCxZGHyx4R/taAZE+yGCIukg0elspXTE3G2pm9IpLz/7ptgv8VFGZz0GSuknhJTYyxamvHXB6EXJ5M7b2DUJtBuKWuFStDrMPMpF6eU5rk2SFkcysKeGsSHCvIUh6frID4hW44j5NpT7Z2TPgzCk356LrLIYw43GMe/D/7dQJZxL82IaD5GnitMp42IbYlMXH9UnzRhGSgGf2w69Pm3G1KUKa1UvCU/b1ZZs6Itb/9hh8y28W5AzNCDR892HJJNef6pwYEuO4IsdadfJWPn1bsC/Oye+aiYkx/CwDDB2ALOiYvsfJreEjsXR+DdIvrTQ0RgQfHBNRSppNuaZMm6NJqXjNixX+6e4aKfVSI5it7rgB/cRFP0+wsO0bJRyv/AgedSJPnNAZae/fP+gzL95pw3BoGd7L1l/j/8oe4pYKgwGGQv8nERu/106rANd12NAifmvZVs5PmVnr7OlKAARDTwwFnLltW9UvNPlaVjE4jHN36g27FngfIaP+C/HZEdy851ub0n2nHQyv8S91/wLYTDkNtdOxKX51KvPmFZRkPFCEDemiYZyd/oY5BQuImg4L6RQWJBC3LTVbocTxm9fwU/V2jbY43LDqRvx/4WSccbbsIEcgktSJBWqBbRgn+ETWWx5Yb9rU7yn6SWqQavSlTnVVDWTIvRAfSgB7737Yx6f8ybZmz+XO0qBejBFVOXRWNlkVFGAiEGAYTsNDKlvGaIzcLFIrQcmLohjKX/G6SAimGx6+s3kmPpjdo9+RQ0go3Tg4j2XXnikp27gTKTJHY/T65thVO9EseurvjdS4GNt5P87hs6TQtxs1BgxpuHfk1TcLWsmZrju0yYYPqhA82CGuO1roNlvC9jEETV1v7HYZvA0vPXxlxMyxHVrfTCnblyzlHiiSBPYYMgZFZAy+D+ZXKkn8WkBvwqOLqIGNZVZ5NBBjl5U4gcgG/rPQAudjohCulrqOxJzMgcof7T5ny33C0ruz99LoF9VPurpNsIlFSo3qVSlEH059RpVDYh6KuC4UMFzCnb2e39Y/70CZqVZvhxBQpKK/teSIaM5s5+UbFvtJxrG/pA8aH0n8l8iT2t4y13OQYcirO/7OTUf+6hiARdpbyBohqvdv5BsSfBmYXKD1AkVc01tOnpYE1kZqLOyoQfgM/n+Oim66PeXbdfOUikH/sR0by4MH+Yp31DAMbQlc5x8vlkkoFrforY4QqQq4WiR0jOuVjyRV1QqG39TciBbMxBUk6OYhEOSHek1cbNgfQTTVZyzRtsXw870mvB6gDyXZ5quLXh7H76aVpuNcVV5SPu+P18RcAWxlWXgtr+331h7RKgFCx37+09V/yjemGzg2x7cJmLXYaaH/hVTkIaohjjUPrKtQpE/b5Kwi+exRN0phn3S7vAkHtEGCshZ+667mufl/PMZgNCUPUgW0aePHf3FE9YRojuT+QhAnf9KPQCqZICHj40USDI6zg/XNK7OxIcuRPCygdCPRWNY4ocjGe01Z8fikn4IO/JKdwzmix0PJaH2yVGSE9j+hi+S7zcL5PMIlh6yyif0Lr58e/3qIBGomG/mvSv36o90H3GT28an6/sruCKkM/NMf+EnASjA3iJXCYJKiE2Z5XiQ7IHn8pPhT3uv/D0aWasKOJ4W6l2rPf9R8w17E3Cj26WdApRWsyabs/cQGVVF+VGaRfPinYvorNKYDaVLIa9tz/UooFKfzP5cVPQl9FiP2GcxxoExiPgK9lxUPJ1AfPbv1tzzSi3XjUxCFVeEW+7fMpXTg7hKuqbMwQi2D9v9uoYALvN374sF90Zh0Z6zeMEPDGWEUGeKkW2/C+Cd1p1sLFKmuT4PegIkqNXsg+8Ke8P6vl6D+1gRe2Nr+3YxpKtUv/Vr3TuEKBASIBgGmmONmmaaCU+oN5e0fxD9hPylGWiX6Pa0ozV2bsS4xvaC0+V9AQ5JxSjpV9P4ouslekF193a67SifQwxSrC92GV37kfcdZABO4jyEXxW1FekFupfSJpiphYnxZ5PvjWzkHhwMGWx5EFCJlzdhJPqkkIdxJNIq8tz9NZmXf8jF5WYucpgJySFwzWPKI49XX79JxfZDBbs5BYUJq6R7JLL2Jp/AvptzPp4rbwo9wYH2mt7SlskxZTvhuBEwDCcCRhwy6yzNPVJ0y4RQ9Dohl0LAvPq47fbMhNlgCHJhEYlMuxY9tqNwCqK42DWltUfhnrrjCZgxJ7jDyh0OseYJ+PNrGNitGQxfaaFabOnCUwSbVbAdoTUkvB+N56BC75yt22uhxJuxhq9Vw4UopovbBKZmVv7sk6TJwJU1o1W+87mf35PY+5mdKg63HIUakJYtTRE0DLBg2uLaMIRW3ldY+zD6ibof0pfqSylJBebXHawri/WSLXbFCHRfMcp2GlOmAaX5Kp421zWzqVMIbq3XcvDOIXy3eRD03+2431Mv+w3/tn/Jv0+rKcZwtlN/b/5kI9H3rAbyqDwj7rAT1GD/WFMAc+acGVWNbFULufZtyCro/bLz/7x/TBKqXl+xkxsjkFRbhR+6CSr1n3psmWZU3t/P0NOVJwYWpVjq9vKp+G4u1vGl1e0PJTdFe574r9dk+WQa5rN44H6+lad1EYXswkw+O41bXUAjvpoECB1hXv0/5xtbUMH321rpeBswnxT+2sZKxdrqVaMkmRB92tBEITLPWqTI9Fcy3+mdo7UGnlIygrvsnScSg4U8sorDDIdnp1Wmt5+ZqAWnUSTqKjgW2+PnuuWInK/iVbY+l8xVk0K/d9QXlyxRL7jnVHx+Mja4T+hCScL14kvswccxq2jYQKq5tOq0OYfxW5yOklz2FrY1l7FFU77Lwvq6MPCrjohMhExzvd+STA5PyypbHoKUS9+ClOOAVu8OH9ozj/+FkIxnzdOJrCsnJaeAIvp1/aAxaOQEJGDJzJUsbjEKblelexS8ISUNFeEMnyR9NWxYytMCO2VL+GwI0dN/lKpt23+wcG45C5ldy3KfaT6/ymq6/4jjQO7Rr8GEMCkVCNiM02S+SPW5KimFrvgVRcKE+OJTcoecL+7ElsJ2JTw/JlKNBXmzfZEMEArAOgWrM5QszaMMFUotVQn0NUUTjQ7+W1MQYaKUdfKOhaFFnPYzo1fH3KxRAPJ7s36aYQYrruFwFwp/1/aMWiycQwVjZVWlYeIvKPqapucZ7g3mnjqMYI+U4rj6VHsb+kEjOBecMOBJSIHuxIw3xZ6Gi7ieNT7XwV2ktXy66yd/UZ0i9CE1JoxvD0/qvnmOuq0KLVB54pyIHHyTgq53/rwuf41GjOuI3E5WkPT9+aW7LLBZCP6AP4tVnbN9C183hdiJtoPd4gVJgLXU00ZREY6kVRAKF/4R2mCO3xbNQdrVi89fquMu8HsZ6ty+myEM32OFj7+4W9FNu9B6qQOhABoXC0wKAXj1r9zN5q39Y4188DulcjnBYU/x46hD/IQ/xzJxyp/T9GofnrLkR1STm0mX9ZLNLNGoqu8by5pHiBuglNi4CoWrmn7fPZLCZWTupzxDvPjnByd5Ju4NjpgPvzxxHOr0zgkwQ6zFTEre/LhhJyDELxReDHVfytiiagrz2gr+Prsl2WoyHqHzR12e5atAvuzG+inehZvdAeJwmC2IuP/495tmfgJkiGEZWkioGPNUxj8qBoTla1j8aWFw8xHFPwRI/S/qc3J8RAmR4qobqsLB4kXzcW1e1pgWXt3CIQrEVSVO7RSe+eGK4wUZUGd5wSlvHPlzVI+V9eK0Wpi/dkArsAWdRRimBBSpnjduVezc5dX+NDH5gVCJmSo6RuPs7OkylJ1B8/z8547CZXcfgy3Z3wYFRvFCrH4XMRWk+2ZI4EfbXhQ/YWQgGf0Gw8Ep06nwRLB70WG7qM361uUdjazkt+V6zzPp07c+a8KTFIVk4QFVj38uhJFR6+WwXZmSvc4jrxQO5A4lGOMW3euvRaVa0YpZ4sSh7YzRk6C7U0J7W/0R8J74MEHH11ayTQH34VbfeuSgnia5WyfO7iOCiLps30kpbIVfeuF3myFO/o4b/Q2hyQoLb1KKr3Cn+vyfrhQQuW1nO8lbXG5xtzTMxJ4vco8j0IjKQqPoL9sjx30vWXrWH0ig2fj7QCQ5hbh01/2UltxU9a7k2D12BPD01h9JWT2zWkmV2hYeA7Nix+OpJZHPMj38leimwoDBemY9RaiLcgwINxYiR57pHWwzWaVPDVNt/71Tlx4L6Z5tWO4s/r5JlzGEEbN/T1xFffPqX6LSHcqntfkunVWbHdWpa/8Bbe9RUemFg2Tf/j1tlNAbocz6arcEbM955NW3SyL99vVIFMA8sTYoZwfy/RLEWg5R/c8cCJOf+EOtKRnnBrnL19673E9/9XDyAjARTMPsX5oDCT+9qlFzLLb5ExI1cG8POWv+7PwWoN+x48SyXc8CjWqCh0zY6qYg4vhI/aI7cNdAGBG34ZrBoaHMYrtJVBxeb6jQxdcKVwr3oPXqEDTqSLgyOuU7gyS7MUf8pHbguFjmaE7CM63o2C/v2tIAaRxh0ArDlJfAM18yWBKEWmNpyaw7L6Adag4r+v7kJ9vbmxRLFWn+Qnttr7sEZwRtLbJ6N3NQBIBONUun7x40zWq1Euqt6rkWeqALMsf6uZdCb03OykOj2/mfalSIfchRslXnuy5ST821PVfRkasLXJ9TLhKQCCV1voQ5FAqe4Rzd20XYnYn8kNa8m/SvPPrSe5ASJI5DQ92jhzsYVZ9awT8Zn9kdUOlHHmesdZWmRqzBA7YaPZC2xs0Aj5KfvBgztTkJXlEZBzIOP3A9ONMEZzBv50MicJZUOJ6kwrtDpOD2H5C1mc8P2oNBIMTg4QYCPmFEGHZg6zEj0F122lNyN7QkdQCvFXRNRICrDydb9v+1/ekKqR9MriyjS7xsRqT/4JNGOtQSitSZ/pLpad5MIThfHAAoZ5ciXQvWi3fK+pZQsLvvNXM4Houh7JA3CH7nToDBMRytx+CRnr4QWkYtksgEFnF1l1JVVM2aGnDbARLApTOA/4UVpXY+gwrFF4at0/MlaayMfJEZkiD6fV9MCkbZSkhq2IvH4Q/iZCPBo4G4hCE7x0cRWe3fUph4mNR3qVQYxpV16Ojz5BaL/4VjYuyA6zzGD8ymbMja7tF/3lhbEEJCH8acJ8j7T2E1nbYja+ncyRopcFZLooQoTBNRKfDET3OWP7iVg7MpqMOxHkq2Jc3h4tDS0eUxlwTYoZeC997foe6Azp1/ZPK9ZUFBLTUjYHbOHkMlrqQqPPAmFHQBil7ayUet2Zbszs2UdWqL5UeHVtjx2g6TDWHwCxyV8d9CedlVeYuU1wAKmzXwbD7n7C6LJn6jVzck3hvnwLPPkv3Pf8pY7oHiFDcyfd/IhqhZVecCLP4ZOjEhxfyNl4/c4P3Qmzf2OWPM+1W7E2s0/+Im2gqbwi/O2IutlfKbALEUP3w+8sKMvh1BNoXwPWsnFKAugR1mrha3Y6kFMbu7C6pnl95H2jXnYGQTCejeQ0pJA5t/bSL39ZIEPytNcKWrU1lY3vtzFLjx2DYcY9kJ8PemBD49X41z9rd4DYlZnh8lb5RTkg1yDQj/U3V3TAXgI/rckrsed+pvXi3AsxbISoexZaPrSq41DxP+Rv51+pNC5oVgnOrUm7LCVWah+V/KNchfjl/49TA8mNbPvamV9KQCzZEX1gjangJ/MJLvKv7Tqmpq8pDRDdSvKP1UFPBpP8ZVtc7q849Fc89Uak1pZ+GljDtbhy37Mo7YiEusYme+y+JvZjp0fOdiCP4GRpfuIfMjmN/vQBM3/vWeIn7cX8XCXDz54LB1HzHIGSWfAcEZW9tFPW3XVUMv4a2aAx9BdiAHENRYJptL9RvqHpNEP03IlZVRdCQUa6wdsP15jGt/0elTRYjPwnkZ+DXdsVXt1En4V/vSL0bKVPd2LxOm/bVIdTCn3eG/o1zoCiiornHMu1N8A2cx2Vjest2N9svlfy/irjUkeSP7/lGJRVDY/w5+4gaEnrWWRMBOBpxv1XpUOiAppJx1hs2fGUXT3ltAbOGSgW/vHwzlQd6amaj36lJig1P/E/OEgF+L4fEO3IsZXG9M/xl6pXjVg3jFaE+uV7N93VfZ79N+tZokaGplIjch+Luq+RQeKQVUo8i0Hgvg/4F3UFeqxTwOmKC2oAs76mWJBO45bmbxPiEaE//TuL33bZCT30Q05s5Xgq7QrfGDACd0fh51vITfg1/u8ySXKanb2bJ0Mso2kso0BZinBQEKkYVcQ97T5bBYDSPWQmvTdX/L4bIlHML8x7CQdtiot3Xxzv6mW8fUC+N2AL5TvJSvGsMJWfm01yUxylCYSw05ptTUAe1velis8/oYf9l19VPG8AYeAAtxecWbIGzEXLi8S1U9cNHR8x3o60quIGRjrLvyFwqbUyo1VCp4s90RHqXsMU2UeFxkqxqoEdnel8iY6Qqiwl0F+yldlodBdWJWz4JxRJBF/UGBR6PgZ8ssAv1gP2VN9yxO61A2EHdXYPMdwMDyQbC6rIbM2pN/97yr7XDDermrhl67yqBAipoXvo0X/lO9eWXadj6NFcHTLOKScTOiSr/MXyab1RBCezCRZbZNN8wk2GJeSviEe1QWwXCwxixSYQUuKcfNS+8lmAXYCm6RyLBq8OPkBSfMLSICjaL8ntr372AdzRKfht0y33AB0aYfCfeJPcUzF2rtr+9lnnloZatao5n1b2lDBsJ+Lvpknvryy92H0nMMZggX62GIbA0JRfUWIkN0pNjv5NzHwydzx/HS8ZtPl2OoTCa2QzR8mvO1ZG53GUfVvY45j7iPkHmCnp8mrjAClndJUC4+j2vd2j5pkf4Ae0WMSSVPjpOcVbNALdxw6P3xAmK8eToD1VjuQo/9YATGSeBNltX2DyyeIvxyn8KZcP2/SvUlcFKiPpJ9USe3eshL38OH8MEB+hgK0ni1MZ2qS09mHJw6udJdI0MfrHeD3kPEy06iHzYgKzP9EdANKXlfhUzFRZ384xCwZWiW4n8PQwRwR96LhbYo4bHFhZFMcL+POsOCbbJslx6HXxkpEpUr/z0Sb+knrJa6YdvxaJcO3VQKNe4YDz+OrlTY7lyv1wUw/RAy6i2hFiBAFvmisu5VdeEnxt52I+K5bJ/Qm/IBlYTfLcqOeiIIDr1PZY9hAU1Wh7CSV8iG3sFJih2bbWV9ImAe2tCaPUjhfzV8N4cMlxck3WnvQu2zcapn2/tjd36wfxWAzP7uC9CcfcDYMkm+7GW/Z99Zh3NbvQwpNuFGCE0uHleKnz+YYVMioMXnIiPV+ljnjEz2dLsxIhnQezw2mys/I8f644bXHCqfZYYCFlHXTdE23C+1AVmkZbpXt7+Lrg3sERVSIuIKp0eR1wX+NHJbrfidVFTCrP2mmOPXwfE4RGvJTakiA99I1CFapx/mD7317wsHB/P1DBzUFsehN0DdMV4r/sRhS/twziK3YL0Gz7YzZd3VusYqTolm1JmvGyVcwG+0rebfFZIkMk+bGsvzk2UDscd6s+zTZJPlQdpRgtYa6wrvuS46sd29eTmZJVoIwb3K1Nn6CEnJfAF/npg4OvDbGq4THF/iqDsQgBWX692Q3IXwwz9Ec5bRztcIcpneragJ0webF5pYgTK19A7nTL5L8KjuXju2b9onakk0KzdiA3/tU8G4bVo80A1kmCxZLy/YCIRUCugMVwvFbfB3CBwOejJUpR4A+s8Iovhms+eoSrwDqGcxBrE6XfQJjtCxo1RpRvf06qVAjpOIVmkBwkmeC6qCwezLP1V7vHKu67dPUVn5LEvd9aY7ybpkVZDcIj19YNx7Wn/JD52HFZRcDCCvyD9/MTE0GTBa+fGyKw3UqHvvdpheSaTpGtOLQtMhcS3z51SZfSbak8/eIgIkD6OG3c1uOHyra5WVMYEzkCQPDi6gVsn3gRjK0nmILfYpFa1804CPCl5OyDLWh0uZ5qFGpqht3T/7mH9GgGg6ePZ8O6G2HOehih/hk6xP8rGYAx+m5a1c9QZVRBrK/fU5LsrzLkxWjTzyREnOOLtIX/t7TLV4oXtvY/Z1qL8d/yDHrwZ+hWG/lvQNMub2a0KHGiw+XKDC+Hpr9cxWvCS8F5Weym2J+awgBpIa6+0vsgdsU8qegGVZqbkiEpYVs+Av0thVqxg9IcNXkvQdNh+C5Zqv1CJKpe1jxwfRjgJCSjn3a6bNmxAIRORG/oz1SdOskdrV+71hs3nz2CoqT3agDRJUXZ5/WJEE/m1DVEzJ8nWWkByPPjZfhoZC6VBIusgdpgAsl5/PrFoQvDw/a1aJXvj3YDuXS6GwKL0z95sdLOYKjBD/OpFk6Vs5a1eLGU96LsTCDV8G+opKW39GTFnSuWY3NP/jftzIbQ80gShrlT+1vO5dZpE9g3NkSboo5KKVf4OjpXY//CDRwMbY5KfB7NmFbJLfg8OD5STr72DhUEI67k3Ar61XPKqa+UFv39v6EWUw0gPyJ74+P3y7wW0bVojw+SbJVu7vO3aLVlb98jQpRlnpX02Pr5AwoGA21ZqCxfbxFcLrsGxSq7UopCTp4/dHyjtbKFycRIYm+/SKjV1ODyvZQPM4AroatZh8whS9q4eihn4V+eEo2KyyD6YBdyMaR7U5wjUGTHMOiA/mgaUVhD+b4fFNvf1lg4sP6Mu2sWT56Byhzhh9A3/i87koNaauBkRdhe1DxA2L6Fzcj6MVMSblJ6P+AdBp38ud+6HTctDJfgdcXdYe2BAIv4BKCZg0oCJo5rd6NXwyvc51p7pG5d8sUoG1MlzZdWm7iKASFtkYH5IkcFnVAdD6E3X+hXM3ojGUWUatcNxR2lZul70oF5bhNU8Xt87OdywdeX7p+Xgi5Bzy4J1GTMZxpVS8tf3wYkPf6CaCUw/cxr3wYZKUVzz4T9F+dMWL7EkWqIhKnhLxHUOIis4JvHiOcEz/XWXKeMkUaXY9innKRH11iQ413R5Cc9mKUZajbR3sCCc7f4UgGT6QjCHfR1+pERTs+o0MkoGPRNP/u1mTE5Yl2jX8spOk06jhvOPQWh3bvDDIz8h7TQrhqmFnYniJRTfqyVY8+xr2tLymT7nYas9ZlEeTMBLxmu3HO5FJRu4fHQYV9xXVzwyjFxFzIU/nysmBLbPWyouU8lKvaoOpu31xMoVPACcW9UmWEu0KSusiG4O3pMeH75m4+HHkJ2Os2Xh5uHZL6YeFIyhL7w8QGyz52yk28dqGZawzzboehiq2TngfD02rrqMfY59jkFJYdCqP/WPKMoRPi6sb0rpR8hwNukoZpkVCRZsDY+YQtHo7bkQJ3Ql26BbXLXYukaXv/+CRvwT6iJsx0wb4xCwQxX/ZbzvKv5vWuEB71M2FYPQwyRrJ/jTQgvwEjTi4N9qAM1An9IyQcWHa0nog5DQMyCpowDO4Sw6z581WsuK6LL12GDeYmBHWLF9iP9lmSZvfwPIYj27KlF8xpy5uYf5bIfY2qiioWMEJWGzyaNqaEIFRrU/bdH8OT+IH/1E7y/NYmdK870OdYZA7rV/jPwuapH0MYbWc4t4uKWHHUUkPpj6eabNtKxuW4+JFBpsOpMdP5v3YTusSfWrGTK8DVS+QBc9agA08HiUULBPfMopmHq0nTSqj4vk2bEmPAf0WFAbKvxXa+9/ehc1T/iwNAN+mGwrCodcQKR5FiisBnm+Q9K7A44IiVp1H0nDox4eWz6V116QWyio5EDgnTH0yftLnQ0uliTitcuLFtPVzft8Don0UZev3NhqIuSJJjkibbcJDbgdt1kcphajSyCuIv8Bc06Ne3KLPav2xrEoR4wMU7Aa/HIvz5wut1iI4soWjUhbQu+hwe0m2xh8vTL7nxu0kE3pbOA501F81gAp93bRGCmWGNPDk7r35JnIOhEjxbaKgm5VS9OSm/TjvkXa4kqSVypTurooPz1BOjphMPsyDKCGLbi54n++g90JHC8LSZ5x+0kNS7nOVqICNYZlXbACkwuauWWQoM5x9GVIo+XBrXXlIfvOVrB+HsW5QWo6J88LVz+pZVlT9O/8tPuyXV3UfroTLVfcdgJ7C7IBjiM1uec9qtv4zum3hFO0KFqxt/SWHEOoMY3Xsdpg3IYPeiUL/8r+srfSQnXk6qWOFVlwdUXKKUyhcaAAurCihCz+d7P56B/u2Hb8OUGHVwJzPIc5z9qLa44CASpf20GQP1yQORXcAYQMHhE3rdIzfxOUMM6MQ3z+W7H/ggA9HLj/dExCW/PWg0/Mxl63aCFGJtWsTFbMuRsIIBstH/7gvj9h378FKdQFgSqyReW25e5SX01p1WQk3gKrX5GawKYSlIDYPy9HdGP48/Hj2Ix7KlfzOmLyhbfA1HBtR9znJqe/kFhs9+1COfhblCCYhib7zKZ1e9Jm1JkSepzyh+dbNYLt750dhNRtaKoEP5tq4P+ZACVueJJNpR4aW2aPXo/DOvtvGA1kz4vco1ZQYCshLe+YpeGmKtFAlEoTCP0fRWNY+KbfOuEbrk5tSuyAy/ue17satmhv9dKWk52EShmpOl2ANtZQFmBOFk1Ii0ji79iKBzCuZEtzH8c6lo2S8+hFtzcipEYCnSTxI2CnZyk94l7aPEFhq/HGOxthesPFPVrrycalIpbgvmb4awkA2mlPGyl2/L7VdyUg1BB8bcgVWV2SSuyNeLX7epm99cMZAuW5tEn+Y0TaTS7r8jTZ3xadQ1nFS+e/Ws2gNkBbmAAlSL0Xw8RIA9ZCGsBI9ovO94DMFGBY9jxb2MVwuhGZPR3iTcFlM4MbUHsaOOrZrIxkuVa2Px9XhQ8nB0TSTZAAUPJ7IjDcdeVuuhn+lmEUHYASN4iyQ7UA+Z3PCoc0jAIOXdCaovIQi8Gyz3bTtx98Bb2cB0dzmKvJmt3y9vSTDONqP9eDFgywpXUCey951jiF6YlqI4RwEZpL9eqm/ezjgFb3XO9zJf3I0vhO3/xMjV8WNuPULBVMflbVgaq2/Ccq4bihki8rZ0raAwLbIR8v8tpYFT62HlxqkCv0nPPGDxl6naKRniF7m74tJew7wL520B4jfgN+P0zlzHmt+oubi4TPHTtnSjcE4NAEpyc3RWEqOkvbe6fT06sk7wvLTRPLzqXGVetmOX22i17DTLQV6vET2Yq3bluwy8qeOyc+2PGVdYYL4TebJF/GL8m2lG2Mh4IQ5IMZwKYLHwiWiciRxtSqNxMhK6YFTOXwQM5ptKb4z0+ZPxVHEM91y+0uUBGkvtLT51eD1G7YZYrhaiO0fUwD8JGX/mbOuWFi3iJvXwoi/1nPXbnOGmAmIdRkBkt/EL678QJWfaNiBvhG4GtVoFgzTU5ahnGdWrVrmIpihJVFczfpIUP8sFrVCK4G/GYgxs70xagKmDSpm3MljVp8fJDKtqREccz5vjLIAH4XrPa9JCvCJ6BD3niDlGLb3Z7V8WlC3HizEIureSBKKHwbOaqMmcmcV6yw9bpdX70RhIElRR+DPaaZ/DUl8DJfQXalhpLT9eP40fYHNjvk4wvUzgy1NDVT/WeQLlmSRCaiS3xEQY/UU7KF4hGGA0B8oRuFLGEJv6oWvk99Jx+nDaA9sxZXWf7SpZfk+JmjW2/zBEkvDftOzdQSLf8mxIru4gjriLKBhm6tK9n5gxlTLe/RbsYapD7YBwU/P8YZ1qh6k/4HCBaOG/YVy4y59vH0tzAoiy7vpjCToycs9//QOTa6b562K/Ry2umT0z1UkyvT60IYfLjSxUdh8HV3Rj6ubpMme3cdLakCbHIZHKntgxif8uOtrNYRWmjWAIdm6TZOz3xb6odl8ZVGwuj2eLTr2PQJuv/evR7Cj9Z3/8L3kaKQES+shmf3c9+p84rUhYn9/E/L9vzS7ycbjBh6WVXm9w+kXmbAdJYi3GG8mRaza++aKu63wdjQwvepBzYEyIgKY77ywqBKMdTAqL/9Br4SzU6wcKLmDbFtbdKpuRzyYP8Zk2z+2ZNctn8wJY4Ozxr1xw0imwoQUf0WV/sEedf/4yhVQDVOf7dc+8tfzjmhCtxkF02HOuHlcRmfK8LZ0FdUrVZoWlft+HOiN7KpkTYkOc0zZ1KBErw2U266xGpQc3q8JfHNDVGgt3I56Ngr86171ctyNGdq2eFkEKoAuGOHAKXqnvN8/S8pgQiFZ3zEWpq1Is/QPQhSPYJjSFttdPemWtqFCtPEKhRJ3MKIynsc235+Udodykrghd0UH87e7thLXIwlsAV6oth57Gz51Gy+ym77EZjX31UJ7msRMdbWoVZht0iYIkep/orz7aq3U/Ll/Xhm6mNLWmvU/wNqZA7emZN1BAtms0nYW3LT66+2UzmyoYYSdNcugZBqMkIyDm6qYDcbWUzS9ZyRhe5eL9U6Xt/TS5i5osJLvbfFXIIszqo3KQ7CATX7/34m5feg/niefSmmiNwNwixZYdfm/lzvlA9e5h2wnOE/GjfpUfLZQ9W/ZMYt6zw83fFsE6wBEPXt/ZpDiL6RnZuNJbg3GdUIShaYALc3FCzpkjyYr3nJD75ktULq0tnUymsGKpXqb2UzTNpAvuGGgGtOQBae3q9ELaLLbEqoN5K/Q+02s7L2Bzrya6Jh067y+g4rO2ei5wl8UFTP418Z1/hBpbFMLzsNF2f2KZ57vQ8iX1k7Y2GgOZcEgwfRyIeC/rX3BMbjI+3M6aRpl/QjqSrfasNWrH3LGX3ie6Q1f7RrQlfyK/SEm7v3pWursicsr9tBMEIBixcoqMH64VnLxrSfYTvs3xYwtnQlYcJBaN2dB2bH8AZDF7DCZJInX5qv/K8teYFoQEfBBhNT20jxtfHlqQQdwZaguDX8mrea0t2N6ip6NWTuhYkX7SnBVnGSoZZKbHPvXNX0Ez2+sBQA345KfH0CKnevqzrvjnRV/DGgGpfiV9sM3xZ1tx4QhJAkqIAIbkPehvDd+DkLl4x7+MDgLnjqEjwdim/vl+d6J+YSLwkx+P++dvl+iVg9Btxn9Dz5DHt58nJpzZOl/CnOLT7KZODLdtHvwTFh/i/7iHMok7fT7Mhujj5r2uEfRHvzGxtmKX2MPwwtpN1sxCgsBJhUyP3k/qJsgH9TtheGFdvTuzWL8bh91NwYJ5TB9pLU68lQpmHUVaePFmy5aPjdcbTcnjniBFD/G6nUNg2+CDr5aY+6/wfQAPy0hGdFpdcNJqJHvOPXHIhJfvqLkFFt80FPlNTTodu8mIvXO+/rwTGhcahtYmsT35NDWWoUvuFg3WQa0/T7YUGnRe87b/m+G8JMdUEhTPjAz8I1Z3z8AOIQbqs201kj1zrgkngo7zGdVzauMGchaw2m19CrTSR+VGYC2GvuKI/psJfhxXFUFN1hjC0y7NyoTVXQJx/vSHmlug+RS/Uw2beIRMzkHvEtVIEsrDIICu4/fi6zfJ6ZfBlQ5gso5ywUEnKo3otDwgYFETTXa3N62/MGD+g64L5lC/nWGwntF1XEvxnpzHp/fjclBNq0acH9389vCVJkwd/Q4zmg70eX3CV+wdyvnoTZyK5F3dT7dIP6vkA35noW3Tc642dIcCJFOB3PlXM+SPLAb9UbdqJuhTNz6UirOVKTa/XgA4FinH0/Np+MWFQ8wxJ7wkj7JvTIvhfGIFLfG6ar6nONULzlGJmqvWzZhvCEqX5ua6OK2Be38M7mbsd3fv2y817A9PYBfL5dMlnVAV9CsXJQ763Ypwo6EUrejVq1MN81qT2viMbYk6kpwWZ5yiewO9zPCmUlhveksLnmYAp8R5QKkuj308FNnyAmDlnFB+CfIYoG6YqCe5hSIxjezHLB5/IJmuuOemDEHapVxhHFKG6qMh6Jg5fzRcxI2Dr8DUBzJMbHKN+B15qysHJMgO0aJb7b/MmlPsgL5mmwqSJDAlUoMJPHwCya0RswwevTzS9ZystVKxsa7sbiNO8OnE4ohdHqsNzaMvNLikEy1HYVUdqiXrojlkCzFkNSo6WyuGKY/vsxJe8RtcCerPUrHhYVCCap/orf9HjHN9z759fPBDZ3zIpmsaAi4HKQY/68BtVqHBua5BBahSWjOVmggUbQrIsCEJIHY3xvdJJHv3pHkCKzyFXP3O4WPEU58N1kksBKQRkxymABr/Hc3CYeRU+e6FvQcV7eITErz3bU0n0JtIA7BQs3/nJkkvMhI4PAZpDBfo4xoIMk/+yAKESuZ5xpFl43xbuaY+8RAXP/5IQSp5TfVc0iwxyK4zBY4YCfwaqS6/HdhwUdZ4ZdJjABNHBmv1x76lHuUTWLOALotgflKFHm0esoCz0uUD6wJviQpHhCo04m1iYR8LTqNWv269Be9kkd7EUCJvQdEJBD7Dfm+xUluXE+zlLrsnL6vJsK0tOey9SJPZTclJTHkZRadliizswMF+hsAB59PWOF17n0/MW3S12HmbWo+Pyyr5ZnBxDpCSXPh38ZOBLgvvyfln2gK7y9eeoq4OhEFCHY8VE6wVTdJb8EWOcLN2QHyZmpJbV+Tm8ej8gdE7nAXLEJS2xeHgE6804E+xJPYKhZQgtER8o3fT14JVrYQeU4kIc17jtazjmwSPFb2Sp9Tw8+PAQ8gemPsKrZVMg9NPnVPKlJHNPqDomvI6dw8LlNHU85ej5+fEqBZGfV+bTByPQMHHxdOe/xWXasyNJON1d8+y7Ky5+JpG7ZHoLSfIxRu1zDr8v48Of4yA4N+izJMRPiFVAoKcqOwnJ721wObsqXStdjRcqA3TQ97/ky7hxabq3e4OikVeMiDvAcYpQ6wlu6dmFGi8JhhOSCV+HstrZJMiBRJHl55zqKpkUf3ULt3E1f/m/djddG/w4+YC+CrjfmuoCTJuzIJ/wsfRi7Bc6y+5Z2omX6ughID8YqVFcWRo3zbnn2b0tQaG/gSgIYer3+kdoevfn/B7+6gQ1Tbd0TvJeC1NLXaA4DPKTOy+eXXZj0OmzXYSscVEkeW3ND1HtiLPqx9d32QqKZ/ubzMotRHPapskHlxXP+S3p0RP6Cx6OHE9Ha2qiwlF8qQeF6BclHqHtneiWWL5u8CY3Yy8wVFVDx8qyXuuJTJGG94VicA6P1QYFJDCOmxQk3uOyrzhhJM5ZIhdUJeFrKXDQBhBKfZljYkD2bsOvphuAUwGhjiIVC89s+V23/phQ/FfNVeINQmziPaOPDdogJQb3KhhRWUzUfvSm64mmSMFDBOfRtRgeWiAzlIXGQk5p9nP3UoI71wv17+yJbeVYTSe6aqOYN2UYhvg3XTkzFJlbRXL2t5NaRXvUHk9XXS50yV3ggWgQxA2E5vl8tj9qgGmLLZ4cZ4sfk2cv2Bf6DM0u9DsIJK4MRrQHR0FP2zdj2mqSHSdgPdHrQQylVpu9Ld1Fp44Y3lMWk+GuoK/sZaG+/SC2esC/2j31cPv+fVVUGwEalA2ohHsaNL6iFUs2HY3sebEYWI2omSruD69TgiJjEEXmI9yYX/dv7rcD1i/SBWEw7kEE2PTkmTqLLCJ8cnzF87r5Hf77FAkIY6WdhvTdNKgfvKxxDNd5wWVw7mKiPqA27xppu8yL+QfE034llUSdIzeXlR+ypDadyrDJPvuwZgXkrOH/NpTcry3VqhqiQJzI7tGn9pxyvdw7j3foQVJsLmQCgFICRG6nbce3LRBWV0APzx8G56Ompm+ugyP2ByqNaQc+lcZpOGV25kKXCQu97/ubVdRgbqKY5ANT3TdcV9exYJW7uTJmrWx/RuzDwjHcE0WlGsuAhJS1Iuv73j//yUCMi2SgLGMrBUYkebKkn0kabPwKjC1bU7/C8foSPJDsXdMyxEUnBaGMiT6w+fiHOk28klw4zAunVHZ4oY6A230QtbY2eex/UCrkLJfvPHjNHp2X3hd25i8Wm2iLXtQLfOQoGy/WFRhPHaECsob7xa1ySknTsPnmey6RhyXyv/j17QBxOHCjTucsUxzDRHrN9mErY0A5i1AY7hR+9N90Sbveg1Q/MWB/JUMD++8TTuEgVhAE5Tid/qKr/SUwndMOz9YgTbCasax/X79b59hhqhEsoxNs8/HiVRqHn3gaavPFviWRo+mt/n4q1UMET59pqB++MEwvWpC76EwTrYfbSKnktrbVhjMrm8zlu0agLCUbhlHseJqu64aneG+KLXLR44g1hYOQ9/3VsYg39rae3PNrtscL6enUL7POI2XKUtvhZ8cvMpjlSJNOK5PdHdwZ7zbxyWGbdUKq6P8ls6+B/Rvzceoz+lO2009dJG4ZOvdEoCJzcJw2d5y/w0vAQYVi6yzfupGTh0KB0rd19e/I6uEFMzXH12zqWMKpqPy98dyyk4ugh/HKL6YR61VqSbD7t6ZnNcbsFHKjVYZx6sgeyzz0+Vf8wD3KgX4ApjRXv7UqZfcehM+smIVqMfF/ghdvnsNPIjSabZY6euvMSZfj9yVwKrERnn20fFdPX/r23NmVFNviWt/uLnZSw5pQL53Ny0rnqyCq2uqXFWS//M3/SP6Wg1uhlDWfK/Y0OxPn1lNgWnyo756q/gj6bnK4mnVDCEcE7DaqRmv9xAR6ywSBIhenGdiQoujrOpGxasq76Q6TeQgVEzfmp4OtwJg0vDaQdRoYVyuJ7EiyiyzdsGl6nV/Ej9/EcFt/bHNL/KwtiFzcqgOqr8Hpe9sT38M3LYv3V2f9xtvmUopdot2syieoj3syGsAXel51n0xNx0PkbaOK5cpaRkEHC5CW2khQxEicnXdl188O0+B2rO1jht/kzzIimVUbEYhERybPZdX6zWNKqqVomblx++Ji2FEg4k3bEcwtOLWOiFQNs0XsLgSRWNVkGVmN+6G/3LFV+ObkTX37/B4rYVfyL3HwJeTShRy33LbF8vNCGyf9u9EsNYbZnFJ8gdt/U5o6nZ3pUBPZdY3VYpqzKMw/smQpUCSdZzEMmIIUGIqsplWByuvnLxhvLJ1H/WxtJD2aRIch/8vE4uHu59ei1FXhy5Sb7BqqUQQDIn0EDsIIT7yG+hmDlkJGCSXGV+/J/Oh781dunP91iEJ/bfHPPSGttkLe+fSK4izoTRp9mm9/e2mMO/Y/w8hN5t0IfPkqA0PhbdoXm6TIzIP+tsLT+LbqxJAbgi5jviMOfdcTe0kF67th2te580xzXpzjnlJAvfQia8aNjer5svvfXcUri2sotVAT65te4oZC1QDH3kvuGiSKCGLIEjk4kdYoE95Y18juvxb7y8OQtCuQ+Y8PRvmsBG5vvlmz9Yy6XIKFZIk823n2ATgEYNdRbPwYQXijSTuCoJeZnZ/yr1QkPQJwla8ow1PL8ccVny/8Upe/LYnBeUUo+PG+FGMra+/LdWUrNYNvPF2F74cB5X53/C3qRv8ygXICqv+4rkpJsrxtvbalovqg71P+HOdBrL+M3EeaznFgyIvodCfk5m6s7QIubt3u+1Wzv/Fi03qIX/CludUlR6H7N8AtOgtBGNrzui6YVins0793lUbSwtXIKpedaEXQLDXK9V9t77E0ObScBz4Nl2TAm2XBFry3mwl47z2eXkB1U+TVpRgTI02vus6PQgEn3ZfmZFrpzYuKVSlCO9z3WVPq+GC7KQlda0oNh4VpWJWFR6n51OIk+Vno84o9K0kAuABVv6/DykNZabp+Gm/Z9Ph4810KveWk1nwg+uvlzfMDYX4V/gFmtWlchiLSAMKjQF7e0YZVMJjG8Pc7WfB6OGZFYgBha+k+i+UbgN/AQJ39Ubm3gh7SpovfN4Stovd9McrnkN3oZrkN/zoAgpRrKJmckJI95C4+4kkSVo17E1HeBiwmLS6JedZqFIFrINH4gkc8uSIZ01p3j120guBrVT8maxCiA4vpfp1TfFmIqJgTJyyOmfbacBXkRs4WnPaCjHVonOqiLC9aqUhVChh2rfGF5RThFx8Erpb40PFqFvLqiU3N4eJ8k66UnFK4rRl0Zw0m53394BC9X/KwKf6+LPOCm1KieAhD3xIKCC+7fvbZA9MG0dur4BC62oRHpdi2T/eAIL7P/XeQ7jLTjsA5BIoBLYHdez5i0P3rR5mndqbH29miubwJS6/DZ7tH5QUSLf1rqIQ25ivuiwUiqAsa0VLH4Gh6znwdbFFgQEwK2WOn1/RrAYtXl7k8RxDYYSHDymjv3bHaWlyFD8HWWad1hvqbx4aSAVZ+M2SdS33Tc50d6MXykh/FH9QXdhJc7Hf8OHquFNj78CLAHrm0hTcpFcqyvBO8Uxe3owu7h3Nq+7KN2vHa0y5p0b7RVVRD5T2gGn8TjVf01z/3GF2u5fJDYUYla+dGopiUjb38KZYy0RNyAnnM1OHq6pKg1tIrrNAYxzUXFmP182tmamhWXX3E0pHesq1HPYIYGd6QLm9aiX7TlVhk7jbu8p0nwNGjO5xF8n2wIXkFAQtpi2hSLiH3jCKZibzqHtRE48y38+Azfhi5Uf6JOFCWRi6kogpY7Yf/IiqKie/xO+2P5r1br34LvyWtXLz44OJvXRXboAWEAMrYRvQBDUBldB1aRpxD/Jl5FON4jovbfOCYHwqVe278mx/fFzed5XfxMmJCudSJn+TbS7Kz4AxOXTPiuJhEP9RUIFCs3guGEUF5/8BBkjuTIE0DI3uOfbQOWIKgJT5uY6PPtkd+DnWB5gu8vjP0bEuliN9PYKSvQt40lKxko5OUtx7G/iZFdr/xx5BOHteCwDLC9ii9pysgiz4u9TiOTk2xyBHdQ4kGovubRI1wJzcI5v3qw8lBGm+zYShiGkDOR36NYBgDGF3TS00kVGcmCVa1RoGVHWG8WA8WC2DqYJQuQt5kY3IAENnqDBK6KlXH/dECi/VxWxLAc7tPFSPlVaw3RRfyqNHKkTZBe9lBTKm18875Ax4A8R1ucoQ1sNAlzzc+gVkYkxBjid25ttHW/Dj7u2V64i5auNiEm7z8FLJrORBaC2JsAi6raZDB2Td+k5L4FsdQmJImM3bxuia6LTgTn280kie4NcneGxmGB6qhFtgdZ/Fh2puUJfM67uwr0KaBUKn9qAye8tIHpyKCMQDPXZWVl+6bcnrWG4SiB8m7O3miPgTJSkbs6vq19xfqMzQ7bA3bhOj9q5Mq3cENITbLW2wXTHpg5Q0WcfrC4q+tb5ktsa/Kxz2B1UKuJRJgbMNajsIEccpsrT9yBu71BaUt8hbWHHnsMtyjjA3m2tJvX2N+qnu2I2X417j5ZQBvt3ExUUC672PwB9mzp71mgdSpz1wXXLjbkbegkDOxR7fKG+L2fa90YW+w8+90EjDpHlwMEU8N2yrx06s31NSt0hJLZc7zu6lbUIcp5NOB1bU7zsy4t5j7rqNjmaPVrHJpODLafV/kzQxqhoBdOQewIzf++WgUoqHqprJxsPZ9RyTDymPsUg6tS3D8/g3x77HDqbdv37Yehxec/6aAl+zB+vqO0h5YxhZWo9cRtG8rKSpa+9G4456WOKZ+QIZyPIZlL3ghDQoI8vTem+F7UoFMwpF66r/P37CunZi1VRx8wLWzA03+29zKJD7QDk1GdGrgad16CI60lc6MUOkb4rw730zQ3/QHcYmTzS19TZBUoUGC036PHNvAm8ji5KL9ARIAIT7RFc6trvqAex74uaLnlST7IdnvaAOK50ggK8M8qjbjrS/53OGGRd8J2/42YdA8sN+/0MipWqDzdFw8eILyKs4dKdVavXgCXsizQDAoiCA/KE70myN+xhnmZrTz+gjoWNX1ZgnGmTtz727nWXQmj1Q8TyEqG7LsnYb2d90VJhRw3L3wtjuT5JL7PV2E2qV4XOi+Gf3mr+1JogWeVimsZeS7Q8qsfKymg02Sc0hng9oj50noQR7qDKV3razkjnfz1TgJ13/jJVkQBLGKx33NRIdQh6DmPpN5lJ6xXHRsPQ6LF1e0YJjO5yMVdCtxzjTw3CGxrDl0N02/uJwYtHLEPZJXZ/sxxA0kxu5DKBgO+Y3wM8ULUcRuwEmYMzJNtjydSJ4S1+M7dmzdfqXw+wFvTJg5Xd+J8RQGCO5v+fP58DspmiznVKwsQovsFg/VOi3DubSbTax1hm4ujy5Lzpn/af58SwPCXPsYNWvrTnidsE7ZAMj8W8d5drlfXY98SAU8s8aSl5bb9Iu2SRFGkuKDbu7WI5N7lVoLrLCIQaOocs8Tg5IFznWu4vaTUOJf+wA1Bh8d8mWqxMmvotiyrnSPlAXnau7eRIU8/LjPL3acJDk/2/1GfR8RvqHYUOj8NU62KHnN46lSeotCl7X+OdIaJd/uDV1xXg/gfUUutbWeJTGcAbv3NSrj/TKg5PfXEpDxxgwMyTr9KD3QAMoICPcGLb3c90n2t+UF4L2N2cRVbDaGfrDcs/Rn/i6CzPs7xRgRz9LvEn8bsA9Qv/krQ/Od/A2WzC4l2+DrqwmITBnMYP+VAfm7ZXTS4Aw/xL78qQ4QRBHH1XvyQ7qvvBEhykRnsfpk/p6fmmttx4naI/tAKSzKct+EygMGZJp6D+MqMM9nn4OwaHkjX4rk8Np/K1d0I/+E4WUXanEeo66joSruzcBgCumqpEL4FA943fbxkxic2YYUVbDfkDVNlzdMyguLD+snvck5gWpSpgmZtklRYQZ2EUZT+ISRSzXcyAzAOX4HSrXNEzbOv2QP90ZmRSB13e5x5hvuzreNWOEtA3oY8ucygZGIPxJruTVx6LpaOoqbV69+RqE4HuUXWK6b/x5zW7mxevyaCbGPpPpGfNTtPQP7+Y3rKnkPuYt+YsOTk2ndmZB4SH7I+XKkVKET44yuXia4IcTk6pWinesn2oK9iO2xin766tkestpMdG2Y8ZhT0ZQy/E2DQyjCaeYJ3yppj2Mm/uQcBDH8q8iDRhJMSwM4x7bSCE/I8Q3WESRr252q2le/iQPZRd/xk5a4eJuke833Xgl6SPa+Gm/mPs++FuT3V3QSOZFI0uQBYmg21ITbr3ZeN8mWiqbVRL/Unfr9vsoZ8pY9VRDPPXy6xuYNnn+HPP6wE6g1EYLIu9wYtU9lJ+DdFl2nb8DD9bMtJTNGDyHEbx7FHHTV4nZ0j/zasQ5vFE9gfo1LPySDsU1e0nJcpqRQAqeu2jr69ydcBfkbrlS1pg2kkqPYc6IXW0q8zYtn+DMCxbgdhBcNO9kvahg2DejGxAiEPU+j9bg6pW+KV+mniRr98JrMvt3XMLUvZaS0Qhh03Mtf/dijNUnEh9IMJ4BYueBxlVIe/iYmGnX4oBhSAxCifc1wE794FzPrVwjY44OgYVIWeCw7KBr8un++nDiHonfdnmG+Dk/l8WZpye/33hRJTpD1nRsF92ZJnQOcoiPK5Wf/VeCh1I3cD8so42lefG3kE+Y3oW8VVS3lRQaWFUA7bJBLjWEKJrMbJ7AnotfB7oGnr544pvRBm9N83GbTqob/1oE6Wy9tBL7lk9GLMxHnL49LIFRHyWqyocF0KiPz3+BYtb2d6+vvS1x9QRL1DzMQlwZESwx3QJLENyYpD7214kw3BW4149d23waJBwa1sbwNH0iZMk70VPvseZEoOTrejrB7N35C3oOYCPj2w+MQ3NZ94Q3Wdk10q1yDLwg4uvDDNV5kWw/f/aW/hsKJqvs3wcspe7MiS0+GMfQ45kiCxmclGt4HAucoiny/0Je7VtdBhutjK7ESdeVOr+V2Ae+9Ms0sv7IP5N6dQcGw/bw+8o3AuT+Lb5hgC+2hanpuAPMTnR3k4JW8on5Xr5fkBYVc328sJoE+vz4RzOd+w6M+STbviAiONP92oI1/8rnJkvsb2dtEkafWibwoqJ3Jky2M3Ali1yBKwXXx8d3hNYi+Udgz9ZL76mYftjUxQAtLKBeK8+ABRIZahwXoby8/MorsnG33plTox0FY7h00BQyLRKY379PMNVSw2geZQKmBjIJvBNLhUqa7EjvwaQK1v3P7PgiVfEVN6dtU9yGHmocAxHGdiVdYOGB8Puo/24+hyrnAj+u1TEh9c0rIRm9dASWKv1FS+wYG0yGU+CP/w9LyZYzCmeW3ZYiEvv/mo17/imj9Jc9EGsd34H68C/Kzw20jRVBmVCX75ULJZXyiASPreygebxBu+tiMPjyRKNURU+m/gnO0g6SwIG8fUsn2VaVUQdWc73QXLhsvvX9cU7ErerbEI166RGTnEgx5/p/EtCcYGwDKBvx9dvoXE0M3yOD7S5SQxyjkwbCOwwPx7CijSDfO67egrfM3FL+4VRABYipedxPmLKtMSjb6EDcASmtk3BZ/JzjdTrC0TYlxi6uhOaS0CwN+Tzig2aDpgy3PhMu1vrGi3b51fUbY+yZWIkWyvbt3eeoqgqcEY1Ztw+bGrvd5tBFK7jNIWZH7ihanK+b9Ip1NVoiJxCmF2EMNdr7TLvijWyWoCB2KO4C1zZEjg+Gmvc0rcb+myGWtAD9ep1cilwDMw+4hiauuwID8LTnlWj9bln1mKZc5QmUMvCPhiFde9F+eGG21h9cWMACsBkeToFdKoFPu6YUbzDUV3whqx1Feot1GkD29PY4Xu9mipMZLa+3rfsNtHKfYYqUhymCTJ3cZes9nRfj66+3l4jdLXGuGKm1r43qFuvmIlVAzQckntnyLRinLqQpgiMxryS9g4eu/Awm/n/LNlTjg53K3uR63iTxRHcXZjkmMXtnYtA3l36x0XGr88i4bzOgIkCN/VoXlrUioFwt9GZ1TkdBCFWzM6MEsEZcdyFQ2OP+7j2Z8zvAJDKKMLrH4pUYZPfw3UKR42YZ8lrWj2DSgKC6oArzuRk8Sq2KgapdAc+F1YRInTcHH15m8dXfK2TmW9JurDziaujX2uGDmBAtYZqtpCR2mbxwzOfPkSp7nFXGVIiTiSqoIvjw9qECa+sNb07LXJJ75y9wqhcJ8UIP/HUwFUlWBNcFSFvSdBzdz3JiP5Edy0PPbgZU2rp8vShzOeSGGZ7TM5BHQV++LwQXBS16mDye9dM9FkTLn12BJvrIigyqa89tslAr0PFkRX24S6CaUxyVttGYwH7IGq+R0AN8QoUnZpszqvxPXIGLvcNDkBfTW+E1qxb9Wk5HFLeyT2uP7Ki5OWAtBqcn1lu22hKK8zLv7hxX/6J6ee9tQcrdLJfhSN0IrhrJmbkTPjrv12NYcPIh67uUmY6vWwV7LhhkZI31Cm2Zc0vfo3mhNRifIj9s/KpF2s1wQPXkyy3ppZd2zoquOFEcs5nCWtLDDSZgJNhhSDI4NvFSrRL11XsxtpgJuHKLGMCIIf/D4Lwe+qQjwgzInLRGJEPgiZm16as3hO+e75623NWdNG60XEAvzleu9/9WEk1O/7J3Sm+6x+5WzvLJUcOsHS9fPhwahLZBB8TRTkkFNSrdGe6e+1lfV7wGF0/t6zBChXlKb3HHGYGaaQJlWRdeISJh5QQ0Ay3L7Or9dFSLW3gSboRAU+dY/ioM9qbFwUpKcBGTpOVmLt1fzGp9D5uTHfui3XolNcnvN7Zod0kRg1bTLco5vdq2+Yf/2N00LWfBzRvOnOLNtokL3knq9I9QmcIVrKVYn7vLM8UUg++O5/EZAgL9GwUG4AuJDIdrMyjXAbEtG9iEp5LkTBrgg34Q93f9Sku3W/fLyN/GHGajqgtjAoB5vQdUeLREDghEK3fy79QFQyyQcdhO+vHZCzB6NQZbZlO/7b5z/TiX3Qycc4M6KYonfxNbA+j1564FDf8D+e3KBg79vkOY335HbEvsabmE15jaA9NVkHiuSOEPVMg85jY7fyu5IwhWX4a9cnsDxxZc1XzdctldjnGiPH+SW6OBNSEVKusc0VkB83+Xjl6/KX2UuB8CDBc3H219DqP76lyspKiNNX8KU0HfsgIgX1bQcgeV9T90sIr6jTPR+Y3JZrsKeapoHP8kz8Fyu8o+bpdGX0tXbdLTnkD72cEHfmhS87ZGCUN8fpsOMmvIUO5dv8PDLueUSfCuo8+HBwNgGaWR4Rv7A5ga/EUXi7LsLggKN6/rYAlSaJU+fCoY4w+szzXzl8flxnMVql3xUEDdJdGi0yn0WD+B+1Kxhfoxy44Xh3NejWUpnJR7FWQn7A72lOLwui4c3LqRZ1MMebxyLYebtOzMvJeM1XLDOq55mgk7JWohMn1fhDot1o5hWELt3cFRFKpgFgCdMEzja87rdGXUdLbAlCSG4eq2VXogEuKxASwpT86WEiueZ2aGdmaKL5jPlOATqaBujFDTUhO78WpWCH1oOXAIEN5D2wZZvFs94D8Om1uOi98jSF6w5XQS1Je5AvPzc9M1sG5AhewLssYmwO5/fGD0il2W9Pyrf/OrTbOC6pb0n9hJ6HGphSzMUJOwzLBfTEhWoBobRCiwTzuDHoyMOsQK9y4niLQfHJjJq/jGzEiTXrPXizqwfvSQz3oeD9Rp85bq27FLGefkmg06ZRFL9vpGJcLyZdwQfJ8ruMoixUfysIUTwYUoS/tXQQVPxZCJpkisFSWpO+Mcb+bbugJfLHtQQzq0zthTOsIEZBbLNmmU01+Z2h+PFMZNmOFoq9JzV1/HbioizHR3BXtBnFRP/S6+Fec57ud7dIckmJi4onwp0vBny3TrufhnaqfEjAoRRLBlrUbhRf6tS+riJdC/IvveFJJgLXQZ6F91kmn3B27sJMgAO0Yot5KW4/MNyjva5V8xWB0cqk2FFpuuEnJjh1/Tr1so6JpbtUE0WcOhcWMu+BfXK4YHlJhfLKDz2kFGq3Ot+EzWdNROP/399ln743q8MvZ5d3cP7xzEY37QcCyoFLJPlpZrndjUCESiWOJei7PFO8zZ3V289lx21Bk+ZZ8+HXGWdRlyNPM6CZo8wS6394Hn5YFwLG0aOH6abbo+vxH9kKdehiybbGgS8LawhQ9LemekcO72muavhNUC3TQluZ37uDqpu0LBS5SWl8mVEykuvS92hUC531fH0lHN3pLevnxtSQVim7YYDpxc2tigm7ao4M+YDEwSX/vg0pwM28/ihZK5hhA1/kdeGZ0L5EAG+v6l5GzYr2XWF2WasHqwKnidr5Mtu6syHBADOtSflSlc2alouOOWBVxZR2NmRmjW0qdbkQs+3Aadrkj5kzEcFUDJaJPzHRVEQ5Kckyc7iqhtcGxkFCrBQMCE8ibfPWKrBEglJPM8X+2gv5INo5ASyFeDo8g6tkww4bpUp3pAYV4RyLlg/+qEyZxpqzasAKmxbsTJWdQ1lb3sfPk5WRBaUY7ydqUlmTu4XUrjA5AssRcLW416HFr6x/FwhZyLG4VGIzEK+Wd2simqi8iKjdb39nIigCLgo60KPu/ZziaCvzT986otfTF7Imb6FTYM/HFFI3Glq/F57O7G0dr3ldPI7Y7WS7fxWjvtwSvFYOwd3pikNG8TBGX7o4XZj+ajfK+tsfxHFWiUJxgZhcSU9hyAxAZQWdu4wV8m26X1oJUFiVHZYlZQp2p4q6biheYsV4Ma1MkuyGk12ihrPO4pzWrklqcpP8wbaw60gz6QOAPf85e18ls1XspCZNJvKAkexlm/FZnp8AENrunpduJk3XKmTLDCNILSw7Ie+hb7BIV3TB0C+H9CByTVoPRbl1T/aOYb94IrNKXRpFAeIZ8015jtEVMrBgu00goWzrOnWZzfb5NF/kkvlVXhGmLphBD5lRroZdeWJlQaTodv2PbVJRifbQfQp4+/G0L8KwrLmNC9YprMM8Y7wzfrZ4HeSS1KBllYMM7dIJTlUOcuORa/8gXCwt/1xg9i9kYBUYCDl4/GAdCqu5aRgo8f+Zk1Y5bZr52yV+Fk/gfFW28RdpVWDhxDnn/Ejao/wTIvrQ/FSFIjG0B+9ihYJvl6zSiFhQrOLjae+dTi+YIN26TdOy/zmZMf37WysRJxhR2u3OhwRYG1l0ABGNQEprfP7PuUvB+rWBJENzXrnZIKlEEuRovQ+BA6vL14doG7ijnBLH6XBIZDNvxWOLM0o9EkHz2B348CoqtBmzWwECdf7GmBlq5C8QQRpBvKmRVJFtjiIwSeaXtK+EKqwpJzZleoZiO7HkanbT4iLanxfud7a4aGkFxNixK8JDnOBMUkJ19MxNxEfVaoUPd6I42Vh1A1lmI+2F1TDonS2f5iTzJZxa+UT7sJf41fbWgEVmR7fSIZGdkM4OzXtXe6YleXqxxTCKpm0Y7y+ZYXIhQtg/+0z074PEMuPtxIspQDWQp0mavSHb+FAEgPaMl9jAWpvM8amsc4J5PHynP1gDPZf1xkbY/t7DjcYt/bHtW70rwHex85932AmGook5334PvGYysoXG8k9VTHHEro/QPVqM2+JzHKaX1Vpu4Eky28wPHsj6PiBIlZlqUxSr4H76+fqJW7Ts/hmrY6tXU13E+3Dvm5s64KsRDj5gOz5COmTapOeIV0TexxeWNTB2e9i+VFdCPzrmHiMQg1v8xB1ws2iOSMObpkc3F0uRffFrDMQQEp6axsGZTiEqjgYHZ9BvXqzZVDtECsuyDPeuALgEPLCaZpi3M1Snw+msJVEKojCx5JEaHrgCG87y5hNbsm7qQSboc4wsuIKkQqNRPEigPgaIEoa81/ZfUlYEyGBVm+XSgBf6HBsbGoDZVqlvbM9cG8wnbkpeRqVBJNyhiauQzJ1Mkn28c370w2yRoxK4IvJqbCvoARwdMlUxKDXawWpsuI8o0zo+178Y012IjSEbSCsbCQ6Wty3VBZ5juVbuRstrZNerviWj8exzOML9olBhO9XPG0bdSR0+BS+ZaEosViu5odc80KqFTNbjdmcvOl5340o26qCBwQzQCVQ8vFOQODS8/zVpzuQp+fKI7QBJIy/aJiSgDrtwY5yyPtqQGcU2ydi88sR6wWfXCqkAaTuAtHUqmaagUoQf1JUTQ9gEiOpZg8jI9rkb0/H4oT8+Pg4MCv7nVHBqKe/Mew35BGbFBo0Nf8B6zkvA8nd48/ppunr9KXbPoCWJHKUBIySeiSY2+dK1FW3zunYBN4kQVaCbzzuj8SanR1dPPP4eGU8vbkitZ1HH7NGOlldwYpDjXdRFwKKG5ihqMfN8ASrx7PITbLEPgukFEYmC9MVco8dDC2ABpmpNgDorOWjMtl254/6Ki//rV4zi37JsqCX955dc7zuP47g5K0ye01J4+YZCZ63kGNh2gUVdNZK8wtpiu2Q1EsxretH7JL86rDEHk4B/U2x/5hQYUdFwG9rCxxO8Io6xuqJNp5fKL7TwdN5EHwbVFPzxxSy5n3DSFS1r+698ij00ookis5TafxxPi/1DweYth3SXtNQ82+PZa4tksxjo4EWqgphY5x+I/dbQ/465ppZkjeQxuHwW4fDHXFe1QYzfaU5S2o/QZl/pxh9r519ErypFAWRcmW3vdlFf+0iXXQyojk1TUOn9NUT3EgysCQkTuFW14rgowKOXphWD2DDUI4JWZtnAUyyNQuQ8vI9dMolJ+z/pi3yuq4PrBBIBfCRvQR+MJ0eCb1aVwoV0VXS7SVb1A9RFUw+wFtUUXRoFCvh3Qv5RNQ+YW/P/i5Q9Kxc+ldm0pJce5dNKzawD2Dp59edbgx/IpX8+8g0WC6Vi3pFlV9cgsJBZVYQ5yBnxNDs30AdIvwJXFOABSckSdeMttDLSivjaZnrgvlqEY2iGgnkg21cr2jNByCG4rEk6SNaltXGrkzbtWdiNzTNsYtYdZduetm58xu7k8hzgJXx+KLrBixx+ZsBrAOV+yWkOH1/V7FfUAMESgkPdBIxIbohq/vGGirjHjqqueYYPGK2W4LBlMSzT7NX/b8315nuz7N/31wIhbZgNmTFo3n9lX75beVCkBbnXLAfHLpGDpm6DRX0H14Fre0gxmWp3jZr7C1FzjybNn8n18ZQitaCLJ+2FcE4SZZXlAz3SzC/on9930puOFTVstJyHPIEl2+sTIps67t/aWvUzmkaBB8yT7CpPvJllPZ4H1XmvbZH89IU/uLf1wTVg/O46ZjxCsvHI4JSoWXUo2YrPVsTfF9q/o4n0Ch9UdcVG3ulIdshylItZw4IZhFXozEBK2BqN5d4vm/3b9KEUeJkpa+VWPjJ2jiTAwVTlHFOK6NxcYKOla30duslGwaD0JgKDo5Y2tjDe5Ct5EIWIL4Haejt+IHvzxvc0Qop3mH3feSegfMfIlIbtxTZD5pxOBXYl1Ntqcpqqk8Xv9qRl+cZ2gGqpfi1rrktu/MmmiHCTBnWU5RH53n2giwGky3lDFrkDYdPxryRek4v4sPtIZGtaN2WX4XmuYYQQJKeTWkacGiUm7Y+qKZuTj2LsHy2MB91eE9PcKZlvUowPilIsjmJBOVf5tjBFNb3j3CdONn4HvnBCsI9EPNbIqUhZQ5VzrT1a9FKUx+TwF2HEyzT5DMclAheAA5wdNCzx4BFd308b2+X8UBhYkUiUw5PMkConaqr/kBfRbLbCfDjZfzNEr7f0OH7EHF75ztxhdkOgb1rHN2vOTTCgDve23Y8L1zjpEl1I2GGAzfiK60aDUALlG+kWCiSD7QfFPMmqHUB1HVJF/G3vIYbUgRV2T7T8J+BK3KZ4j0DNfJNru7W+h261U1CxVYmU8vANRpbCECe1x4NpincIApSBMDT2tQltXmI2eClSXnqGRZCdEAmU3K8czTzKnsgoPbh5YbxLmCPq/NG4mA/JD/w/siQImvHjmxaxibw14Ozc1dYK4vj79i5ByFq6VQrbFTdQTT4l8MOhvcWTRe8iVLtDVtnrDe3rvvLct8QyCjE4h3oBMYwwKzBWJvJWJ7jL+1Z5XrKswG5VfTem9TVHWDJ5pTSVqNn1ittnmXJGE77INoJiElTslBddycyvj6YvEL890y3N8Qbx/HyoO/YrRCBrcBe4V41YI9gMkC7uCcs7NFCLFxhIzCgyyuQS3y9bW+qczAK0RUmodPT+y5pE+/W7SQzT+4kFESRLnVT3bdBUhYn187aw5RT3YYcawcdadEca/KD/Nle+T1twg1csThV4UQ8uA4xRPZ5f6sYT+4hrNn2GChfIvMuNLoEGZ2920GKYk7UAOrcsKuzZXZUXEjQQlHLolLRT4FbMVsbv5YtsFbJa5u7+XnjiXcvju9r6xaXX8tLF+nNl62+kbgAe0qeDXmJ2OTb4S3YCp9XwtaW4FMZ2LqYQnNd2FWt27eeIHLGRyDaNupnItlJfZx1yZRtvWgFqUqqQD9n9uIf/zYSKZQyQHb+TdNTvwHWU7nVnX0CJHMz9SopwOjP90Notnc40ghwJ0RrT206V2EQQORhzQr9GxbtATtGXls/uTgeb99ZKtWsnd/jYPAeBrrFaUd7EP6MegjZy+oj9Q1BQtcBzOnaAVBEJk8WBUBT1wfXpCkXFx7ZSKoL2AF+Rd4+nYibO4oxBPVt0WFEFIV+AohmTAL9hB2lqmmrWe2UmqG88YlFuj6GCwXv7N8gmtzyCq89iW/P2x+GNXvzDbCBuYN/3zEvFHjJKoV9pyqXVdKAQKFTavTXUIaKfv3R3zFoVI7pyIMBmxpQ5c/J0CnUy7Pw+ENcAS4sX7KyOQeC+imSQokpamTjjmaO72CbJxoaHDb3dRtxD3rcfwNAId+rkNh7RWZfWecX8vQK7tvlx2NIShFrwm8UOVEENSCA7CYZxEIEgwAorm1guUoi1E109LaWrbg6MxnLdLqpBBMYSK8V69+wJTUeR2Bood2T2ak44ctSKhsi1tpPmsUPMYicvwMmGJnV/mgpCxd/3n9sy9mNtRkdTf8L/JiKh1uBPZvX7PwX+AFkb8r4XRqjOevXP0uCMsHS/8NeUTtF/6reOeMzyr9CwHshzP4LTHcnnw1dts4PxAb+3uYdUfDe5/rzkQT+fDyqdC3/LCHAv5F/FsusKsq/v4XA/4b8/Wq0/Fkq/ufNf82Qfj/5KvaTzh589/cJfv+HgCr98x3IqbQyJvkBAJZ/7cDUSNTkX/++2h61W/bnsj8Ly3q1fxfmYXvwzXsT8Nmdo6zWzBqj5P3rMUfjs1auXfv3z8s6D01GD+0wPyv90D+XUXnVtv++9C8QnEYZkSfPetRWRf+sJc+2ZvP/260H/9tNxiDgH3YZgbB/2maQAP55l//9e//3txj4py3N0iKz/n4c5rUciqGPWvY/Vqn/2HTg+fQf18jDMP7d6jpb18uq7vcm0bYO/0iIZ7vmy//PH4L3Zv+G/vtH5vx78z+frr+f0mgp/yex/zz4+7T/PTWelxu2Ocn+m134y8BrNBfZ+t9ch//X1J2zNlqr/R+f478i1e+rn3mOrv90wThU/br8pzvr78J/MA0KoP/ANBAI/S9k/3PH/2CC//lo/9/5Av4n0ftsafU+VTs8rgaQD/MRzekjGP8XJfIRv5hAERT4Z7HMiSRL/v8SSwT7R7F8VN0/iSX5X0gl8n9BKv9LXQ2i/7T91hr16bPjz+qwreP2OgrZPA//hwT4p+38BxH7z0RIszza2ufNqWKO0uq5/n9RpP9b8fsn2vzvjRCJ/Ns/MjuM/jMpYAz996v+D3Xkm6IdhvU/i86zQ6UypNl7xf8A
\ No newline at end of file
diff --git a/30-reference/configuration/images/cloud-pak-deployer-logging.png b/30-reference/configuration/images/cloud-pak-deployer-logging.png
new file mode 100644
index 000000000..d42c0bafa
Binary files /dev/null and b/30-reference/configuration/images/cloud-pak-deployer-logging.png differ
diff --git a/30-reference/configuration/images/cloud-pak-deployer-monitors.drawio b/30-reference/configuration/images/cloud-pak-deployer-monitors.drawio
new file mode 100644
index 000000000..4afd4ed0c
--- /dev/null
+++ b/30-reference/configuration/images/cloud-pak-deployer-monitors.drawio
@@ -0,0 +1 @@
+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
\ No newline at end of file
diff --git a/30-reference/configuration/images/cloud-pak-deployer-monitors.png b/30-reference/configuration/images/cloud-pak-deployer-monitors.png
new file mode 100644
index 000000000..77cc0d0b2
Binary files /dev/null and b/30-reference/configuration/images/cloud-pak-deployer-monitors.png differ
diff --git a/30-reference/configuration/images/cognos_authorization.png b/30-reference/configuration/images/cognos_authorization.png
new file mode 100644
index 000000000..6f042f56f
Binary files /dev/null and b/30-reference/configuration/images/cognos_authorization.png differ
diff --git a/30-reference/configuration/images/cp4ba-installation.png b/30-reference/configuration/images/cp4ba-installation.png
new file mode 100644
index 000000000..d38e454dc
Binary files /dev/null and b/30-reference/configuration/images/cp4ba-installation.png differ
diff --git a/30-reference/configuration/images/cp4d_events.png b/30-reference/configuration/images/cp4d_events.png
new file mode 100644
index 000000000..a94020363
Binary files /dev/null and b/30-reference/configuration/images/cp4d_events.png differ
diff --git a/30-reference/configuration/images/cp4d_monitors.png b/30-reference/configuration/images/cp4d_monitors.png
new file mode 100644
index 000000000..c5f86d62d
Binary files /dev/null and b/30-reference/configuration/images/cp4d_monitors.png differ
diff --git a/30-reference/configuration/images/ldap_user_groups.png b/30-reference/configuration/images/ldap_user_groups.png
new file mode 100644
index 000000000..2fed31bff
Binary files /dev/null and b/30-reference/configuration/images/ldap_user_groups.png differ
diff --git a/30-reference/configuration/infrastructure/index.html b/30-reference/configuration/infrastructure/index.html
new file mode 100644
index 000000000..9643130db
--- /dev/null
+++ b/30-reference/configuration/infrastructure/index.html
@@ -0,0 +1,162 @@
+ Infrastructure - Cloud Pak Deployer
For some of the cloud platforms, you must explicitly specify the infrastructure layer on which the OpenShift cluster(s) will be provisioned, or you can override the defaults.
For IBM Cloud, you can configure the VPC, subnets, NFS server(s), other Virtual Server Instance(s) and a number of other objects. When provisioning OpenShift on vSphere, you can configure data center, data store, network and virtual machine definitions. For Azure ARO you configure a single object with information about the virtual network (vnet) to be used and the node server profiles. When deploying OpenShift on AWS you can specify an EFS server if you want to use elastic storage.
The resource group is for cloud asset grouping purposes. You can define multiple resource groups in your IBM cloud account to group the provisioned assets. If you do not need to group your assets, choose default.
SSH keys to connect to VSIs. If you have Virtual Server Instances in your VPC, you will need an SSH key to connect to them. SSH keys defined here will be looked up in the vault and created if they don't exist already.
Controls whether the VPC is managed. The default is True. Only set to False if the VPC is not managed but only referenced by other objects such as transit gateways.
No
True (default), False
allow_inbound
Security rules which are allowed for inbound traffic
No
Existing security_rule
classic_access
Connect VPC to IBM Cloud classic infratructure resources
Defines the network access control list to be associated with subnets to allow or deny traffic from or to external connections. The rules are processed in sequence per direction. Rules that appear higher in the list will be processed first.
Defines which VPCs must be included in the transit gateway
Yes
connection.vpc
Defines the VPC to include. Every VPC must exist in the configuration, even if not managed by this configuration. When referencing an existing VPC, make sure that there is a vpc object of that name with managed set to False.
Defines a new Elastic File Storage (EFS) service that is connected to the OpenShift cluster within the same VPC. The file storage will be used as the back-end for the efs-nfs-client OpenShift storage class.
Folder that holds the data, this will be mounted from the NFS storage class
Yes
\ No newline at end of file
diff --git a/30-reference/configuration/logging-auditing/index.html b/30-reference/configuration/logging-auditing/index.html
new file mode 100644
index 000000000..dd4282b65
--- /dev/null
+++ b/30-reference/configuration/logging-auditing/index.html
@@ -0,0 +1,42 @@
+ Logging and auditing - Cloud Pak Deployer
For logging and auditing of Cloud Pak for Data we make use of the OpenShift logging framework, which delivers a lot of flexibility in capturing logs from applications, storing them in an ElasticSearch datastore in the cluster (currently not supported by the deployer), or forwarding the log entries to external log collectors such as an ElasticSearch, Fluentd, Loki and others.
OpenShift logging captures 3 types of logging entries from workload that is running on the cluster:
infrastructure - logs generated by OpenShift processes
audit - audit logs generated by applications as well as OpenShift
application - all other applications on the cluster
Defines how OpenShift forwards the logs to external log collectors. Currently, the following log collector types are supported:
loki
When OpenShift logging is activated via the openshift_logging object, all 3 logging types are activated automatically. You can specify logging_output items to forward log records to the log collector of your choice. In the below example, the application logs are forwarded to a loki server https://loki-application.sample.com and audit logs to https://loki-audit.sample.com, both have the same certificate to connect with:
Cloud Pak for Data and Foundational Services application logs are automatically picked up and forwarded to the loki-application logging destination and no additional configuration is needed.
Name of the OpenShift cluster to configure the logging for
Yes
configure_es_log_store
Must internal ElasticSearch log store and Kibana be provisioned? (default False)
No
True, False (default)
cluster_wide_logging
Defines which classes of log records will be sent to the log collectors
No
cluster_wide_logging.input
Specifies OpenShift log records class to forwawrd
Yes
application, infrastructure, audit
cluster_wide_logging.logging_name
Specifies the logging_output to send the records to . If not specified, records will be sent to the internal log only
No
cluster_wide_logging.labels
Specify your own labels to be added to the log records. Every logging input/output combination can have its own labes
No
logging_output
Defines the log collectors. If configure_es_log_store is True, output will always be sent to the internal ES log store
No
logging_output.name
Log collector name, referenced by cluster_wide_logging or cp4d_audit
Yes
logging_output.type
Type of the log collector, currently only loki is possible
Yes
loki
logging_output.url
URL of the log collector; this URL must be reachable from within the cluster
Yes
logging_output.certificates
Defines the vault secrets that hold the certificate elements
Yes, if url is https
logging_output.certificates.cert
Public certificate to connect to the URL
Yes
logging_output.certificates.key
Private key to connect to the URL
Yes
logging_output.certificates.ca
Certificate Authority bundle to connect to the URL
Yes
If you also want to activate audit logging for Cloud Pak for Data, you can do this by adding a cp4d_audit_config object to your configuration. With the below example, the Cloud Pak for Data audit logger is configured to write log records to the standard output (stdout) of the pods, after which they are forwarded to the loki-audit logging destination by a ClusterLogForwarder custom resource. Optionally labels can be specified which are added to the ClusterLogForwarder custom resource pipeline entry.
Because audit log entries are written to the standard output, they will also be picked up by the generic application log forwarder and will therefore also appear in the application logging destination.
The Cloud Pak Deployer simplifies the recording of audit log entries by means of the OpenShift logging framework, which can in turn be configured to forward entries to various log collectors such as Fluentd, Loki and ElasticSearch.
A cp4d_audit_config entry defines the audit configuration for a Cloud Pak for Data instance (OpenShift project). The main configuration items are the number of replicas and the output. Currently only one output type is supported: openshift-logging, which allows the OpenShift logging framework to pick up audit entries and forward to the designated collectors.
When a cp4d_audit_config entry exists for a certain cp4d project, the zen-audit-config ConfigMap is updated and then the audit logging deployment is restarted. If no configuration changes have been made, no restart is done.
Additionally, for the audit_output entries, the OpenShift logging ClusterLogForwarder instance is updated to forward audit entries to the designated logging output. In the example below the auditing is configured with 2 replicas and an input and pipeline is added to the ClusterLogForwarder instance so output to the matching channel defined in openshift_logging.logging_output.
Name of OpenShift project of the matching cp4d entry. The cp4d project must exist.
Yes
audit_replicas
Number of replicas for the Cloud Pak for Data audit logger.
No (default 1)
audit_output
Defines where the audit logs should be written to
Yes
audit_output.type
Type of auditing output, defines where audit logging entries will be written
Yes
openshift-logging
audit_output.logging_name
Name of the logging_output entry in the openshift_logging object. This logging_output entry must exist.
Yes
audit_output.labels
Optional list of labels set to the ClusterLogForwarder custom resource pipeline
No
\ No newline at end of file
diff --git a/30-reference/configuration/monitoring/index.html b/30-reference/configuration/monitoring/index.html
new file mode 100644
index 000000000..fcfa74439
--- /dev/null
+++ b/30-reference/configuration/monitoring/index.html
@@ -0,0 +1,75 @@
+ Monitoring - Cloud Pak Deployer
For monitoring of Cloud Pak for Data we make use of the OpenShift Monitoring framework. The observations generated by Cloud Pak for Data are pushed to the OpenShift Monitoring Prometheus endpoint. This will allow (external) monitoring tools to combine the observations from the OpenShift platform and Cloud Pak for Data from a single source.
To deploy Cloud Pak for Data Monitors, its is mandatory to also enable the OpenShift monitoring. OpenShift monitoring is activated via the openshift_monitoring object.
Allow pushing Prometheus metrics to OpenShift (must be set to True for monitoring to work)
Yes
True, False
pvc_storage_class
Storage class to keep persistent monitoring data
No
Valid storage class
pvc_storage_size_gb
Size of the PVC holding the monitoring data
Yes if pv_storage_class is set
remote_rewrite_url
Set this value to redirect metrics to remote Prometheus
NO
retention_period
Number of seconds (s), minutes (m), hours(h), days (d), weeks (w), years (y) to retain monitoring data. Default is 15d
Yes
labels
Additional labels to be added to the metrics
No
grafana_operator
Enable Grafana community operator?
No
False (default), True
grafana_project
If enabled, project in which to enable the Grafana operator
Yes, if grafana_operator enabled
Note Labels must be specified as a YAML record where each line is a key-value. The labels will be added to the prometheus key of the user-workload-monitoring-config ConfigMap and to the prometheusK8S key of the cluster-monitoring-config ConfigMap.
Note When the Grafana operator is enabled, you can build your own Grafana dashboard based on the metrics collected by Prometheus. When installed, Grafana creates a local admin user with user name root and passwowrd secret. Grafana can be accessed using the OpenShift route that is created in the project specified by grafana_project.
The observations of Cloud Pak for Data are generated using the zen-watchdog component, which is part of the cpd_platform cartridge and therefore available on each instance of Cloud Pak for Data. Part of the zen-watchdog installation is a set of monitors which focus on the technical deployment of Cloud Pak for Data (e.g. running pods and bound Persistent Volume Claims (pvcs)).
Additional monitors which focus more on the operational usage of Cloud Pak for Data can be deployed as well. These monitors are maintained in a seperate Git repository and be accessed at IBM/cp4d-monitors. Using the Cloud Pak Deployer, monitors can be deployed which uses the Cloud Pak for Data zen-watchdog monitor framework. This allows adding custom monitors to the zen-watchdog, making these custom monitors visible in the Cloud Pak for Data metrics.
Using the Cloud Pak Deployer cp4d_monitors capability implements the following: - Create Cloud Pak for Data ServiceMonitor endpoint to forward zen-watchdog monitor events to OpenShift Cluster monitoring - Create source repository auth secrets (optional, if pulling monitors from secure repo) - Create target container registry auth secrets (optional, if pushing monitor images to secure container registry) - Deploy custom monitors, which will be added to the zen-watchdog monitor framework
For custom monitors to be deployed, it is mandatory to enable the OpenShift user-workload monitoring, as specified in OpenShift monitoring.
The Cloud Pak for Data monitors are specified in a cp4d_monitors definition.
Each cp4d_monitors entry contains a set of default settings, which are applicable to the monitors list. These defaults can be overwritten per monitor if needed.
Property
Description
Mandatory
Allowed values
name
The name of the monitor set
Yes
lowercase RFC 1123 subdomain (1)
cp4d_instance
The OpenShift project (namespace) on which the Cloud Pak for Data instance resides
Yes
openshift_cluster_name
The Openshift cluster name
Yes
default_monitor_source_repo
The default repository location of all monitors located in the monitors section
No
default_monitor_source_token_secret
The default repo access token secret name, must be available in the vault
No
default_monitor_target_cr
The default target container registry (cr) for the monitor image to be pushed. When omitted, the OpenShift internal registry is used
No
default_monitor_target_cr_user_secret
The default target container registry user name secret name used to push the monitor image. Must be available in the vault
No
default_monitor_target_cr_password_secret
The default target container registry password secret name used to push the monitor image. Must be available in the vault
No
monitors
List of monitors
Yes
Per monitors entry, the following settings are specified:
Property
Description
Mandatory
Allowed values
name
The name of the monitor entry
Yes
lowercase RFC 1123 subdomain (1)
monitor_source_repo
Overrides default_monitor_source_repo for this single monitor
No
monitor_source_token_secret
Overrides default_monitor_source_token_secret for this single monitor
No
monitor_target_cr
Overrides default_monitor_target_cr for this single monitor
No
monitor_target_cr_user_secret
Overrides default_monitor_target_cr_user_secret for this single monitor
No
monitor_target_cr_user_password
Overrides default_monitor_target_cr_user_password for this single monitor
No
context
Sets the context of the monitor the the source repo (sub folder name)
Yes
label
Set the label of the pushed image, default to 'latest'
No
schedule
Sets the schedule of the generated Cloud Pak for Data monitor cronjob
Yes
Each monitor has a set of event_types, which contain the observations generated by the monitor. These event types are retrieved directly from the github repository, which it is expected that each context contains a file called event_types.yml. During deployment of the monitor this file is retrieved and used to populate the event_types of the monitor.
If the Deployer runs and the monitor is already deployed, the following process is used: - The build process is restarted to ensure the latest image of monitor is used - A comparison is made between the monitor's current configuration and the configuration created by the Deployer. If these are identical, the monitor's configuration is left as-is, however if these are different, the monitor's configuration is rebuild and the monitor is re-deployed.
This monitor counts the number of Global Platform connections and for each Global Platform Connection a test is executed to test whether the connection can still be established.
Once the monitor is deployed, the following metrics are available in IBM Cloud Pak for Data.
On the Platform Management Events page the following entries are added: - Cloud Pak for Data Global Connections Count - Global Connection - <Global Connection Name> (for each connection)
Using the IBM Cloud Pak for Data Prometheus endpoint🔗
https://<CP4D-BASE-URL>/zen/metrics
It will generate 2 types of metrics:
global_connections_count Provides the number of available connections
global_connection_valid For each connection, a test action is performed
1 (Test Connection success)
0 (Test connection failed)
# HELP global_connections_count
+# TYPE global_connections_count gauge
+global_connections_count{event_type="global_connections_count",monitor_type="cp4d_platform_global_connections",reference="Cloud Pak for Data Global Connections Count"} 2
+
+# HELP global_connection_valid
+# TYPE global_connection_valid gauge
+global_connection_valid{event_type="global_connection_valid",monitor_type="cp4d_platform_global_connections",reference="Cognos MetaStore Connection"} 1
+global_connection_valid{event_type="global_connection_valid",monitor_type="cp4d_platform_global_connections",reference="Cognos non-shared"} 0
+
Zen Watchdog metrics (used in platform management events) - watchdog_cp4d_platform_global_connections_global_connections_count - watchdog_cp4d_platform_global_connections_global_connection_valid (for each connection)
Zen Watchdog metrics can have the following values: - 2 (info) - 1 (warning) - 0 (critical)
# HELP watchdog_cp4d_platform_global_connections_global_connection_valid
+# TYPE watchdog_cp4d_platform_global_connections_global_connection_valid gauge
+watchdog_cp4d_platform_global_connections_global_connection_valid{event_type="global_connection_valid",monitor_type="cp4d_platform_global_connections",reference="Cognos MetaStore Connection"} 2
+watchdog_cp4d_platform_global_connections_global_connection_valid{event_type="global_connection_valid",monitor_type="cp4d_platform_global_connections",reference="Cognos non-shared"} 1
+
+# HELP watchdog_cp4d_platform_global_connections_global_connections_count
+# TYPE watchdog_cp4d_platform_global_connections_global_connections_count gauge
+watchdog_cp4d_platform_global_connections_global_connections_count{event_type="global_connections_count",monitor_type="cp4d_platform_global_connections",reference="Cloud Pak for Data Global Connections Count"} 2
+
\ No newline at end of file
diff --git a/30-reference/configuration/openshift/index.html b/30-reference/configuration/openshift/index.html
new file mode 100644
index 000000000..8d95ce14a
--- /dev/null
+++ b/30-reference/configuration/openshift/index.html
@@ -0,0 +1,211 @@
+ OpenShift - Cloud Pak Deployer
You can configure one or more OpenShift clusters that will be layed down on the specified infrastructure, or which already exist.
Dependent on the cloud platform on which the OpenShift cluster will be provisioned, different installation methods apply. For IBM Cloud, Terraform is used, whereas for vSphere the IPI installer is used. On AWS (ROSA), the rosa CLI is used to create and modify ROSA clusters. Each of the different platforms have slightly different properties for the openshift objects.
Every OpenShift cluster definition of a few mandatory properties that control which version of OpenShift is installed, the number and flavour of control plane and compute nodes and the underlying infrastructure, dependent on the cloud platform on which it is provisioned. Storage is a mandatory element for every openshift definition. For a list of supported storage types per cloud platform, refer to Supported storage types.
The Multicloud Object Gateway (MCG) supports access to s3-compatible object storage via an underpinning block/file storage class, through the Noobaa operator. Some Cloud Pak for Data services such as Watson Assistant need object storage to run. MCG does not need to be installed if OpenShift Data Foundation (fka OCS) is also installed as the operator includes Noobaa.
Total number of compute nodes. This must be a factor of the number of subnets
Yes
Integer
resource_group
IBM Cloud resource group for the ROKS cluster
Yes
cloud_native_toolkit
Must the Cloud Native Toolkit (OpenShift GitOps) be installed?
No
True, False (default)
oadp
Must the OpenShift Advanced Data Protection operator be installed
No
True, False (default)
infrastructure.type
Type of infrastructure to provision ROKS cluster on
No
vpc
infrastructure.vpc_name
Name of the VPC if type is vpc
Yes, inferrred from vpc
Existing VPC
infrastructure.subnets
List of subnets within the VPC to use. Either 1 or 3 subnets must be specified
Yes
Existing subnet
infrastructure.cos_name
Reference to the cos object created for this cluster
Yes
Existing cos object
infrastructure.private_only
If true, it indicates that the ROKS cluster must be provisioned without public endpoints
No
True, False (default)
infrastructure.deny_node_ports
If true, the Allow ICMP, TCP and UDP rules for the security group associated with the ROKS cluster are removed if present. If false, the Allow ICMP, TCP and UDP rules are added if not present.
No
True, False (default)
infrastructure.secondary_storage
Reference to the storage flavour to be used as secondary storage, for example "900gb.5iops-tier"
Must Multicloud Object Gateway be installed (Once installed, False does not uninstall)
Yes
True, False
mcg.storage_type
Type of storage supporting the object Noobaa object storage
Yes
storage-class
mcg.storage_class
Storage class supporting the Noobaa object storage
Yes
Existing storage class
openshift_storage[]
List of storage definitions to be defined on OpenShift, see below for further explanation
Yes
The managed attribute indicates whether the ROKS cluster is managed by the Cloud Pak Deployer. If set to False, the deployer will not provision the ROKS cluster but expects it to already be available in the VPC. You can still use the deployer to create the VPC, the subnets, NFS servers and other infrastructure, but first run it without an openshift element. Once the VPC has been created, manually create an OpenShift cluster in the VPC and then add the openshift element with managed set to False. If you intend to use OpenShift Container Storage, you must also activate the add-on and create the OcsCluster custom resource.
Warning
If you set infrastructure.private_only to True, the server from which you run the deployer must be able to access the ROKS cluster via its private endpoint, either by establishing a VPN to the cluster's VPC, or by making sure the deployer runs on a server that has a connection with the ROKS VPC via a transit gateway.
Property explanation OpenShift clusters on vSphere🔗
Property
Description
Mandatory
Allowed values
name
Name of the OpenShift cluster
Yes
domain_name
Domain name of the cluster, this will also depict the route to the API and ingress endpoints
Yes
ocp_version
OpenShift version. If you want to install 4.10, specify "4.10"
Yes
>= 4.6
control_plane_nodes
Total number of control plane nodes, typically 3
Yes
Integer
control_plane_vm_definition
vm_definition object that will be used to define number of vCPUs and memory for the control plane nodes
Yes
Existing vm_definition
compute_nodes
Total number of compute nodes
Yes
Integer
compute_vm_definition
vm_definition object that will be used to define number of vCPUs and memory for the compute nodes
Yes
Existing vm_definition
api_vip
Virtual IP address that the installer will provision for the API server
Yes
ingress_vip
Virtual IP address that the installer will provision for the ingress server
Yes
cloud_native_toolkit
Must the Cloud Native Toolkit (OpenShift GitOps) be installed?
No
True, False (default)
oadp
Must the OpenShift Advanced Data Protection operator be installed
No
True, False (default)
infrastructure
Infrastructure properties
No
infrastructure.openshift_cluster_network_cidr
Network CIDR used by the OpenShift pods. Normally you would not have to change this, unless other systems in the network are in the 10.128.0.0/14 subnet.
Property explanation OpenShift clusters on AWS (self-managed)🔗
Property
Description
Mandatory
Allowed values
name
Name of the OpenShift cluster
Yes
ocp_version
OpenShift version version, specified as x.y.z
Yes
>= 4.6
domain_name
Base domain name of the cluster. Together with the name, this will be the domain of the OpenShift cluster.
Yes
control_plane_flavour
Flavour of the AWS servers used for the control plane nodes. m5.xxlarge is the recommended value 4 GB of memory
Yes
control_plane_nodes
Total number of control plane
Yes
Integer
compute_flavour
Flavour of the AWS servers used for the compute nodes. m5.4xlarge is a large node with 16 cores and 64 GB of memory
Yes
compute_nodes
Total number of compute nodes
Yes
Integer
cloud_native_toolkit
Must the Cloud Native Toolkit (OpenShift GitOps) be installed?
No
True, False (default)
oadp
Must the OpenShift Advanced Data Protection operator be installed
No
True, False (default)
infrastructure
Infrastructure properties
Yes
infrastructure.type
Type of OpenShift cluster on AWS.
Yes
rosa or self-managed
infrastructure.aws_region
Region of AWS where cluster is deployed.
Yes
infrastructure.multi_zone
Determines whether the OpenShift cluster is deployed across multiple availability zones. Default is True.
No
True (default), False
infrastructure.credentials_mode
Security requirement of the Cloud Credential Operator (COO) when doing installations with temporary AWS security credentials. Default (omit) is automatically handled by CCO.
No
Manual, Mint
infrastructure.machine_cdr
Machine CIDR. This value will be used to create the VPC and its subnets. In case of an existing VPC, specify the CIDR of that VPC.
No
CIDR
infrastructure.openshift_cluster_network_cidr
Network CIDR used by the OpenShift pods. Normally you would not have to change this, unless other systems in the network are in the 10.128.0.0/14 subnet.
No
CIDR
infrastructure.subnet_ids
Existing public and private subnet IDs in the VPC to be used for the OpenShift cluster. Must be specified in combination with machine_cidr and hosted_zone_id.
No
Existing subnet IDs
infrastructure.private_only
Indicates whether the OpenShift can be accessed from the internet. Default is True
No
True, False
infrastructure.hosted_zone_id
ID of the AWS Route 53 hosted zone that controls the DNS entries. If not specified, the OpenShift installer will create a hosted zone for the specified domain_name. This attribute is only needed if you create the OpenShift cluster in an existing VPC
No
infrastructure.control_plane_iam_role
If not standard, specify the IAM role that the OpenShift installer must use for the control plane nodes during cluster creation
No
infrastructure.compute_iam_role
If not standard, specify the IAM role that the OpenShift installer must use for the compute nodes during cluster creation
Must Multicloud Object Gateway be installed (Once installed, False does not uninstall)
Yes
True, False
mcg.storage_type
Type of storage supporting the object Noobaa object storage
Yes
storage-class
mcg.storage_class
Storage class supporting the Noobaa object storage
Yes
Existing storage class
openshift_storage[]
List of storage definitions to be defined on OpenShift, see below for further explanation
Yes
When deploying the OpenShift cluster within an existing VPC, you must specify the machine_cidr that covers all subnets and the subnet IDs within the VPC. For example:
Must Multicloud Object Gateway be installed (Once installed, False does not uninstall)
Yes
True, False
mcg.storage_type
Type of storage supporting the object Noobaa object storage
Yes
storage-class
mcg.storage_class
Storage class supporting the Noobaa object storage
Yes
Existing storage class
openshift_storage[]
List of storage definitions to be defined on OpenShift, see below for further explanation
Yes
When deploying the OpenShift cluster within an existing VPC, you must specify the machine_cidr that covers all subnets and the subnet IDs within the VPC. For example:
Property explanation for OpenShift cluster on Microsoft Azure (ARO)🔗
Warning
You are not allowed to specify the OCP version of the ARO cluster. The latest current version is provisioned automatically instead no matter what value is specified in the "ocp_version" parameter. The "ocp_version" parameter is mandatory for compatibility with other layers of the provisioning, such as the OpenShift client. For instance, the value is used by the process which downloads and installs the oc client. Please, specify the value according to what OCP version will be provisioned.
Property
Description
Mandatory
Allowed values
name
Name of the OpenShift cluster
Yes
azure_name
Name of the azure element in the configuration
Yes
domain_name
Domain mame of the cluster, if you want to override the name generated by Azure
No
ocp_version
The OpenShift version. If you want to install 4.10, specify "4.10"
Yes
>= 4.6
cloud_native_toolkit
Must the Cloud Native Toolkit (OpenShift GitOps) be installed?
No
True, False (default)
oadp
Must the OpenShift Advanced Data Protection operator be installed
When using the Cloud Pak Deployer on an existing OpenShift cluster, the scripts assume that the cluster is already operational and that any storage classes have been pre-created. The deployer accesses the cluster through a vault secret with the kubeconfig information; the name of the secret is <name>-kubeconfig.
When deploying on existing OpenShift, the underlying infrastructure can pose some restrictions on capabilities available. For example, Red Hat OpenShift on IBM Cloud (aka ROKS) does not include the Machine Config Operator and ROSA on AWS does not allow to set labels for Machine Config Pools. This means that node settings required for Cloud Pak for Data must be applied in a non-standard manner.
The following values are allowed for infrastructure.type:
detect (default): The deployer will attempt to detect the underlying cloud infrastructure. This is done by retrieving the existing storage classes and then inferring the cloud type.
standard: The deployer will assume a standard OpenShift cluster with no further restrictions. This is the fallback value for detect if the underlying infra cannot be detected.
aws-self-managed: A self-managed OpenShift cluster on AWS. No restrictions.
aws-rosa: Managed Red Hat OpenShift on AWS. Some restrictions with regards to Machine Config Pools apply.
azure-aro: Managed Red Hat OpenShift on Azure. No known restrictions.
vsphere: OpenShift on vSphere. No known restrictions.
Name of the storage definition, to be referenced by the Cloud Pak
Yes
storage_type
Type of storage class to use in the OpenShift cluster
Yes
nfs, ocs, aws-elastic, auto, custom
ocp_storage_class_file
OpenShift storage class to use for file storage if different from default for storage_type
Yes if storage_type is custom
ocp_storage_class_block
OpenShift storage class to use for block storage if different from default for storage_type
Yes if storage_type is custom
Info
The custom storage_type can be used in case you want to use a non-standard storage class(es). In this case the storage class(es) must be already configured on the OCP cluster and set in the respective ocp_storage_class_file and ocp_storage_class_block variables
Info
The auto storage_type will let the deployer automatically detect the storage type based on the existing storage classes in the OpenShift cluster.
An openshift definition always includes the type(s) of storage that it will provide. When the OpenShift cluster is provisioned by the deployer, the necessary infrastructure and storage class(es) are also configured. In case an existing OpenShift cluster is referenced by the configuration, the storage classes are expected to exist already.
The table below indicates which storage classes are supported by the Cloud Pak Deployer per cloud infrastructure.
Warning
The ability to provision or use certain storage types does not imply support by the Cloud Paks or by OpenShift itself. There are several restrictions for production use OpenShift Data Foundation, for example when on ROSA.
Cloud Provider
NFS Storage
OCS/ODF Storage
Portworx
Elastic
Custom (2)
ibm-cloud
Yes
Yes
Yes
No
Yes
vsphere
Yes (1)
Yes
No
No
Yes
aws
No
Yes
No
Yes (3)
Yes
azure
No
Yes
No
No
Yes
existing-ocp
Yes
Yes
No
Yes
Yes
(1) An existing NFS server can be specified so that the deployer configures the managed-nfs-storage storage class. The deployer will not provision or change the NFS server itself.
(2) If you specify a custom storage type, you must specify the storage class to be used for block (RWO) and file (RWX) storage.
(3) Specifying this storage type means that Elastic File Storage (EFS) and Elastic Block Storage (EBS) storage classes will be used. For EFS, an nfs_server object is required to define the "file server" storage on AWS.
\ No newline at end of file
diff --git a/30-reference/configuration/private-registry/index.html b/30-reference/configuration/private-registry/index.html
new file mode 100644
index 000000000..5c2f199c0
--- /dev/null
+++ b/30-reference/configuration/private-registry/index.html
@@ -0,0 +1,58 @@
+ Private registries - Cloud Pak Deployer
In cases where the OpenShift cluster is in an environment with limited internet connectivity, you may want OpenShift to pull Cloud Pak images from a private image registry (aka container registry). There may also be other reasons for choosing a private registry over the entitled registry.
The below steps outline how to configure a private registry for a Cloud Pak deployment. When the image_registry object is referenced by the Cloud Pak object (such as cp4d), the deployer makes the following changes in OpenShift so that images are pulled from the private registry:
Global pull secret: The image registry's credentials are retrieved from the vault (the secret name must be image-registry-<name> and an entry for the registry is added to the global pull secret (secret pull-secret in project openshift-config).
ImageContentSourcePolicy: This is a mapping between the original location of the image, for example quay.io/opencloudio/zen-metastoredb@sha256:582cac2366dda8520730184dec2c430e51009a854ed9ccea07db9c3390e13b29 is mapped to registry.coc.uk.ibm.com:15000/opencloudio/zen-metastoredb@sha256:582cac2366dda8520730184dec2c430e51009a854ed9ccea07db9c3390e13b29.
Image registry settings: OpenShift keeps image registry settings in custom resource image.config.openshift.io/cluster. If a private registry with a self-signed certificate is configured, certificate authority's PEM secret must be created as a configmap in the openshift-config project. The deployer uses the vault secret referenced in registry_trusted_ca_secret property to create or update the configmap so that OpenShift can connect to the registry in a secure manner. Alternatively, you add the registry_insecure: true property to pull images without checking the certificate.
Defines a private registry that will be used for pulling the Cloud Pak container images from. Additionally, if the Cloud Pak entitlement key was specified at run time of the deployer, the images defined by the case files will be mirrored to this private registry.
Port that the image registry listens on. Default is the https port (443)
No
registry_namespace
Namespace (path) within the registry that holds the Cloud Pak images. Mandatory only when using the IBM Cloud Container Registry (ICR)
No
registry_insecure
Defines whether insecure registry access with a self-signed certificate is allowed
No
True, False (default)
registry_trusted_ca_secret
Defines the vault secret which holds the certificate authority bundle that must be used when connecting to this private registry. This parameter cannot be specified if registry_insecure is also specified.
No
Warning
The registry_host_name you specify in the image_registry definition must also be available for DNS lookup within OpenShift. If the registry runs on a server that is not registered in the DNS, use its IP address instead of a host name.
When mirroring images, the deployer connects to the registry using the host name and port. If the port is omitted, the standard https protocol (443) is used. If a registry_namespace is specified, for example when using the IBM Container Registry on IBM Cloud, it will be appended to the registry URL.
The user and password to connect to the registry will be retrieved from the vault, using secret image-registry-<your_image_registry_name> and must be stored in the format registry_user:registry_password. For example, if you want to connect to the image registry cpd404 with user admin and password very_s3cret, you would create a secret as follows:
If you need to connect to a private registry which is not signed by a public certificate authority, you have two choices: * Store the PEM certificate that that holds the CA bundle in a vault secret and specify that secret for the registry_trusted_ca_secret property. This is the recommended method for private registries. * Specify registry_insecure: false (not recommended): This means that the registry (and port) will be marked as insecure and OpenShift will pull images from it, even if its certificate is self-signed.
For example, if you have a file /tmp/ca.crt with the PEM certificate for the certificate authority, you can do the following:
This will create a vault secret which the deployer will use to populate a configmap in the openshift-config project, which in turn is referenced by the image.config.openshift.io/cluster custom resource. For the above configuration, configmap cpd404-ca-bundle would be created and teh image.config.openshift.io/cluster would look something like this:
Using the IBM Container Registry as a private registry🔗
If you want to use a private registry when running the deployer for a ROKS cluster on IBM Cloud, you must use the IBM Container Registry (ICR) service. The deployer will automatically create the specified namespace in the ICR and set up the credentials accordingly. Configure an image_registry object with the host name of the private registry and the namespace that holds the images. An example of using the ICR as a private registry:
The registry host name must end with icr.io and the registry namespace is mandatory. No other properties are needed; the deployer will retrieve them from IBM Cloud.
If you have already created the ICR namespace, create a vault secret for the image registry credentials:
The Cloud Pak for Data installation refers to the cpd463image_registry object.
If the ibm_cp_entitlement_key secret is in the vault at the time of running the deployer, the required images will be mirrored from the entitled registry to the private registry. If all images are already available in the private registry, just specify the --skip-mirror-images flag when you run the deployer.
Using a private registry for the Cloud Pak installation (non-IBM Cloud)🔗
Configure an image_registry object with the host name of the private registry and some optional properties such as port number, CA certificate and whether insecure access to the registry is allowed.
The registry_host_name you specify in the image_registry definition must also be available for DNS lookup within OpenShift. If the registry runs on a server that is not registered in the DNS, use its IP address instead of a host name.
To create the vault secret for the image registry credentials:
The Cloud Pak for Data installation refers to the cpd463image_registry object.
If the ibm_cp_entitlement_key secret is in the vault at the time of running the deployer, the required images will be mirrored from the entitled registry to the private registry. If all images are already available in the private registry, just specify the --skip-mirror-images flag when you run the deployer.
\ No newline at end of file
diff --git a/30-reference/configuration/topologies/index.html b/30-reference/configuration/topologies/index.html
new file mode 100644
index 000000000..459c3fdaf
--- /dev/null
+++ b/30-reference/configuration/topologies/index.html
@@ -0,0 +1 @@
+ Topologies - Cloud Pak Deployer
Configuration of the topology to be deployed typically boils down to choosing the cloud infrastructure you want to deploy, then choosing the type of OpenShift and storage, integrating with infrastructure services and then setting up the Cloud Pak(s). For most initial implementations, a basic deployment will suffice and later this can be extended with additional configuration.
Depicted below is the basic deployment topology, followed by a topology with all bells and whistles.
\ No newline at end of file
diff --git a/30-reference/configuration/vault/index.html b/30-reference/configuration/vault/index.html
new file mode 100644
index 000000000..1ef3c37a6
--- /dev/null
+++ b/30-reference/configuration/vault/index.html
@@ -0,0 +1,4 @@
+ Vault - Cloud Pak Deployer
Throughout the deployment process, the Cloud Pak Deployer will create secrets in a vault and retrieve them later. Examples of secrets are: ssh keys, Cloud Pak for Data admin password. Additionally, when provisioning infrastructure no the IBM Cloud, the resulting Terraform state file is also stored in the vault so it can be used later if the configuration needs to be changed.
Configuration of the vault is done through a vault object in the configuration. If you want to use the file-based vault in the status directory, you do not need to configure anything.
The following Vault implementations can be used to store and retrieve secrets: - File Vault (no encryption) - IBM Cloud Secrets Manager - Hashicorp Vault (token authentication) - Hashicorp Vault (certificate authentication)
The File Vault is the default vault and also the simplest. It does not require a password and all secrets are stored in base-64 encoding in a properties file under the <status_directory>/vault directory. The name of the vault file is the environment_name you specified in the global configuration, inventory file or at the command line.
All of the other vault options require some secret manager (IBM Cloud service or Hashicorp Vault) to be available and you need to specify a password or provide a certificate.
When authentication type is api-key, the field to authenticate with
Yes
vault_secret_path
Default secret path to store and retrieve secrets into/from
Yes
vault_secret_field
Default field to store or retrieve secrets
Yes
vault_secret_path_append_group
Determines whether or not the secrete group will be appended to the path
Yes
True (default), False
vault_secret_base64
Depicts if secrets are stored in base64 format for Hashicorp Vault
Yes
True (default), False
\ No newline at end of file
diff --git a/30-reference/process/configure-cloud-pak/index.html b/30-reference/process/configure-cloud-pak/index.html
new file mode 100644
index 000000000..966e9929f
--- /dev/null
+++ b/30-reference/process/configure-cloud-pak/index.html
@@ -0,0 +1 @@
+ Configure Cloud Paks - Cloud Pak Deployer
When provisioning on IBM Cloud ROKS, a CA-signed certificate for the ingress subdomain is automatically generated in the IBM Cloud certificate manager. The deployer retrieves the certificate and adds it to the secret that stores the certificate key. This will avoid getting a warning when opening the Cloud Pak for Data home page.
SAML for Single Sign-on. When specified in the cp4d_saml_config object, the deployer configures the user management pods to redirect logins to the identity provider (idP) of choice.
LDAP configuration. LDAP can be used both for authentication (if no SSO has been configured) and for access management by mapping LDAP groups to Cloud Pak for Data user groups. Specify the LDAP or LDAPS properties in the cp4d_ldap_config object so that the deployer configures it for Cloud Pak for Data. If SAML has been configured for authentication, the configured LDAP server is only used for access management.
User group configuration. This creates user-defined user groups in Cloud Pak for Data to match the LDAP configuration. The configuration object used for this is cp4d_user_group_configuration.
Some cartridges such as Data Virtualization have the ability to create one or more instances to run an isolated installation of the cartridge. If instances have been configured for the cartridge, this steps provisions them. The following Cloud Pak for Data cartridges are currently supported for creating instances:
Analytics engine powered by Apache Spark (analytics-engine)
Cloud Pak for Data does not support group-defined access to cartridge instances. After creation of the instances (and also when the deployer is run with the --cp-config-only flag), the permissions of users accessing the instance is configured.
For Cognos Analytics, the Cognos Authorization process is run to apply user group permissions to the Cognos Analytics instance.
Cloud Pak for Data defines data source connections at the platform level and these can be reused in some cartridges like Watson Knowledge Catalog and Watson Studio. The cp4d_connection object defines each of the platform connections that must be managed by the deployer.
If you want to back up or restore platform connections, the cp4d_backup_restore_connections object defines the JSON file that will be used for backup and restore.
\ No newline at end of file
diff --git a/30-reference/process/configure-infra/index.html b/30-reference/process/configure-infra/index.html
new file mode 100644
index 000000000..df9cc2c5d
--- /dev/null
+++ b/30-reference/process/configure-infra/index.html
@@ -0,0 +1 @@
+ Configure infrastructure - Cloud Pak Deployer
In a configuration scenario where NFS is used for OpenShift storage, the NFS server must be provisioned as a VSI within the VPC that contains the OpenShift cluster. It is best practice to shield off the NFS server from the outside world by using a jump host (bastion) to access it.
This steps configures the bastion host which has a public IP address to serve as a jump host to access other servers and services within the VPC.
Configures the NFS server using the specs in the nfs_server configuration object(s). It installs the required packages and sets up the NFSv4 service. Additionally, it will format the empty volume as xfs and export it so it can be used by the managed-nfs-storage storage class in the OpenShift cluster.
This steps takes care of configuring the storage classes in the OpenShift cluster. Storage classes are an abstraction of the underlying physical and virtual storage. When run, it processes the openshift_storage elements within the current openshift configuration object.
Two types of storage classes can be automatically created and configured:
Activates the ROKS cluster's OpenShift Container Storage add-on to install the operator into the cluster. Once finished with the preparation, the OcsCluster OpenShift object is created to provision the storage cluster. As the backing storage the ibmc-vpc-block-metro-10iops-tier storage class is used, which has the appropriate IO characteristics for the Cloud Paks.
Info
Both NFS and OCS storage classes can be created but only 1 storage class of each type can exist in the cluster at the moment. If more than one storage class of the same type is specified, the configuration will fail.
\ No newline at end of file
diff --git a/30-reference/process/cp4d-cartridges/cognos-authorization/index.html b/30-reference/process/cp4d-cartridges/cognos-authorization/index.html
new file mode 100644
index 000000000..d2e7ceee8
--- /dev/null
+++ b/30-reference/process/cp4d-cartridges/cognos-authorization/index.html
@@ -0,0 +1,22 @@
+ Automated Cognos Authorization using LDAP groups - Cloud Pak Deployer
The automated cognos authorization capability uses LDAP groups to assign users to a Cognos Analytics Role, which allows these users to login to IBM Cloud Pak for Data and access the Cognos Analytics instance. This capability will perform the following tasks: - Create a User Group and assign the associated LDAP Group(s) and Cloud Pak for Data role(s) - For each member of the LDAP Group(s) part of the User Group, create the user as a Cloud Pak for Data User and assigned the Cloud Pak for Data role(s) - For each member of the LDAP Group(s) part of the User Group, assign membership to the Cognos Analytics instance and authorize for the Cognos Analytics Role
If the User Group is already present, validate all LDAP Group(s) are associated with the User Group. Add the LDAP Group(s) not yet assiciated to the User Group. Existing LDAP groups will not be removed from the User Group
If a User is already present in Cloud Pak for Data, it will not be updated.
If a user is already associated with the Cognos Analytics instance, keep its original membership and do not update the membership
Prior to running the script, ensure: - LDAP configuration in IBM Cloud Pak for Data is completed and validated - Cognos Analytics instance is provisioned and running in IBM Cloud Pak for Data - The role(s) that will be associated with the User Group are present in IBM Cloud Pak for Data
The script execution will run through the following tasks:
Validation Confirm all required arguments are provided. Confirm at least 1 User Group Role assignment is provided. Confirm at least 1 LDAP Group is provided.
Login to Cloud Pak for Data and generate a Bearer token Using the provided IBM Cloud for Data URL, username and password, login to Cloud pak for Data and generate the Bearer token used for subsequent commands. Exit with an error if the login to IBM Cloud Pak for Data fails.
Confirm the provided User Group role(s) are present in Cloud Pak for Data Acquire all Cloud Pak for Data roles and confirm the provided User Group role(s) are one of the existing Cloud Pak for Data roles. Exit with an error if a role is provided which is not currently present in IBM Cloud Pak for Data.
Confirm the provided Cognos Analytics role is valid Ensure the provided Cognos Analytics role is one of the available Cognos Analytics roles. Exit with an error if a Cognos Analytics role is provided that does not match with the available Cognos Analytics roles.
Confirm LDAP is configured in IBM Cloud Pak for Data Ensures the LDAP configuration is completed. Exit with an error if there is no current LDAP configuration.
Confirm the provided LDAP groups are present in the LDAP User Registry Using IBM Cloud Pak for Data, query whether the provided LDAP groups are present in the LDAP User registry. Exit with an error if a LDAP Group is not available.
Confirm if the IBM Cloud Pak for Data User Group exists Queries the IBM Cloud Pak for Data User Groups. If the provided User Group exists, acquire the Group ID.
If the IBM Cloud Pak for Data User Group does not exist, create it If the User Group does not exist, create it, and assign the IBM Cloud Pak for Data Roles and LDAP Groups to the new User Group
If the IBM Cloud Pak for Data User Group does exist, validate the associated LDAP Groups If the User Group already exists, confirm all provided LDAP groups are associated with the User Group. Add LDAP groups that are not yet associated.
Get the Cognos Analytics instance ID Queries the IBM Cloud Pak for Data service instances and acquires the Cognos Analytics instance ID. Exit with an error if no Cognos Analytics instance is available
Ensure each user member of the IBM Cloud Pak for Data User Group is an existing user Each user that is member of the provided LDAP groups, ensure this member is an IBM Cloud Pak for Data User. Create a new user with the provided User Group role(s) if the the user is not yet available. Any existing User(s) will not be updated. If Users are removed from an LDAP Group, these users will not be removed from Cloud Pak for Data.
Ensure each user member of the IBM Cloud Pak for Data User Group is associated to the Cognos Analytics instance Each user that is member of the provided LDAP groups, ensure this member is associated to the Cognos Analytics instance with the provided Cognos Analytics role. Any user that is already associated to the Cognos Analytics instance will have its Cognos Analytics role updated to the provided Cognos Analytics Role
\ No newline at end of file
diff --git a/30-reference/process/cp4d-cartridges/cognos_authorization.png b/30-reference/process/cp4d-cartridges/cognos_authorization.png
new file mode 100644
index 000000000..6f042f56f
Binary files /dev/null and b/30-reference/process/cp4d-cartridges/cognos_authorization.png differ
diff --git a/30-reference/process/deploy-assets/index.html b/30-reference/process/deploy-assets/index.html
new file mode 100644
index 000000000..7c91cdd84
--- /dev/null
+++ b/30-reference/process/deploy-assets/index.html
@@ -0,0 +1 @@
+ Deploy assets - Cloud Pak Deployer
\ No newline at end of file
diff --git a/30-reference/process/images/provisioning-process.drawio b/30-reference/process/images/provisioning-process.drawio
new file mode 100644
index 000000000..e61717386
--- /dev/null
+++ b/30-reference/process/images/provisioning-process.drawio
@@ -0,0 +1 @@
+7Zldb5swFIZ/TS5b8ZHwcZmk7Vapkyql2rqryg0OuDUcZEwC+/WzwQkwKKXS2kQiuUh8Xn/EPi/PISITcxlm3xiKgx/gYToxNC+bmFcTw9Bd0xQfUslLxXGNUvAZ8dSgSliRP1iJmlJT4uGkMZADUE7ipriGKMJr3tAQY7BrDtsAbX5rjHzcElZrRNvqL+LxQJ3CsCv9OyZ+sP9m3XLLnhDtB6uTJAHyYFeTzOuJuWQAvGyF2RJTmbx9Xsp5N2/0HjbGcMSHTMiMe3b3RNhDPH/IYf38sshuLnRlT8Lz/YmxJxKgQmA8AB8iRK8rdcEgjTwsl9VEVI25A4iFqAvxBXOeKzdRykFIAQ+p6sUZ4Y+19m+51OVMRVeZWrkIchVsIOJqQUNX8RIosGLX5k3xEnp5HnmIN/OkpARStsZ9yVHXG2I+5j3jrIObAgMMIeYsF/MYpoiTbXMfSF2P/mFcZZloKNc+4mC57hbR9IDO5cSwqNjx4pmJli9bPxElntgORC3DKztlXncB4XgVoyIzOwF107qaDbrVY8OGUFrTNc11NWmj2IYfCW0t3MCic7HFjBPB21x1hMTziqtMnUt046zfynbq1YQL21bwqepjz1S8q1jWTaUFNY4t7ZPsmrXsmkcJeRYn/tcWUS9i2UxI5FM8l7VsgD3NtFviVdhRlMJ9AROo2frUcKr3/QjlrHZpaM0hHwbw//rmdPrWZZz9WcaJJJ0rZW8FHFAp7WNWSquFntFVKe8ZlikYU5m0tFMrk/rsTFs/RQNoc45Jm92izeymDbYkKX6WaLfRhqExcTc1T44768xdP08DuHOPyZ3T4m7axd0Sog3xU3mfGx93B35Ohzv7zF0/TwO407Vu278GPLcF3qwLvNso4ahYbUkh9cTnPXodE3zuybHnnNl7h6kh8L1h+xc9BdNa9Fnv3fbGyZ9zavgdno+fPH4iwyx/rAe1WTKsphXRMbEd+uxaN46Kbfvptd2F7RWOKchtzZME82REuBqzU+O1vGIanjldnq1CeJVl9gEno3JsanydYyKs/kAs+mp/w5rXfwE=
\ No newline at end of file
diff --git a/30-reference/process/images/provisioning-process.png b/30-reference/process/images/provisioning-process.png
new file mode 100644
index 000000000..382f40168
Binary files /dev/null and b/30-reference/process/images/provisioning-process.png differ
diff --git a/30-reference/process/install-cloud-pak/index.html b/30-reference/process/install-cloud-pak/index.html
new file mode 100644
index 000000000..58faf5d47
--- /dev/null
+++ b/30-reference/process/install-cloud-pak/index.html
@@ -0,0 +1,13 @@
+ Install the Cloud Pak - Cloud Pak Deployer
This stage focuses on preparing the OpenShift cluster for installing the Cloud Pak(s) and then proceeds with the installation of Cloud Paks and the cartridges. The below documentation will start with a list of steps that will be executed for all Cloud Paks, then proceed with Cloud Pak specific activities. The execution of the steps may slightly differ from the sequence in the documentation.
Before going ahead with the mirroring of container images and installation of Cloud Pak for Data, the previous configuration (if any) is retrieved from the vault to determine if a Cloud Pak for Data instance has been removed. If a previously installed cp4d object no longer exists in the current configuration, its associated instance is removed from the OpenShift cluster.
First, the custom resources are removed from the OpenShift project. This happens with a grace period of 5 minutes. After the grace period has expired, OpenShift automatically forcefully deletes the custom resource and its associated definitions. Then, the control plane custom resource Ibmcpd is removed and finally the namespace (project). For the namespace deletion, a grace period of 10 minutes is applied.
When installing the Cloud Paks, images must be pulled from an image registry. All Cloud Paks support pulling images directly from the IBM Entitled Registry using the entitlement key, but there may be situations this is not possible, for example in air-gapped environents, or when images must be scanned for vulnerabilities before they are allowed to be used. In those cases, a private registry will have to be set up.
The Cloud Pak Deployer can mirror images to a private registry from the entitled registry. On IBM Cloud, the deployer is also capable of creating a namespace in the IBM Container Registry and mirror the images to that namespace.
When a private registry has been specified in the Cloud Pak entry (using the image_registry_name property), the necessary OpenShift configuration changes will also be made.
Create IBM Container Registry namespace (IBM Cloud only)🔗
If OpenShift is deployed on IBM Cloud (ROKS), the IBM Container Registry should be used as the private registry from which the images will be pulled. Images in the ICR are organized by namespace and can be accessed using an API key issued for a service account. If an image_registry object is specified in the configuration, this process will take care of creating the service account, then the API key and it will store the API key in the vault.
If an image registry has been specified for the Cloud Pak using the image_registry_name property, the referenced image_registry entry is looked up in the configuration and the credentials are retrieved from the vault. Then the connection to the registry is tested by logging on.
Prepare OpenShift cluster for Cloud Pak installation🔗
Cloud Pak for Data requires a number of cluster-wide settings:
Create an ImageContentSourcePolicy if images must be pulled from a private registry
Set the global pull secret with the credentials to pull images from the entitled or private image registry
Create a Tuned object to set kernel semaphores and other properties of CoreOS containers being spun up
Allow unsafe system controls in the Kubelet configuration
Set PIDs limit and default ulimit for the CRI-O configuration
For all OpenShift clusters, except ROKS on IBM Cloud, these settings are applied using OpenShift configuration objects and then picked up by the Machine Config Operator. This operator will then apply the settings to the control plane and compute nodes as appropriate and reload them one by one.
To avoid having to reload the nodes more than once, the Machine Config Operator is paused before the settings are applied. After all setup, the Machine Config Operator is released and the deployment process will then wait until all nodes are ready with the configuration applied.
Prepare OpenShift cluster on IBM Cloud and IBM Cloud Satellite🔗
As mentioned before, ROKS on IBM Cloud does not include the Machine Config Operator and would normally require the compute nodes to be reloaded (classic ROKS) or replaced (ROKS on VPC) to make the changes effective. While implementing this process, we have experienced intermittent reliability issues where replacement of nodes never finished or the cluster ended up in a unusable state. To avoid this, the process is applying the settings in a different manner.
On every node, a cron job is created which starts every 5 minutes. It runs a script that checks if any of the cluster-wide settings must be (re-)applied, then updates the local system and restarts the crio and kubelet daemons. If no settings are to be adjusted, the daemons will not be restarted and therefore the cron job has minimal or no effect on the running applications.
Compute node changes that are made by the cron job: ImageContentSourcePolicy: File /etc/containers/registries.conf is updated to include registry mirrors for the private registry. Kubelet: File /etc/kubernetes/kubelet.conf is appended with the allowedUnsafeSysctls entries. CRI-O: pids_limit and default_ulimit changes are made to the /etc/crio/crio.conf file. Pull secret: The registry and credentials are appended to the /.docker/config.json configuration.
There are scenarios, especially on IBM Cloud Satellite, where custom changes must be applied to the compute nodes. This is possible by adding the apply-custom-node-settings.sh to the assets directory within the CONFIG_DIR directory. Once Kubelet, CRI-O and other changes have been applied, this script (if existing) is run to apply any additional configuration changes to the compute node.
By setting the NODE_UPDATED script variable to 1 you can tell the deployer to restart the crio and kubelet daemons.
WARNING: You should never set the NODE_UPDATED script variable to 0 as this will cause previous changes to the pull secret, ImageContentSourcePolicy and others not to become effective.
WARNING: Do not end the script with the exit command; this will stop the calling script from running and therefore not restart the daemons.
Sample script:
#!/bin/bash
+
+#
+# This is a sample script that will cause the crio and kubelet daemons to be restarted once by checking
+# file /tmp/apply-custom-node-settings-run. If the file doesn't exist, it creates it and sets NODE_UPDATED to 1.
+# The deployer will observe that the node has been updated and restart the daemons.
+#
+
+if[!-e/tmp/apply-custom-node-settings-run];then
+touch/tmp/apply-custom-node-settings-run
+NODE_UPDATED=1
+fi
+
If a private image registry is specified, and if the IBM Cloud Pak entitlement key is available in the vault (cp_entitlement_key secret), the Cloud Pak case files for the Foundational Services, the Cloud Pak control plane and cartridges are downloaded to a subdirectory of the status directory that was specified. Then all images defined for the cartridges are mirrored from the entitled registry to the private image registry. Dependent on network speed and how many cartridges have been configured, the mirroring can take a very long time (12+ hours). All images which have already been mirrored to the private registry are skipped by the mirroring process.
Even if all images have been mirrored, the act of checking existence and digest can still take a bit of time (10-15 minutes). To avoid this, you can remove the cp_entitlement_key secret from the vault and unset the CP_ENTITLEMENT_KEY environment variable before running the Cloud Pak Deployer.
The images of the operators which control the Cloud Pak are defined in OpenShift CatalogSource objects which reside in the openshift-marketplace project. Operator subscriptions subsequently reference the catalog source and define the update channel. When images are pulled from the entitled registry, most subscriptions reference the same ibm-operator-catalog catalog source (and also a Db2U catalog source). If images are pulled from a private registry, the control plane and also each cartridge reference their own catalog source in the openshift-marketplace project.
This step creates the necessary catalog sources, dependent on whether the entitled registry or a private registry is used. For the entitled registry, it creates the catalog source directly using a YAML template; when using a private registry, the cloudctl case command is used for the control plane and every cartridge to install the catalog sources and their dependencies.
Most custom resources defined by the cartridge operators require some back-end storage. To be able to reference the correct OpenShift storage classes, they are retrieved based on the openshift_storage_name property of the Cloud Pak object.
When using express install, the Cloud Pak for Data operator also installs the Cloud Pak Foundational Services. Consecutively, this part of the deployer:
Creates the operator project if it doesn't exist already
Creates an OperatorGroup
Installs the license service and certificate manager
Creates the platform operator subscription
Waits until the ClusterServerVersion objects for the platform operator and Operand Deployment Lifecycle Manager have been created
When the Cloud Pak for Data operator has been installed, the process continues by creating an OperandRequest object for the platform operator which manages the project in the which Cloud Pak for Data instance is installed. Then it creates an Ibmcpd custom resource in the project which installs the controle plane with nginx the metastore, etc.
The Cloud Pak for Data control plane is a pre-requisite for all cartridges so at this stage, the deployer waits until the Ibmcpd status reached the Completed state.
Once the control plane has been installed successfully, the deployer generates a new strong 25-character password for the Cloud Pak for Data admin user and stores this into the vault. Additionally, the admin-user-details secret in the OpenShift project is updated with the new password.
Install the specified Cloud Pak for Data cartridges🔗
Now that the control plane has been installed in the specified OpenShift project, cartridges can be installed. Every cartridge is controlled by its own operator subscription in the operators project and a custom resource. The deployer iterates twice over the specified cartridges, first to create the operator subscriptions, then to create the custom resources.
This steps creates subscription objects for each cartridge in the operators project, using a YAML template that is included in the deployer code and the subscription_channel specified in the cartridge definition. Keeping the subscription channel separate delivers flexibility when new subscription channels become available over time.
Once the subscription has been created, the deployer waits for the associate CSV(s) to be created and reach the Installed state.
If this is not the first installation, earlier configured cartridges may have been removed. This steps iterates over all supported cartridges and checks if the cartridge has been installed and wheter it exists in the configuration of the current cp4d object. If the cartridge is no longer defined, its custom resource is removed; the operator will then take care of removing all OpenShift configuration.
This steps creates the Custom Resources for each cartridge. This is the actual installation of the cartridge. Cartridges can be installed in parallel to a certain extent and the operator will wait for the dependencies to be installed first before starting the processes. For example, if Watson Studio and Watson Machine Learning are installed, both have a dependency on the Common Core Services (CCS) and will wait for the CCS object to reach the Completed state before proceeding with the install. Once that is the case, both WS and WML will run the installation process in parallel.
Installation of the cartridges can take a very long time; up to 5 hours for Watson Knowledge Catalog. While cartridges are being installed, the deployer checks the states of all cartridges on a regular basis and reports these in a log file. The deployer will retry until all specified cartridges have reached the Completed state.
Configure LDAP authentication for Cloud Pak for Data🔗
If LDAP has been configured for the Cloud Pak for Data element, it will be configured after all cartridges have finished installing.
\ No newline at end of file
diff --git a/30-reference/process/overview/index.html b/30-reference/process/overview/index.html
new file mode 100644
index 000000000..189febf29
--- /dev/null
+++ b/30-reference/process/overview/index.html
@@ -0,0 +1 @@
+ Overview - Cloud Pak Deployer
In this stage, the following activities are executed:
Show the Cloud Pak for Data URL and admin password
\ No newline at end of file
diff --git a/30-reference/process/prepare/index.html b/30-reference/process/prepare/index.html
new file mode 100644
index 000000000..437b40542
--- /dev/null
+++ b/30-reference/process/prepare/index.html
@@ -0,0 +1 @@
+ Prepare deployment - Cloud Pak Deployer
This stage mainly takes care of checking the configuration and expanding it where necessary so it can be used by subsequent stages. Additionally, the preparation also calls the roles that will generate Terraform or other configuration files which are needed for provisioning and configuration.
All yaml files in the config directory of the specified CONFIG_DIR are processed and a composite JSON object, all_config is created, which contains all configuration.
While processing the objects defined in the config directory files, the defaults directory is also processed to determine if any supplemental "default" variables must be added to the configuration objets. This makes it easy for example to ensure VSIs always use the correct Red Hat Enterprise Linux image available on IBM Cloud.
You will find the generator roles under the automation-generators directory. There are cloud-provider dependent roles such as openshift which have a structure dependent on the chosen cloud provider and there are generic roles such as cp4d which are not dependent on the cloud provider.
To find the appropriate role for the object, the generator first checks if the role is found under the specified cloud provider directory. If not found, it will call the role under generic.
Each of the objects have a syntax checking module called preprocessor.py. This Python program checks the attributes of the object in question and can also add defaults for properties which are missing. All errors found are collected and displayed at the end of the generator.
\ No newline at end of file
diff --git a/30-reference/process/provision-infra/index.html b/30-reference/process/provision-infra/index.html
new file mode 100644
index 000000000..c110dd4dd
--- /dev/null
+++ b/30-reference/process/provision-infra/index.html
@@ -0,0 +1 @@
+ Provision infrastructure - Cloud Pak Deployer
This stage will provision the infrastructure that was defined in the input configuration files. Currently, this has only been implemented for IBM Cloud.
The IBM Cloud infrastructure provisioning runs Terraform to initially provision the infrastructure components such as VPC, VSIs, security groups, ROKS cluster and others. Also, if changes have been made in the configuration, Terraform will attempt to make the changes to reach the desired end-state.
Based on the chosen action (apply or destroy), Terraform is instructed to provision or change the infrastructure components or to destroy everything.
The Terraform state file (tfstate) is maintained in the vault and is critical to enable dynamic updates to the infrastructure. If the state file is lost or corrupted, updates to the infrastructure will have to be done manually. The Ansible tasks have been built in a way that the Terraform state file is always persisted into the vault, even if the apply or destroy process has failed.
This step initializes the Terraform provider (ibm) with the correct version. If needed, the Terraform modules for the provider are downloaded or updated.
Applying changes to the infrastructure using Terraform based on the input configuration files may cause critical components to be replaced (destroyed and recreated). The plan step checks what will be changed. If infrastructure components are destroyed and the --confirm-destroy parameter has not be specified for the deployer, the process is aborted.
This is the execution of the plan and will provision new infrastructure (apply) or destroy everything (destroy).
While the Terraform apply or destroy process is running, a .tfstate file is updated on disk. When the command completes, the deployer writes this as a secret to the vault so it can be used next time to update (or destroy) the infrastructure components.
\ No newline at end of file
diff --git a/30-reference/process/smoke-tests/index.html b/30-reference/process/smoke-tests/index.html
new file mode 100644
index 000000000..4402e511e
--- /dev/null
+++ b/30-reference/process/smoke-tests/index.html
@@ -0,0 +1,2 @@
+ Smoke tests - Cloud Pak Deployer
This is the final stage before returning control to the process that started the deployer. Here tests to check that the Cloud Pak and its cartridges has been deployed correctly and that everything is running as expected.
The method for smoke tests should be dynamic, for example by referencing a Git repository and context (directory within the repository); the code within that directory then deploys the asset(s).
With this information you can go to the Cloud Pak for Data URL and login using the admin user.
\ No newline at end of file
diff --git a/30-reference/process/validate/index.html b/30-reference/process/validate/index.html
new file mode 100644
index 000000000..649fed5eb
--- /dev/null
+++ b/30-reference/process/validate/index.html
@@ -0,0 +1 @@
+ Validate - Cloud Pak Deployer
In this stage, the following activities are executed:
Is the specified cloud platform in the inventory file supported?
Are the mandatory variables defined?
Can the deployer connect to the specified vault?
\ No newline at end of file
diff --git a/30-reference/timings/index.html b/30-reference/timings/index.html
new file mode 100644
index 000000000..7a41bfce3
--- /dev/null
+++ b/30-reference/timings/index.html
@@ -0,0 +1 @@
+ Timings - Cloud Pak Deployer
Install ROKS OCS add-on and create storage classes
45
40 - Configure infrastructure
Install NFS on VSIs
10
Create NFS storage classes
5
Create private container registry namespace
5
50 - Install Cloud Pak
Prepare OpenShift for Cloud Pak for Data install
60
During this step, the compute nodes may be replaced and also the Kubernetes services may be restarted.
Mirror Cloud Pak for Data images to private registry (only done when using private registry)
30-600
If the entitled registry is used, this step will be skipped. When using a private registry, if images have already been mirrored, the duration will be much shorter, approximately 10 minutes.
Install Cloud Pak for Data control plane
20
Create Cloud Pak for Data subscriptions for cartridges
15
Install cartridges
20-300
The amount of time really depends on the cartridges being installed. In the table below you will find an estimate of the installation time for each cartridge. Cartridges will be installed in parallel through the operators.
60 - Configure Cloud Pak
Configure Cloud Pak for Data LDAP
5
Provision instances for cartridges
30-60
For cartridges that have instances defined. Creation of the instances will run in parallel where possible.
Configure cartridge and instance permissions based on LDAP config
Cloud Pak for Data installation with just Cognos Analytics will take 20 (control plane) + 75 (ccs) + 20 (ca) + 45 (ca instance) = ~160 minutes
Cloud Pak for Data installation with Cognos Analytics and Watson Studio will take 20 (control plane) + 75 (ccs) + 45 (ws+ca) + 45 (ca instance) = ~185 minutes
Cloud Pak for Data installation with just Watson Knowledge Catalog will take 20 (control plane) + 75 (ccs) + 30 (db2aas) + 60 (iis) + 90 (wkc) = ~275 minutes
Cloud Pak for Data installation with Watson Knowledge Catalog and Watson Studio will take the same time because WS will finish 30 minutes after installing CCS, while WKC will take a lot longer to complete
\ No newline at end of file
diff --git a/40-troubleshooting/cp4d-uninstall/index.html b/40-troubleshooting/cp4d-uninstall/index.html
new file mode 100644
index 000000000..eb3d74c63
--- /dev/null
+++ b/40-troubleshooting/cp4d-uninstall/index.html
@@ -0,0 +1 @@
+ Cloud Pak for Data uninstall - Cloud Pak Deployer
Uninstall Cloud Pak for Data and Foundational Services🔗
For convenience, the Cloud Pak Deployer includes a script that removes the Cloud Pak for Data instance from the OpenShift cluster, then Cloud Pak Foundational Services and finally the catalog sources and CRDs.
Steps:
Make sure you are connected to the OpenShift cluster
Run script ./scripts/cp4d/cp4d-delete-instance.sh <CP4D_project>
You will have to confirm that you want to delete the instance and all other artifacts.
Warning
Please be very careful with this command. Ensure you are connected to the correct OpenShift cluster and that no other Cloud Paks use operator namespace. The action cannot be undone.
\ No newline at end of file
diff --git a/40-troubleshooting/ibm-cloud-access-nfs-server/index.html b/40-troubleshooting/ibm-cloud-access-nfs-server/index.html
new file mode 100644
index 000000000..16f18d339
--- /dev/null
+++ b/40-troubleshooting/ibm-cloud-access-nfs-server/index.html
@@ -0,0 +1,69 @@
+ Access NFS server provisioned on IBM Cloud - Cloud Pak Deployer
When choosing the "simple" sample configuration for ROKS VPC on IBM Cloud, the deployer also provisions a Virtual Server Instance and installs a standard NFS server on it. In some cases you may want to get access to the NFS server for troubleshooting.
For security reasons, the NFS server can only be reached via a bastion server that is connected to the internet, i.e. use the bastion server as a jump host, this to avoid exposing NFS volumes to the outside world and provide an extra layer of protection. Additionally, password login is disabled on both the bastion and NFS servers and one must use the private SSH key to connect.
Getting SSH access to the NFS server is easiest from within the deployer container as it has all tools installed to extract the IP addresses from the Terraform state file.
Optional: Ensure that the environment variables for the configuration and status directories are set. If not specified, the directories are assumed to be $HOME/cpd-config and $HOME/cpd-status.
-------------------------------------------------------------------------------
+Entering Cloud Pak Deployer command line in a container.
+Use the "exit" command to leave the container and return to the hosting server.
+-------------------------------------------------------------------------------
+Installing OpenShift client
+Current OpenShift context: pluto-01
+
Access to both the bastion and NFS servers are typically protected by the same SSH key, which is stored in the vault. To list all vault secrets, run the command below.
cd /cloud-pak-deployer
+./cp-deploy.sh vault list
+
Then, retrieve the private key (in the above example pluto-01-provision-ssh-key) to an output file in your ~/.ssh directory, make sure it has the correct private key format (new line at the end) and permissions (600).
To connect to the NFS server, you need the public IP address of the bastion server and the private IP address of the NFS server. Obviously these can be retrieved from the IBM Cloud resource list (https://cloud.ibm.com/resources), but they are also kept in the Terraform "tfstate" file
./cp-deploy.sh vault get -vs sample-terraform-tfstate \
+ -vsf /tmp/sample-terraform-tfstate
+
The below commands do not provide the prettiest output but you should be able to extract the IP addresses from them.
For the bastion node public (floating) IP address:
Once you've finished exploring the NFS server, you can exit from it:
exit
+
Finally, exit from the deployer container which is then terminated.
exit
+
\ No newline at end of file
diff --git a/404.html b/404.html
new file mode 100644
index 000000000..721da0b33
--- /dev/null
+++ b/404.html
@@ -0,0 +1 @@
+ Cloud Pak Deployer
\ No newline at end of file
diff --git a/50-advanced/advanced-configuration/index.html b/50-advanced/advanced-configuration/index.html
new file mode 100644
index 000000000..7a2f11c4e
--- /dev/null
+++ b/50-advanced/advanced-configuration/index.html
@@ -0,0 +1,59 @@
+ Advanced configuration - Cloud Pak Deployer
The Cloud Pak Deployer includes several samples which you can use to build your own configuration. You can find sample configuration yaml files in the sub-directories of the sample-configurations directory of the repository. Descriptions and topologies are also included in the sub-directories.
Warning
Do not make changes to the sample configurations in the cloud-pak-deployer directory, but rather copy it to your own home directory or somewhere else and then make changes. If you store your own configuration under the repository's clone, you may not be able to update (pull) the repository with changes applied on GitHub, or accidentally overwrite it.
Warning
The deployer expects to manage all objects referenced in the configuration files, including the referenced OpenShift cluster and Cloud Pak installation. If you have already pre-provisioned the OpenShift cluster, choose a configuration with existing-ocp cloud platform. If the Cloud Pak has already been installed, unexpected and undesired activities may happen. The deployer has not been designed to alter a pre-provisioned OpenShift cluster or existing Cloud Pak installation.
Edit the "cp4d-....yaml" file and select the cartridges to be installed by changing the state to installed. Additionally you can accept the Cloud Pak license in the config file by specifying accept_licenses: True.
nano ./config/cp4d-450.yaml
+
The configuration typically works without any configuration changes and will create all referenced objects, including the Virtual Private Cloud, subnets, SSH keys, ROKS cluster and OCS storage ndoes. There is typically no need to change address prefixes and subnets. The IP addresses used by the provisioned components are private to the VPC and are not externally exposed.
Configuration steps - dynamically choose OpenShift and Cloud Pak🔗
Copy the sample configuration directory to your own directory:
mkdir -p $HOME/cpd-config/config
+
Copy the relevant OpenShift configuration file from the samples-configuration directory to the config directory, for example:
Edit the "$HOME/cpd-config/config/cp4d-....yaml" file and select the cartridges to be installed by changing the state to installed. Additionally you can accept the Cloud Pak license in the config file by specifying accept_licenses: True.
nano $HOME/cpd-config/config/cp4d-463.yaml
+
For more advanced configuration topics such as using a private registry, setting up transit gateways between VPCs, etc, go to the Advanced configuration section
You can choose to keep only a single file per subdirectory or, for more complex configurations, you can create multiple yaml files. You can find a full list of all supported object types here: Configuration objects. The generator automatically merges all .yaml files in the config and defaults directory. Files with different extensions are ignored. In the sample configurations we split configuration of the OpenShift ocp-... and Cloud Pak cp4.-... objects.
For example, your config directory could hold the following files:
cp4d-463.yaml
+ocp-ibm-cloud-roks-ocs.yaml
+
This will provision a ROKS cluster on IBM Cloud with OpenShift Data Foundation (fka OCS) and Cloud Pak for Data 4.0.8.
Holds the defaults for all object types. If a certain object property has not been specified in the config directory, it will be retrieved from the defaults directory using the flavour specified in the configured object. If no flavour has been selected, the default flavour will be chosen.
You should not need this subdirectory in most circumstances.
Optional directory holding the assets you wish to deploy for the Cloud Pak. More information about Cloud Pak for Data assets which can be deployed can be found in object definition cp4d_asset. The directory can be named differently as well, for example cp4d-assets or customer-churn-demo.
The Cloud Pak Deployer pipeline has been built using Ansible and it can be configured using "inventory" files. Inventory files allow you to specify global variables used throughout Ansible playbooks. In the current version of the Cloud Pak Deployer, the inventory directory has become fully optional as the global_config and vault objects have taken over its role. However, if there are certain global variables such as env_id you want to pass via an inventory file, you can also do this.
User passwords, certificates and other "secret" information is kept in the vault, which can be either a flat file (not encrypted), HashiCorp Vault or the IBM Cloud Secrets Manager service. Some of the deployment configurations require that the vault is pre-populated with secrets which as needed during the deployment. For example, a vSphere deployment needs the vSphere user and password to authenticate to vSphere and Cloud Pak for Data SAML configuration requires the idP certificate
All samples default to the File Vault, meaning that the vault will be kept in the vault directory under the status directory you specify when you run the deployer. Detailed descriptions of the vault settings can be found in the sample inventory file and also here: vault settings.
Optional: Ensure that the environment variables for the configuration and status directories are set. If not specified, the directories are assumed to be $HOME/cpd-config and $HOME/cpd-status.
If the configuration is kept in a GitHub repository, you can set environment variables to have the deployer pull the GitHub repository to the current server before starting the process.
CPD_CONFIG_GIT_REPO: The clone URL of the GitHub repository that holds the configuration.
CPD_CONFIG_GIT_REF: The branch, tag or commit ID to be cloned. If not specified, the repository's default branch will be cloned.
CPD_CONFIG_GIT_CONTEXT: The directory within the GitHub repository that holds the configuration. This directory must contain the config directory under which the YAML files are kept.
Info
When specifying a GitHub repository, the contents will be copied under $STATUS_DIR/cpd-config and this directory is then set as the configuration directory.
In some situations you may want to use a single configuration for deployment in different environments, such as development, acceptance test and production. The Cloud Pak Deployer uses the Jinja2 templating engine which is included in Ansible to pre-process the configuration. This allows you to dynamically adjust the configuration based on extra variables you specify at the command line.
This passes the env_id and ibm_cloud_region variables to the Cloud Pak Deployer, which can then populate variables in the configuration. In the sample configurations, the env_id is used to specify the name of the VPC, ROKS cluster and others and overrides the value specified in the global_config definition. The ibm_cloud_region overrides region specified in the inventory file.
\ No newline at end of file
diff --git a/50-advanced/alternative-repo-reg/index.html b/50-advanced/alternative-repo-reg/index.html
new file mode 100644
index 000000000..1bb5fd5aa
--- /dev/null
+++ b/50-advanced/alternative-repo-reg/index.html
@@ -0,0 +1,31 @@
+ Using alternative CASE repositories and registries - Cloud Pak Deployer
In most scenarios you will not need this type of configuration.
Alternative repositories and registries are mainly geared towards pre-GA use of the Cloud Paks where CASE files are downloaded from internal repositories and staging container image registries need to be used as images have not been released yet.
By default the Cloud Pak Deployer image is built on top of the olm-utils images in icr.io. If you're working with a pre-release of the Cloud Pak OLM utils image, you can override the setting as follows:
Configuring the alternative repositories and registries🔗
When specifying a cp_alt_repo object in a YAML file, this is used for all Cloud Paks. The object triggers the following steps: * The following files are created in the /tmp/work directory in the container: play_env.sh, resolvers.yaml and resolvers_auth. * When downloading CASE files using the ibm-pak plug-in, the play_env sets the locations of the resolvers and authorization files. * Also, the locations of the case files for the Cloud Pak, Foundational Servides and Open Content are set in an enviroment variable. * Registry mirrors are configured using an ImageContentSourcePolicy resource in the OpenShift cluster. * Registry credentials are added to the OpenShift cluster's global pull secret.
To run the deployer you can now use the standard process:
./cp-deploy.sh env apply -v
+
\ No newline at end of file
diff --git a/50-advanced/apply-node-settings-non-mco/index.html b/50-advanced/apply-node-settings-non-mco/index.html
new file mode 100644
index 000000000..d597b2ce0
--- /dev/null
+++ b/50-advanced/apply-node-settings-non-mco/index.html
@@ -0,0 +1,44 @@
+ Apply OpenShift node settings when machine config operator does not exist - Cloud Pak Deployer
Apply OpenShift node settings when machine config operator does not exist🔗
Cloud Pak Deployer automatically applies cluster and node settings before installing the Cloud Pak(s). Sometimes you may also want to automate applying these node settings without installing the Cloud Pak. For convenience, the repository includes a script that makes the same changes normally done through automation: scripts/cp4d/cp4d-apply-non-mco-cluster-settings.sh.
To apply the node settings, do the following:
If images are pulled from the entitled registry, set the CP_ENTITLEMENT_KEY environment variable
If images are to be pulled from a private registry, set both the CPD_PRIVATE_REGISTRY and CPD_PRIVATE_REGISTRY_CREDS environment variables
Log in to the OpenShift cluster with cluster-admin permissions
Run the scripts/cp4d/cp4d-apply-non-mco-cluster-settings.sh script.
The CPD_PRIVATE_REGISTRY value must reference the registry host name and optionally the port and namespace that must prefix the images. For example, if the images are kept in https://de.icr.io/cp4d-470, you must specify de.icr.io/cp4d-470 for the CPD_PRIVATE_REGISTRY environment variable. If images are kept in https://cust-reg:5000, you must specify cust-reg:5000 for the CPD_PRIVATE_REGISTRY environment variable.
For the CPD_PRIVATE_REGISTRY_CREDS value, specify both the user and password in a single string, separated by a colon (:). For example: admin:secret_passw0rd.
Warning
When setting the private registry and its credentials, the script automatically creates the configuration that will set up ImageContentSourcePolicy and global pull secret alternatives. This change cannot be undone using the script. It is not possible to set the private registry and later change to entitled registry. Changing the private registry's credentials can be done by re-running the script with the new credentials.
Creating ConfigMaps and secret
+configmap "cloud-pak-node-fix-scripts" deleted
+configmap/cloud-pak-node-fix-scripts created
+configmap "cloud-pak-node-fix-config" deleted
+configmap/cloud-pak-node-fix-config created
+secret "cloud-pak-node-fix-secrets" deleted
+secret/cloud-pak-node-fix-secrets created
+Setting global pull secret
+/tmp/.dockerconfigjson
+info: pull-secret was not changed
+secret/cloud-pak-node-fix-secrets data updated
+Private registry specified, creating ImageContentSourcePolicy for registry de.icr.io/cp4d-470
+Generating Tuned config
+tuned.tuned.openshift.io/cp4d-ipc unchanged
+Writing fix scripts to config map
+configmap/cloud-pak-node-fix-scripts data updated
+configmap/cloud-pak-node-fix-scripts data updated
+configmap/cloud-pak-node-fix-scripts data updated
+configmap/cloud-pak-node-fix-scripts data updated
+Creating service account for DaemonSet
+serviceaccount/cloud-pak-crontab-sa unchanged
+clusterrole.rbac.authorization.k8s.io/system:openshift:scc:privileged added: "cloud-pak-crontab-sa"
+Recreate DaemonSet
+daemonset.apps "cloud-pak-crontab-ds" deleted
+daemonset.apps/cloud-pak-crontab-ds created
+Showing running DaemonSet pods
+NAME READY STATUS RESTARTS AGE
+cloud-pak-crontab-ds-b92f9 0/1 Terminating 0 12m
+cloud-pak-crontab-ds-f85lf 0/1 ContainerCreating 0 0s
+cloud-pak-crontab-ds-jlbvm 0/1 ContainerCreating 0 0s
+cloud-pak-crontab-ds-rbj65 1/1 Terminating 0 12m
+cloud-pak-crontab-ds-vckrs 0/1 ContainerCreating 0 0s
+cloud-pak-crontab-ds-x288p 1/1 Terminating 0 12m
+Waiting for 5 seconds for pods to start
+
+Showing running DaemonSet pods
+NAME READY STATUS RESTARTS AGE
+cloud-pak-crontab-ds-f85lf 1/1 Running 0 5s
+cloud-pak-crontab-ds-jlbvm 1/1 Running 0 5s
+cloud-pak-crontab-ds-vckrs 1/1 Running 0 5s
+
\ No newline at end of file
diff --git a/50-advanced/gitops/index.html b/50-advanced/gitops/index.html
new file mode 100644
index 000000000..d732f8734
--- /dev/null
+++ b/50-advanced/gitops/index.html
@@ -0,0 +1,15 @@
+ Continuous Adoption using GitOps - Cloud Pak Deployer
The process of supporting multiple products, releases and patch levels within a release has great similarity to the git-flow model, which has been really well-described by Vincent Driessen in his blog post: https://nvie.com/posts/a-successful-git-branching-model/. This model has been and is still very popular with many software-development teams.
Below is a description of how a git-flow could be implemented with the Cloud Pak Deployer. The following steps are covered:
Setting up the company's Git and image registry for the Cloud Paks
There are 4 Cloud Pak environments within the company's domain: Dev, UAT, Pre-prod and Prod. Each of these environments have a namespace in the company's registry (or an isolated registry could be created per environment) and the Cloud Pak release installed is represented by manifests in a branch of the Git repository, respectively dev, uat, pp and prod.
Organizing registries by namespace has the advantage that duplication of images can be avoided. Each of the namespaces can have their own set of images that have been approved for running in the associated environment. The image itself is referenced by digest (i.e., checksum) and organized on disk as such. If one tries to copy an image to a different namespace within the same registry, only a new entry is created, the image itself is not duplicated because it already exists.
The manifests (CASE files) representing the Cloud Pak components are present in each of the branches of the Git repository, or there is a configuration file that references the location of the case file, including the exact version number.
In the Cloud Pak Deployer, we have chosen to reference the CASE versions in the configuration, for example:
If Cloud Pak for Data has been configured with a private registry in the deployer config, the deployer will mirror images from the IBM entitled registry to the private registry. In the above configuration, no private registry has been specified. The deployer will automatically download and use the CASE files to create the catalog sources.
With the initial status in place, the continuous adoption process may commence, using the principles of git-flow.
Git-flow addresses a couple of needs for continuous adoption:
Control and visibility over what software (version) runs in which environment; there is a central truth which describes the state of every environment managed
New features (in case of the deployer: new operator versions and custom resources) can be tested without affecting the pending releases or production implementation
While preparing for a new release, hot fixes can still be applied to the production environments
The Git repository consists of 4 branches: dev, uat, pp and prd. At the start, release 4.0.0 is being implemented and it will go through the stages from dev to prd. When the installation has been tested in development, a pull request (PR) is done to promote to the uat branch. The PR is reviewed, and changes are then merged into the uat branch. After testing in the uat branch, the steps are repeated until the 4.0.0 release is eventually in production.
With each of the implementation and promotion steps, the registry namespaces and associated with the particular branch are updated with the images described in the manifests kept in the Git repository. Additionally, the changes are installed in the respective environments. The details of these processes will be outlined later.
New patches are received, committed and installed on the dev branch on a regular basis and when no issues are found, the changes are gathered into a PR for uat. When no issues are found for 2 weeks, another PR is done for the pp branch and eventually for prd. During this promotion flow, new patches are still being received in dev.
While version 4.0.2 is running in production, a critical defect is found for which a hot fix is developed. The hot fix is first committed to the pp branch and tested and then a PR is made to promote it to the prd branch. In the meantime, the dev and uat branches continue with their own release schedule. The hot fix is included in 4.0.4 which will be promoted as part of the 4.0.5 release.
The uat, pp and prd branches can be protected by a branch protection rule so that changes from dev can only be promoted (via a pull request) after an approving review or, when the intention is to promote changes in a fully automated manner, after passing status checks and testing. Read Managing a branch protection rule for putting in these controls in GitHub or Protected branches for GitLab.
With this flow, there is control over patches, promotion approvals and releases installed in each of the environments. Additional branches could be introduced if additional environments are in play or if different releases are being managed using the git-flow.
As discussed above, patches are first "developed" in the dev branch, i.e., changes are fed into the Git repository, images are loaded into the company's registry (dev namespace) and the installed into the Dev environment.
The process of receiving and installing the patches is common for all Cloud Paks: the cloudctl case tool downloads the CASE file associated with the operator version and the same CASE file can be used to upload images into the company's registry. Then a Catalog Source is created which makes the images available to the operator subscriptions, which in turn manage the various custom resources in the Cloud Pak instance. For example, the ws operator manages the Ws custom resource and this CR ensures that OpenShift deployments, secrets, Config Maps, Stateful Sets, and so forth are managed within the Cloud Pak for Data instance project.
In the git-flow example, Watson Studio release 4.0.2 is installed by updating the Catalog Source. Detailed installation steps for Cloud Pak for Data can be found in the IBM documentation.
Now that the hard work of managing changes to the Git repository branches and image registry namespaces has been done, we can look at the (automatic) deployment of the changes.
In a continuous adoption workflow, the implementation of new releases and patches is automated by means of a pipeline, which allows for deployment and testing in a predictable and controlled manner. A pipeline executes a series of steps to inspect the change and then run the command to install it in the respective environment. Moreover, after installation tests can be automatically executed. The most-popular tools for pipelines are ArgoCD, GitLab pipelines and Tekton (serverless).
To link the execution of a pipeline with the git-flow pull request, one can use ArcoCD or a GitHub/GitLab webhook. As soon as a PR is accepted and changes are applied to the Git branch, the pipeline is triggered and will run the Cloud Pak Deployer to automatically apply the changes according to the latest version.
\ No newline at end of file
diff --git a/50-advanced/images/air-gapped-overview.drawio b/50-advanced/images/air-gapped-overview.drawio
new file mode 100644
index 000000000..1d645e3da
--- /dev/null
+++ b/50-advanced/images/air-gapped-overview.drawio
@@ -0,0 +1 @@
+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
\ No newline at end of file
diff --git a/50-advanced/images/air-gapped-portable.png b/50-advanced/images/air-gapped-portable.png
new file mode 100644
index 000000000..b809ed17a
Binary files /dev/null and b/50-advanced/images/air-gapped-portable.png differ
diff --git a/50-advanced/images/directory-structure.drawio b/50-advanced/images/directory-structure.drawio
new file mode 100644
index 000000000..1ae684fe8
--- /dev/null
+++ b/50-advanced/images/directory-structure.drawio
@@ -0,0 +1 @@
+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
\ No newline at end of file
diff --git a/50-advanced/images/directory-structure.png b/50-advanced/images/directory-structure.png
new file mode 100644
index 000000000..024b17017
Binary files /dev/null and b/50-advanced/images/directory-structure.png differ
diff --git a/50-advanced/images/git-flow.png b/50-advanced/images/git-flow.png
new file mode 100644
index 000000000..2ead3b759
Binary files /dev/null and b/50-advanced/images/git-flow.png differ
diff --git a/50-advanced/images/gitops-pictures.pptx b/50-advanced/images/gitops-pictures.pptx
new file mode 100644
index 000000000..0e2912e49
Binary files /dev/null and b/50-advanced/images/gitops-pictures.pptx differ
diff --git a/50-advanced/images/governed-process-ca.png b/50-advanced/images/governed-process-ca.png
new file mode 100644
index 000000000..6332f8ec7
Binary files /dev/null and b/50-advanced/images/governed-process-ca.png differ
diff --git a/50-advanced/images/not-air-gapped.png b/50-advanced/images/not-air-gapped.png
new file mode 100644
index 000000000..f37c2b395
Binary files /dev/null and b/50-advanced/images/not-air-gapped.png differ
diff --git a/50-advanced/images/semi-air-gapped.png b/50-advanced/images/semi-air-gapped.png
new file mode 100644
index 000000000..0100abc05
Binary files /dev/null and b/50-advanced/images/semi-air-gapped.png differ
diff --git a/50-advanced/locations-to-whitelist/index.html b/50-advanced/locations-to-whitelist/index.html
new file mode 100644
index 000000000..aadb4cc29
--- /dev/null
+++ b/50-advanced/locations-to-whitelist/index.html
@@ -0,0 +1 @@
+ Locations to whitelist on bastion - Cloud Pak Deployer
When building or running the deployer in an environment with strict policies for internet access, you may have to specify the list of URLs that need to be accessed by the deployer.
Locations to whitelist when building the deployer image.🔗
Location
Used for
registry.access.redhat.com
Base image
icr.io
olm-utils base image
cdn.redhat.com
Installing operating system packages
cdn-ubi.redhat.com
Installing operating system packages
rpm.releases.hashicorp.com
Hashicorp Vault integration
dl.fedoraproject.org
Extra Packages for Enterprise Linux (EPEL)
mirrors.fedoraproject.org
EPEL mirror site
fedora.mirrorservice.org
EPEL mirror site
pypi.org
Python packages for deployer
galaxy.ansible.com
Ansible Galaxy packages
Locations to whitelist when running the deployer for existing OpenShift.🔗
Location
Used for
github.com
Case files, Cloud Pak clients: cloudctl, cpd-cli, cpdctl
gcr.io
Google Container Registry (GCR)
objects.githubusercontent.com
Binary content for github.com
raw.githubusercontent.com
Binary content for github.com
mirror.openshift.com
OpenShift client
ocsp.digicert.com
Certificate checking
subscription.rhsm.redhat.com
OpenShift subscriptions
\ No newline at end of file
diff --git a/50-advanced/private-registry-and-air-gapped/index.html b/50-advanced/private-registry-and-air-gapped/index.html
new file mode 100644
index 000000000..36e925c15
--- /dev/null
+++ b/50-advanced/private-registry-and-air-gapped/index.html
@@ -0,0 +1,44 @@
+ Private registry and air-gapped - Cloud Pak Deployer
Some environments, especially in situations where the OpenShift cannot directly connect to the internet, require a private registry for OpenShift to pull the Cloud Pak images from. The Cloud Pak Deployer can mirror images from the entitled registry to a private registry that you want to use for the Cloud Pak(s). Also, if infrastructure which holds the OpenShift cluster is fully disconnected from the internet, the Cloud Pak Deployer can build a registry which can be stored on a portable hard disk or pen drive and then shipped to the site.
Info
Note: In all cases, the deployer can work behind a proxy to access the internet. Go to Running behind proxy for more information.
The below instructions are not limited to disconnected (air-gapped) OpenShift clusters, but are more generic for deployment using a private registry.
There are three use cases for mirroring images to a private registry and using this to install the Cloud Pak(s):
Use case 2 - Mirror images with a connected server, install using a bastion. The connected server can connect to the internet and to the private registry used by the OpenShift cluster. The server cannot connect to the OpenShift cluster. The bastion server can connect to the private registry and to the OpenShift cluster.
Use case 3 - Mirror images using a portable image registry. The private registry used by the OpenShift cluster cannot be reached from the server that is connected to the internet. You need a portable registry to download images and which you then ship to a server that can connect to the existing OpenShift cluster and its private registry.
For specifying a private registry in the Cloud Pak Deployer configuration, please see Private registry. Example of specifying a private registry with a self-signed certificate in the configuration:
The deployer only supports using a private registry for the Cloud Pak images, not for OpenShift itself. Air-gapped installation of OpenShift is currently not in scope for the deployer.
Warning
The registry_host_name you specify in the image_registry definition must also be available for DNS lookup within OpenShift. If the registry runs on a server that is not registered in the DNS, use its IP address instead of a host name.
The main 3 directories that are needed for both types of air-gapped installations are:
Cloud Pak Deployer directory: cloud-pak-deployer
Configuration directory: The directory that holds a all the Cloud Pak Deployer configuration
Status directory: The directory that will hold all downloads, vault secrets and the portable registry when applicable (use case 3)
Fpr use cases 2 and 3, where the directories must be shipped to the air-gapped cluster, the Cloud Pak Deployer and Configuration directories will be stored in the Status directory for simplicity.
Use case 1 - Mirror images and install using a bastion server🔗
This is effectively "not-air-gapped" scenario, where the following conditions apply:
The private registry is hosted inside the private dloud
The bastion server can connect to the internet and mirror images to the private image registry
The bastion server is optionally connected to the internet via a proxy server. See Running behind a proxy for more details
The bastion server is connected to the internet and OpenShift cluster.
If there are restrictions regarding the internet sites that can be reached, ensure that the website domains the deployer needs are whitelisted. For a list of domains, check locations to whitelist
If a proxy server is configured for the bastion node, check the settings (http_proxy, https_proxy, no_proxy environment variables)
Build the Cloud Pak Deployer image using ./cp-deploy.sh build
Create or update the directory with the configuration; make sure all your Cloud Paks and cartridges are specified as well as an image_registry entry to identify the private registry
Export the CONFIG_DIR and STATUS_DIR environment variables to respectively point to the configuration directory and the status directory
Export the CP_ENTITLEMENT_KEY environment variable with your Cloud Pak entitlement key
Create a vault secret image-registry-<name> holding the connection credentials for the private registry specified in the configuration (image_registry). For example for a registry definition with name cpd453, create secret image-registry-cpd453.
Run the ./cp-deploy.sh env apply command to start deployment of the Cloud Pak to the OpenShift cluster. For example:
./cp-deploy.sh env apply
+
The existence of the image_registry definition and its reference in the cp4d definition instruct the deployer to mirror images to the private registry and to configure the OpenShift cluster to pull images from the private registry. If you have already mirrored the Cloud Pak images, you can add the --skip-mirror-images parameter to speed up the deployment process.
Use case 2 - Mirror images with an internet-connected server, install using a bastion🔗
This use case is also sometimes referred to as "semi-air-gapped", where the following conditions apply:
The private registry is hosted outside of the private cloud that hosts the bastion server and OpenShift
An internet-connected server external to the private cloud can reach the entitled registry and the private registry
The internet-connected server is optionally connected to the internet via a proxy server. See Running behind a proxy for more details
The bastion server cannot connect to the internet
The bastion server can connect to OpenShift
Warning
Please note that in this case the Cloud Pak Deployer expects an OpenShift cluster to be available already and will only work with an existing-ocp configuration. The bastion server does not have access to the internet and can therefore not instantiate an OpenShift cluster.
If there are restrictions regarding the internet sites that can be reached, ensure that the website domains the deployer needs are whitelisted. For a list of domains, check locations to whitelist
If a proxy server is configured for the internet-connected server, check the settings (http_proxy, https_proxy, no_proxy environment variables)
Build the Cloud Pak Deployer image using ./cp-deploy.sh build
Create or update the directory with the configuration; make sure all your Cloud Paks and cartridges are specified as well as an image_registry entry to identify the private registry
Export the CONFIG_DIR and STATUS_DIR environment variables to respectively point to the configuration directory and the status directory
Export the CP_ENTITLEMENT_KEY environment variable with your Cloud Pak entitlement key
Create a vault secret image-registry-<name> holding the connection credentials for the private registry specified in the configuration (image_registry). For example for a registry definition with name cpd453, create secret image-registry-cpd453.
This will download all clients to the status directory and then mirror images from the entitled registry to the private registry. If mirroring fails, fix the issue and just run the env download again.
Before saving the status directory, you can optionally remove the entitlement key from the vault:
When the download finished successfully, the status directory holds the deployer scripts, the configuration directory and the deployer container image.
Run the cp-deploy.sh env apply --skip-mirror-images command to start deployment of the Cloud Pak to the OpenShift cluster. For example:
cd cloud-pak-deployer
+./cp-deploy.sh env apply \
+ --skip-mirror-images
+
The CPD_AIRGGAP environment variable tells the deployer it will not download anything from the internet; --skip-mirror-images indicates that images are already available in the private registry that is included in the configuration (image_registry)
Use case 3 - Mirror images using a portable image registry🔗
This use case is also usually referred to as "air-gapped", where the following conditions apply:
The private registry is hosted in the private cloud that hosts the bastion server and OpenShift
The bastion server cannot connect to the internet
The bastion server can connect to the private registry and the OpenShift cluster
The internet-connected server cannot connect to the private cloud
The internet-connected server is optionally connected to the internet via a proxy server. See Running behind a proxy for more details
You need a portable registry to fill the private registry with the Cloud Pak images
Warning
Please note that in this case the Cloud Pak Deployer expects an OpenShift cluster to be available already and will only work with an existing-ocp configuration. The bastion server does not have access to the internet and can therefore not instantiate an OpenShift cluster.
If there are restrictions regarding the internet sites that can be reached, ensure that the website domains the deployer needs are whitelisted. For a list of domains, check locations to whitelist
If a proxy server is configured for the bastion node, check the settings (http_proxy, https_proxy, no_proxy environment variables)
Build the Cloud Pak Deployer image using cp-deploy.sh build
Create or update the directory with the configuration, making sure all your Cloud Paks and cartridges are specified
Export the CONFIG_DIR and STATUS_DIR environment variables to respectively point to the configuration directory and the status directory
Export the CP_ENTITLEMENT_KEY environment variable with your Cloud Pak entitlement key
Run the deployer using the ./cp-deploy.sh env download command. For example:
./cp-deploy.sh env download
+
This will download all clients, start the portable registry and then mirror images from the entitled registry to the portable registry. The portable registry data is kept in the status directory. If mirroring fails, fix the issue and just run the env download again.
Before saving the status directory, you can optionally remove the entitlement key from the vault:
When the download finished successfully, the status directory holds the deployer scripts, the configuration directory, the deployer container image and the portable registry.
Ship the status directory from the internet-connected server to the bastion server.
You can use tar with gzip mode or any other compression technique. The status directory now holds all assets required for the air-gapped installation and its size can be substantial (100+ GB). You may want to use multi-volume tar files if you are using network transfer.
See the air-gapped installation of Cloud Pak for Data in action: https://ibm.box.com/v/cpd-air-gapped-install. For the demonstration video, the download of the previous step has first been re-run to only download the Cloud Pak for Data control plane to avoid having to ship and upload ~700 GB.
We're using the instructions in Run on existing OpenShift, adding the CPD_AIRGAP environment variable.
Restore the status directory onto the bastion server. Make sure the volume to which you restore has enough space to hold the entire status directory, which includes the portable registry.
Export the STATUS_DIR environment variable to point to the status directory
Untar the cloud-pak-deployer scripts, for example:
tar xvzf $STATUS_DIR/cloud-pak-deployer.tar.gz
+cd cloud-pak-deployer
+
Set the CPD_AIRGAP environment variable to true
export CPD_AIRGAP=true
+
Set the environment variable for the oc login command. For example:
Create a vault secret image-registry-<name> holding the connection credentials for the private registry specified in the configuration (image_registry). For example for a registry definition with name cpd453, create secret image-registry-cpd453.
Run the ./cp-deploy.sh env apply command to start deployment of the Cloud Pak to the OpenShift cluster. For example:
./cp-deploy.sh env apply
+
The CPD_AIRGGAP environment variable tells the deployer it will not download anything from the internet. As a first action, the deployer mirrors images from the portable registry to the private registry included in the configuration (image_registry)
If the Cloud Pak Deployer is run from a server that has the HTTP proxy environment variables set up, i.e. "proxy" environment variables are configured on the server and in the terminal session, it will also apply these settings in the deployer container.
The following environment variables are automatically applied to the deployer container if set up in the session running the cp-deploy.sh command:
http_proxy
https_proxy
no_proxy
If you do not want the deployer to use the proxy environment variables, you must remove them before running the cp-deploy.sh command:
Special settings for debug and DaemonSet images in air-gapped mode🔗
Specifically when running the deployer on IBM Cloud ROKS, certain OpenShift settings must be applied using DaemonSets in the kube-system namespace. Additionally, the deployer uses the oc debug node commands to retrieve kubelet and crio configuration files from the compute nodes.
The default container images used by the DaemonSets and oc debug node commands are based on Red Hat's Universal Base Image and will be pulled from Red Hat registries. This is typically not possible in air-gapped installations, hence different images must be used. It is your responsibility to copy suitable (preferably UBI) images to an image registry that is connected to the OpenShift cluster. Also, if a pull secret is needed to pull the image(s) from the registry, you must create the associated secret in the kube-system OpenShift project.
To configure alternative container images for the deployer to use, set the following properties in the .inv file kept in your configuration's inventory directory, or specify them as additional command line parameters for the cp-deploy.sh command.
If you do not set these values, the deployer assumes that the default images are used for DaemonSet and oc debug node.
Property
Description
Example
cpd_oc_debug_image
Container image to be used for the oc debug command.
registry.redhat.io/rhel8/support-tools:latest
cpd_ds_image
Container image to be used for the DaemonSets that configure Kubelet, etc.
registry.access.redhat.com/ubi8/ubi:latest
\ No newline at end of file
diff --git a/50-advanced/run-on-openshift/build-image-and-run-deployer-on-openshift/index.html b/50-advanced/run-on-openshift/build-image-and-run-deployer-on-openshift/index.html
new file mode 100644
index 000000000..2d130522a
--- /dev/null
+++ b/50-advanced/run-on-openshift/build-image-and-run-deployer-on-openshift/index.html
@@ -0,0 +1,339 @@
+ Build image and run deployer on OpenShift - Cloud Pak Deployer
In some cases, especially if the OpenShift cluster is remote from where the oc command is running, the oc logs -f command may terminate abruptly.
\ No newline at end of file
diff --git a/50-advanced/run-on-openshift/run-deployer-on-openshift-using-console/index.html b/50-advanced/run-on-openshift/run-deployer-on-openshift-using-console/index.html
new file mode 100644
index 000000000..4aca6ab2c
--- /dev/null
+++ b/50-advanced/run-on-openshift/run-deployer-on-openshift-using-console/index.html
@@ -0,0 +1,379 @@
+ Run deployer on OpenShift using Console - Cloud Pak Deployer
Select cloud-pak-deployer as the project at the top of the page
Click the deployer pod
Click logs
Info
When running the deployer installing Cloud Pak for Data, the first run will fail. This is because the deployer applies the node configuration to OpenShift, which will cause all nodes to restart one by one, including the node that runs the deployer. Because of the job setting, a new deployer pod will automatically start and resume from where it was stopped.
Re-run deployer when failed or if you want to update the configuration🔗
If the deployer has failed or if you want to make changes to the configuration after the successful run, you can do the following:
Open the OpenShift console
Go to Workloads → Jobs
Check the logs of the cloud-pak-deployer job
If needed, make changes to the cloud-pak-deployer-config Config Map by going to Workloads → ConfigMaps
\ No newline at end of file
diff --git a/50-advanced/run-on-openshift/run-deployer-wizard-on-openshift/index.html b/50-advanced/run-on-openshift/run-deployer-wizard-on-openshift/index.html
new file mode 100644
index 000000000..9c50a8544
--- /dev/null
+++ b/50-advanced/run-on-openshift/run-deployer-wizard-on-openshift/index.html
@@ -0,0 +1,141 @@
+ Run deployer wizard on OpenShift - Cloud Pak Deployer
Now you can access the deployer wizard using the route created in the cloud-pak-deployer project. * Open the OpenShift console * Go to Networking → Routes * Click the Cloud Pak Deployer wizard route
\ No newline at end of file
diff --git a/80-development/deployer-development-setup/index.html b/80-development/deployer-development-setup/index.html
new file mode 100644
index 000000000..6a6c9a915
--- /dev/null
+++ b/80-development/deployer-development-setup/index.html
@@ -0,0 +1,56 @@
+ Deployer development setup - Cloud Pak Deployer
Setting up a virtual machine or server to develop the Cloud Pak Deployer code. Focuses on initial setup of a server to run the deployer container, setting up Visual Studio Code, issuing GPG keys and running the deployer in development mode.
We recommend to use a Red Hat Linux server for development of the Cloud Pak Deployer, either using a virtual server in the cloud or a virtual machine on your workstation. Ideally you run Visual Studio Code on your workstation and connect it to the remote Red Hat Linux server, updating the code and running it immediately from that server.
To allow for remote development, a number of packages need to be installed on the Linux server. Not having these will cause VSCode not to work and the error messages are difficult to debug. To install these packages, run the following as the root user:
It is recommended to use a special development user (your user name) on the Linux server, rather than using root. Not only will this be more secure; it also prevent destructive mistakes. In the below steps, we create a user fk-dev and give it sudo permissions.
useradd -G wheel fk-dev
+
To give the fk-dev permissions to run commands as root, change the sudo settings.
visudo
+
Scroll down until you see the following line:
# %wheel ALL=(ALL) NOPASSWD: ALL
+
Change the line to look like this:
%wheel ALL=(ALL) NOPASSWD: ALL
+
Now, save the file by pressing Esc, followed by : and x.
Especially when running the virtual server in the cloud, users would logon using their SSH key. This requires the public key of the workstation to be added to the development user's SSH configuration.
Make sure you run the following commands as the development user (fk-dev):
We also want to ensure that commits are verified (trusted) by signing them with a GPG key. This requires set up on the development server and also on your Git account.
First, set up a new GPG key:
gpg --default-new-key-algo rsa4096 --gen-key
+
You will be prompted to specify your user information:
Real name: Enter your full name
Email address: Your e-mail address that will be used to sign the commits
Press o at the following prompt:
Change (N)ame, (E)mail, or (O)kay/(Q)uit?
+
Then, you will be prompted for a passphrase. You cannot use a passphrase for your GPG key if you want to use it for automatic signing of commits. Just press Enter multiple times until the GPG key has been generated.
List the signatures of the known keys. You will use the signature to sign the commits and to retrieve the public key.
Clone the repository using a git command. The command below is the clone of the main Cloud Pak Deployer repository. If you have forked the repository to develop features, you will have to use the URL of your own fork.
The Cloud Pak Deployer runs as a container on the server. When you're in the process of developing new features, having to always rebuild the image is a bit of a pain, hence we've introduced a special command line parameter.
When adding the --cpd-develop parameter to the command line, the current directory is mapped as a volume to the /cloud-pak-deployer directory within the container. This means that any latest changes you've done to the Ansible playbooks or other commands will take effect immediately.
Warning
Even though it is possible to run the deployer multiple times in parallel, for different environments, please be aware that is NOT possible when you use the --cpd-develop parameter. If you run two deploy processes with this parameters, you will see errors with permissions.
When working on multiple changes concurrently, you may have to switch between branches or tags. By default, the Cloud Pak Deployer image is built with image latest, but you can override this by setting the CPD_IMAGE_TAG environment variable in your session.
By default, the cp-deploy.sh command detects if podman (preferred) or docker is found on the system. In case both are present, podman is used. You can override this behaviour by setting the CPD_CONTAINER_ENGINE environment variable.
\ No newline at end of file
diff --git a/80-development/doc-development-setup/index.html b/80-development/doc-development-setup/index.html
new file mode 100644
index 000000000..1e13db5fb
--- /dev/null
+++ b/80-development/doc-development-setup/index.html
@@ -0,0 +1,11 @@
+ Deployer documentation development setup - Cloud Pak Deployer
Mkdocs themes encapsulate all of the configuration and implementation details of static documentation sites. This GitHub repository has been built with a dependency on the Mkdocs tool. This GiHub repository is connected to GitHub Actions; any commit to the main branch will cause a build of the GitHub pages to be triggered. The preferred method of working while developing documentation is to use the tooling from a loacal system
If you want to test the documentation pages you're developing, it is best to run Mkdocs in a container and map your local docs folder to a folder inside the container. This avoids having to install nvm and many modules on your workstation.
Do the following:
Make sure you have cloned this repository to your development server
Start from the main directory of the cloud-pak-deployer repository
cd docs
+./dev-doc-build.sh
+
This will build a Red Hat UBI image with all requirements pre-installed. It will take ~2-10 minutes to complete this step, dependent on your network bandwidth.
Now that the container has fully started, it automatically tracks all changes under the docs folder and updates the pages site automatically. You can view the site by opening a browswer for URL:
Note that after merging your updated documentation with the main branch, the pages site will be rendered by a GitHub action. Go to GitHub Actions if you want to monitor the build process.
\ No newline at end of file
diff --git a/80-development/doc-guidelines/index.html b/80-development/doc-guidelines/index.html
new file mode 100644
index 000000000..3c790f902
--- /dev/null
+++ b/80-development/doc-guidelines/index.html
@@ -0,0 +1,37 @@
+ Deployer documentation guidelines - Cloud Pak Deployer
Code block outputs should specify the output language. This can be done by putting the language after the opening tick marks. For example, to create the following code block:
\n )\n}\n", "/*\n * Copyright (c) 2016-2022 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { h } from \"~/utilities\"\n\nimport { renderTooltip } from \"../tooltip\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render an annotation\n *\n * @param id - Annotation identifier\n * @param prefix - Tooltip identifier prefix\n *\n * @returns Element\n */\nexport function renderAnnotation(\n id: string | number, prefix?: string\n): HTMLElement {\n prefix = prefix ? `${prefix}_annotation_${id}` : undefined\n\n /* Render tooltip with anchor, if given */\n if (prefix) {\n const anchor = prefix ? `#${prefix}` : undefined\n return (\n \n )\n } else {\n return (\n \n )\n }\n}\n", "/*\n * Copyright (c) 2016-2022 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { translation } from \"~/_\"\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a 'copy-to-clipboard' button\n *\n * @param id - Unique identifier\n *\n * @returns Element\n */\nexport function renderClipboardButton(id: string): HTMLElement {\n return (\n \n )\n}\n", "/*\n * Copyright (c) 2016-2022 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { ComponentChild } from \"preact\"\n\nimport { configuration, feature, translation } from \"~/_\"\nimport {\n SearchDocument,\n SearchMetadata,\n SearchResultItem\n} from \"~/integrations/search\"\nimport { h, truncate } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Render flag\n */\nconst enum Flag {\n TEASER = 1, /* Render teaser */\n PARENT = 2 /* Render as parent */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper function\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a search document\n *\n * @param document - Search document\n * @param flag - Render flags\n *\n * @returns Element\n */\nfunction renderSearchDocument(\n document: SearchDocument & SearchMetadata, flag: Flag\n): HTMLElement {\n const parent = flag & Flag.PARENT\n const teaser = flag & Flag.TEASER\n\n /* Render missing query terms */\n const missing = Object.keys(document.terms)\n .filter(key => !document.terms[key])\n .reduce((list, key) => [\n ...list, {key}, \" \"\n ], [])\n .slice(0, -1)\n\n /* Assemble query string for highlighting */\n const url = new URL(document.location)\n if (feature(\"search.highlight\"))\n url.searchParams.set(\"h\", Object.entries(document.terms)\n .filter(([, match]) => match)\n .reduce((highlight, [value]) => `${highlight} ${value}`.trim(), \"\")\n )\n\n /* Render article or section, depending on flags */\n const { tags } = configuration()\n return (\n \n \n {parent > 0 && }\n
\n }\n \n \n )\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a search result\n *\n * @param result - Search result\n *\n * @returns Element\n */\nexport function renderSearchResultItem(\n result: SearchResultItem\n): HTMLElement {\n const threshold = result[0].score\n const docs = [...result]\n\n /* Find and extract parent article */\n const parent = docs.findIndex(doc => !doc.location.includes(\"#\"))\n const [article] = docs.splice(parent, 1)\n\n /* Determine last index above threshold */\n let index = docs.findIndex(doc => doc.score < threshold)\n if (index === -1)\n index = docs.length\n\n /* Partition sections */\n const best = docs.slice(0, index)\n const more = docs.slice(index)\n\n /* Render children */\n const children = [\n renderSearchDocument(article, Flag.PARENT | +(!parent && index === 0)),\n ...best.map(section => renderSearchDocument(section, Flag.TEASER)),\n ...more.length ? [\n \n \n {more.length > 0 && more.length === 1\n ? translation(\"search.result.more.one\")\n : translation(\"search.result.more.other\", more.length)\n }\n \n {...more.map(section => renderSearchDocument(section, Flag.TEASER))}\n \n ] : []\n ]\n\n /* Render search result */\n return (\n
\n {children}\n
\n )\n}\n", "/*\n * Copyright (c) 2016-2022 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { SourceFacts } from \"~/components\"\nimport { h, round } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render repository facts\n *\n * @param facts - Repository facts\n *\n * @returns Element\n */\nexport function renderSourceFacts(facts: SourceFacts): HTMLElement {\n return (\n
\n {typeof value === \"number\" ? round(value) : value}\n
\n ))}\n
\n )\n}\n", "/*\n * Copyright (c) 2016-2022 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Tabbed control type\n */\ntype TabbedControlType =\n | \"prev\"\n | \"next\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render control for content tabs\n *\n * @param type - Control type\n *\n * @returns Element\n */\nexport function renderTabbedControl(\n type: TabbedControlType\n): HTMLElement {\n const classes = `tabbed-control tabbed-control--${type}`\n return (\n
\n \n
\n )\n}\n", "/*\n * Copyright (c) 2016-2022 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a table inside a wrapper to improve scrolling on mobile\n *\n * @param table - Table element\n *\n * @returns Element\n */\nexport function renderTable(table: HTMLElement): HTMLElement {\n return (\n
\n
\n {table}\n
\n
\n )\n}\n", "/*\n * Copyright (c) 2016-2022 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { configuration, translation } from \"~/_\"\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Version\n */\nexport interface Version {\n version: string /* Version identifier */\n title: string /* Version title */\n aliases: string[] /* Version aliases */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a version\n *\n * @param version - Version\n *\n * @returns Element\n */\nfunction renderVersion(version: Version): HTMLElement {\n const config = configuration()\n\n /* Ensure trailing slash - see https://bit.ly/3rL5u3f */\n const url = new URL(`../${version.version}/`, config.base)\n return (\n
\n )\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a version selector\n *\n * @param versions - Versions\n * @param active - Active version\n *\n * @returns Element\n */\nexport function renderVersionSelector(\n versions: Version[], active: Version\n): HTMLElement {\n return (\n
\n \n
\n {versions.map(renderVersion)}\n
\n
\n )\n}\n", "/*\n * Copyright (c) 2016-2022 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n animationFrameScheduler,\n auditTime,\n combineLatest,\n debounceTime,\n defer,\n delay,\n filter,\n finalize,\n fromEvent,\n map,\n merge,\n switchMap,\n take,\n takeLast,\n takeUntil,\n tap,\n throttleTime,\n withLatestFrom\n} from \"rxjs\"\n\nimport {\n ElementOffset,\n getActiveElement,\n getElementSize,\n watchElementContentOffset,\n watchElementFocus,\n watchElementOffset,\n watchElementVisibility\n} from \"~/browser\"\n\nimport { Component } from \"../../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Annotation\n */\nexport interface Annotation {\n active: boolean /* Annotation is active */\n offset: ElementOffset /* Annotation offset */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n target$: Observable /* Location target observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch annotation\n *\n * @param el - Annotation element\n * @param container - Containing element\n *\n * @returns Annotation observable\n */\nexport function watchAnnotation(\n el: HTMLElement, container: HTMLElement\n): Observable {\n const offset$ = defer(() => combineLatest([\n watchElementOffset(el),\n watchElementContentOffset(container)\n ]))\n .pipe(\n map(([{ x, y }, scroll]): ElementOffset => {\n const { width, height } = getElementSize(el)\n return ({\n x: x - scroll.x + width / 2,\n y: y - scroll.y + height / 2\n })\n })\n )\n\n /* Actively watch annotation on focus */\n return watchElementFocus(el)\n .pipe(\n switchMap(active => offset$\n .pipe(\n map(offset => ({ active, offset })),\n take(+!active || Infinity)\n )\n )\n )\n}\n\n/**\n * Mount annotation\n *\n * @param el - Annotation element\n * @param container - Containing element\n * @param options - Options\n *\n * @returns Annotation component observable\n */\nexport function mountAnnotation(\n el: HTMLElement, container: HTMLElement, { target$ }: MountOptions\n): Observable> {\n const [tooltip, index] = Array.from(el.children)\n\n /* Mount component on subscription */\n return defer(() => {\n const push$ = new Subject()\n const done$ = push$.pipe(takeLast(1))\n push$.subscribe({\n\n /* Handle emission */\n next({ offset }) {\n el.style.setProperty(\"--md-tooltip-x\", `${offset.x}px`)\n el.style.setProperty(\"--md-tooltip-y\", `${offset.y}px`)\n },\n\n /* Handle complete */\n complete() {\n el.style.removeProperty(\"--md-tooltip-x\")\n el.style.removeProperty(\"--md-tooltip-y\")\n }\n })\n\n /* Start animation only when annotation is visible */\n watchElementVisibility(el)\n .pipe(\n takeUntil(done$)\n )\n .subscribe(visible => {\n el.toggleAttribute(\"data-md-visible\", visible)\n })\n\n /* Toggle tooltip presence to mitigate empty lines when copying */\n merge(\n push$.pipe(filter(({ active }) => active)),\n push$.pipe(debounceTime(250), filter(({ active }) => !active))\n )\n .subscribe({\n\n /* Handle emission */\n next({ active }) {\n if (active)\n el.prepend(tooltip)\n else\n tooltip.remove()\n },\n\n /* Handle complete */\n complete() {\n el.prepend(tooltip)\n }\n })\n\n /* Toggle tooltip visibility */\n push$\n .pipe(\n auditTime(16, animationFrameScheduler)\n )\n .subscribe(({ active }) => {\n tooltip.classList.toggle(\"md-tooltip--active\", active)\n })\n\n /* Track relative origin of tooltip */\n push$\n .pipe(\n throttleTime(125, animationFrameScheduler),\n filter(() => !!el.offsetParent),\n map(() => el.offsetParent!.getBoundingClientRect()),\n map(({ x }) => x)\n )\n .subscribe({\n\n /* Handle emission */\n next(origin) {\n if (origin)\n el.style.setProperty(\"--md-tooltip-0\", `${-origin}px`)\n else\n el.style.removeProperty(\"--md-tooltip-0\")\n },\n\n /* Handle complete */\n complete() {\n el.style.removeProperty(\"--md-tooltip-0\")\n }\n })\n\n /* Allow to copy link without scrolling to anchor */\n fromEvent(index, \"click\")\n .pipe(\n takeUntil(done$),\n filter(ev => !(ev.metaKey || ev.ctrlKey))\n )\n .subscribe(ev => ev.preventDefault())\n\n /* Allow to open link in new tab or blur on close */\n fromEvent(index, \"mousedown\")\n .pipe(\n takeUntil(done$),\n withLatestFrom(push$)\n )\n .subscribe(([ev, { active }]) => {\n\n /* Open in new tab */\n if (ev.button !== 0 || ev.metaKey || ev.ctrlKey) {\n ev.preventDefault()\n\n /* Close annotation */\n } else if (active) {\n ev.preventDefault()\n\n /* Focus parent annotation, if any */\n const parent = el.parentElement!.closest(\".md-annotation\")\n if (parent instanceof HTMLElement)\n parent.focus()\n else\n getActiveElement()?.blur()\n }\n })\n\n /* Open and focus annotation on location target */\n target$\n .pipe(\n takeUntil(done$),\n filter(target => target === tooltip),\n delay(125)\n )\n .subscribe(() => el.focus())\n\n /* Create and return component */\n return watchAnnotation(el, container)\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n })\n}\n", "/*\n * Copyright (c) 2016-2022 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n EMPTY,\n Observable,\n Subject,\n defer,\n finalize,\n merge,\n share,\n takeLast,\n takeUntil\n} from \"rxjs\"\n\nimport {\n getElement,\n getElements,\n getOptionalElement\n} from \"~/browser\"\nimport { renderAnnotation } from \"~/templates\"\n\nimport { Component } from \"../../../_\"\nimport {\n Annotation,\n mountAnnotation\n} from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n target$: Observable /* Location target observable */\n print$: Observable /* Media print observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Find all annotation markers in the given code block\n *\n * @param container - Containing element\n *\n * @returns Annotation markers\n */\nfunction findAnnotationMarkers(container: HTMLElement): Text[] {\n const markers: Text[] = []\n for (const el of getElements(\".c, .c1, .cm\", container)) {\n const nodes: Text[] = []\n\n /* Find all text nodes in current element */\n const it = document.createNodeIterator(el, NodeFilter.SHOW_TEXT)\n for (let node = it.nextNode(); node; node = it.nextNode())\n nodes.push(node as Text)\n\n /* Find all markers in each text node */\n for (let text of nodes) {\n let match: RegExpExecArray | null\n\n /* Split text at marker and add to list */\n while ((match = /(\\(\\d+\\))(!)?/.exec(text.textContent!))) {\n const [, id, force] = match\n if (typeof force === \"undefined\") {\n const marker = text.splitText(match.index)\n text = marker.splitText(id.length)\n markers.push(marker)\n\n /* Replace entire text with marker */\n } else {\n text.textContent = id\n markers.push(text)\n break\n }\n }\n }\n }\n return markers\n}\n\n/**\n * Swap the child nodes of two elements\n *\n * @param source - Source element\n * @param target - Target element\n */\nfunction swap(source: HTMLElement, target: HTMLElement): void {\n target.append(...Array.from(source.childNodes))\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount annotation list\n *\n * This function analyzes the containing code block and checks for markers\n * referring to elements in the given annotation list. If no markers are found,\n * the list is left untouched. Otherwise, list elements are rendered as\n * annotations inside the code block.\n *\n * @param el - Annotation list element\n * @param container - Containing element\n * @param options - Options\n *\n * @returns Annotation component observable\n */\nexport function mountAnnotationList(\n el: HTMLElement, container: HTMLElement, { target$, print$ }: MountOptions\n): Observable> {\n\n /* Compute prefix for tooltip anchors */\n const parent = container.closest(\"[id]\")\n const prefix = parent?.id\n\n /* Find and replace all markers with empty annotations */\n const annotations = new Map()\n for (const marker of findAnnotationMarkers(container)) {\n const [, id] = marker.textContent!.match(/\\((\\d+)\\)/)!\n if (getOptionalElement(`li:nth-child(${id})`, el)) {\n annotations.set(id, renderAnnotation(id, prefix))\n marker.replaceWith(annotations.get(id)!)\n }\n }\n\n /* Keep list if there are no annotations to render */\n if (annotations.size === 0)\n return EMPTY\n\n /* Mount component on subscription */\n return defer(() => {\n const done$ = new Subject()\n\n /* Retrieve container pairs for swapping */\n const pairs: [HTMLElement, HTMLElement][] = []\n for (const [id, annotation] of annotations)\n pairs.push([\n getElement(\".md-typeset\", annotation),\n getElement(`li:nth-child(${id})`, el)\n ])\n\n /* Handle print mode - see https://bit.ly/3rgPdpt */\n print$\n .pipe(\n takeUntil(done$.pipe(takeLast(1)))\n )\n .subscribe(active => {\n el.hidden = !active\n\n /* Show annotations in code block or list (print) */\n for (const [inner, child] of pairs)\n if (!active)\n swap(child, inner)\n else\n swap(inner, child)\n })\n\n /* Create and return component */\n return merge(...[...annotations]\n .map(([, annotation]) => (\n mountAnnotation(annotation, container, { target$ })\n ))\n )\n .pipe(\n finalize(() => done$.complete()),\n share()\n )\n })\n}\n", "/*\n * Copyright (c) 2016-2022 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n map,\n of,\n shareReplay,\n tap\n} from \"rxjs\"\n\nimport { watchScript } from \"~/browser\"\nimport { h } from \"~/utilities\"\n\nimport { Component } from \"../../../_\"\n\nimport themeCSS from \"./index.css\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mermaid diagram\n */\nexport interface Mermaid {}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Mermaid instance observable\n */\nlet mermaid$: Observable\n\n/**\n * Global sequence number for diagrams\n */\nlet sequence = 0\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Fetch Mermaid script\n *\n * @returns Mermaid scripts observable\n */\nfunction fetchScripts(): Observable {\n return typeof mermaid === \"undefined\" || mermaid instanceof Element\n ? watchScript(\"https://unpkg.com/mermaid@9.1.7/dist/mermaid.min.js\")\n : of(undefined)\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount Mermaid diagram\n *\n * @param el - Code block element\n *\n * @returns Mermaid diagram component observable\n */\nexport function mountMermaid(\n el: HTMLElement\n): Observable> {\n el.classList.remove(\"mermaid\") // Hack: mitigate https://bit.ly/3CiN6Du\n mermaid$ ||= fetchScripts()\n .pipe(\n tap(() => mermaid.initialize({\n startOnLoad: false,\n themeCSS\n })),\n map(() => undefined),\n shareReplay(1)\n )\n\n /* Render diagram */\n mermaid$.subscribe(() => {\n el.classList.add(\"mermaid\") // Hack: mitigate https://bit.ly/3CiN6Du\n const id = `__mermaid_${sequence++}`\n const host = h(\"div\", { class: \"mermaid\" })\n mermaid.mermaidAPI.render(id, el.textContent, (svg: string) => {\n\n /* Create a shadow root and inject diagram */\n const shadow = host.attachShadow({ mode: \"closed\" })\n shadow.innerHTML = svg\n\n /* Replace code block with diagram */\n el.replaceWith(host)\n })\n })\n\n /* Create and return component */\n return mermaid$\n .pipe(\n map(() => ({ ref: el }))\n )\n}\n", "/*\n * Copyright (c) 2016-2022 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n defer,\n filter,\n finalize,\n map,\n merge,\n tap\n} from \"rxjs\"\n\nimport { Component } from \"../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Details\n */\nexport interface Details {\n action: \"open\" | \"close\" /* Details state */\n reveal?: boolean /* Details is revealed */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n target$: Observable /* Location target observable */\n print$: Observable /* Media print observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n target$: Observable /* Location target observable */\n print$: Observable /* Media print observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch details\n *\n * @param el - Details element\n * @param options - Options\n *\n * @returns Details observable\n */\nexport function watchDetails(\n el: HTMLDetailsElement, { target$, print$ }: WatchOptions\n): Observable {\n let open = true\n return merge(\n\n /* Open and focus details on location target */\n target$\n .pipe(\n map(target => target.closest(\"details:not([open])\")!),\n filter(details => el === details),\n map(() => ({\n action: \"open\", reveal: true\n }) as Details)\n ),\n\n /* Open details on print and close afterwards */\n print$\n .pipe(\n filter(active => active || !open),\n tap(() => open = el.open),\n map(active => ({\n action: active ? \"open\" : \"close\"\n }) as Details)\n )\n )\n}\n\n/**\n * Mount details\n *\n * This function ensures that `details` tags are opened on anchor jumps and\n * prior to printing, so the whole content of the page is visible.\n *\n * @param el - Details element\n * @param options - Options\n *\n * @returns Details component observable\n */\nexport function mountDetails(\n el: HTMLDetailsElement, options: MountOptions\n): Observable> {\n return defer(() => {\n const push$ = new Subject()\n push$.subscribe(({ action, reveal }) => {\n el.toggleAttribute(\"open\", action === \"open\")\n if (reveal)\n el.scrollIntoView()\n })\n\n /* Create and return component */\n return watchDetails(el, options)\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n })\n}\n", "/*\n * Copyright (c) 2016-2022 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, of } from \"rxjs\"\n\nimport { renderTable } from \"~/templates\"\nimport { h } from \"~/utilities\"\n\nimport { Component } from \"../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Data table\n */\nexport interface DataTable {}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Sentinel for replacement\n */\nconst sentinel = h(\"table\")\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount data table\n *\n * This function wraps a data table in another scrollable container, so it can\n * be smoothly scrolled on smaller screen sizes and won't break the layout.\n *\n * @param el - Data table element\n *\n * @returns Data table component observable\n */\nexport function mountDataTable(\n el: HTMLElement\n): Observable> {\n el.replaceWith(sentinel)\n sentinel.replaceWith(renderTable(el))\n\n /* Create and return component */\n return of({ ref: el })\n}\n", "/*\n * Copyright (c) 2016-2022 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n animationFrameScheduler,\n asyncScheduler,\n auditTime,\n combineLatest,\n defer,\n finalize,\n fromEvent,\n map,\n merge,\n skip,\n startWith,\n subscribeOn,\n takeLast,\n takeUntil,\n tap,\n withLatestFrom\n} from \"rxjs\"\n\nimport { feature } from \"~/_\"\nimport {\n Viewport,\n getElement,\n getElementContentOffset,\n getElementContentSize,\n getElementOffset,\n getElementSize,\n getElements,\n watchElementContentOffset,\n watchElementSize\n} from \"~/browser\"\nimport { renderTabbedControl } from \"~/templates\"\n\nimport { Component } from \"../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Content tabs\n */\nexport interface ContentTabs {\n active: HTMLLabelElement /* Active tab label */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n viewport$: Observable /* Viewport observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch content tabs\n *\n * @param el - Content tabs element\n *\n * @returns Content tabs observable\n */\nexport function watchContentTabs(\n el: HTMLElement\n): Observable {\n const inputs = getElements(\":scope > input\", el)\n const initial = inputs.find(input => input.checked) || inputs[0]\n return merge(...inputs.map(input => fromEvent(input, \"change\")\n .pipe(\n map(() => getElement(`label[for=\"${input.id}\"]`))\n )\n ))\n .pipe(\n startWith(getElement(`label[for=\"${initial.id}\"]`)),\n map(active => ({ active }))\n )\n}\n\n/**\n * Mount content tabs\n *\n * This function scrolls the active tab into view. While this functionality is\n * provided by browsers as part of `scrollInfoView`, browsers will always also\n * scroll the vertical axis, which we do not want. Thus, we decided to provide\n * this functionality ourselves.\n *\n * @param el - Content tabs element\n * @param options - Options\n *\n * @returns Content tabs component observable\n */\nexport function mountContentTabs(\n el: HTMLElement, { viewport$ }: MountOptions\n): Observable> {\n\n /* Render content tab previous button for pagination */\n const prev = renderTabbedControl(\"prev\")\n el.append(prev)\n\n /* Render content tab next button for pagination */\n const next = renderTabbedControl(\"next\")\n el.append(next)\n\n /* Mount component on subscription */\n const container = getElement(\".tabbed-labels\", el)\n return defer(() => {\n const push$ = new Subject()\n const done$ = push$.pipe(takeLast(1))\n combineLatest([push$, watchElementSize(el)])\n .pipe(\n auditTime(1, animationFrameScheduler),\n takeUntil(done$)\n )\n .subscribe({\n\n /* Handle emission */\n next([{ active }, size]) {\n const offset = getElementOffset(active)\n const { width } = getElementSize(active)\n\n /* Set tab indicator offset and width */\n el.style.setProperty(\"--md-indicator-x\", `${offset.x}px`)\n el.style.setProperty(\"--md-indicator-width\", `${width}px`)\n\n /* Scroll container to active content tab */\n const content = getElementContentOffset(container)\n if (\n offset.x < content.x ||\n offset.x + width > content.x + size.width\n )\n container.scrollTo({\n left: Math.max(0, offset.x - 16),\n behavior: \"smooth\"\n })\n },\n\n /* Handle complete */\n complete() {\n el.style.removeProperty(\"--md-indicator-x\")\n el.style.removeProperty(\"--md-indicator-width\")\n }\n })\n\n /* Hide content tab buttons on borders */\n combineLatest([\n watchElementContentOffset(container),\n watchElementSize(container)\n ])\n .pipe(\n takeUntil(done$)\n )\n .subscribe(([offset, size]) => {\n const content = getElementContentSize(container)\n prev.hidden = offset.x < 16\n next.hidden = offset.x > content.width - size.width - 16\n })\n\n /* Paginate content tab container on click */\n merge(\n fromEvent(prev, \"click\").pipe(map(() => -1)),\n fromEvent(next, \"click\").pipe(map(() => +1))\n )\n .pipe(\n takeUntil(done$)\n )\n .subscribe(direction => {\n const { width } = getElementSize(container)\n container.scrollBy({\n left: width * direction,\n behavior: \"smooth\"\n })\n })\n\n /* Set up linking of content tabs, if enabled */\n if (feature(\"content.tabs.link\"))\n push$.pipe(\n skip(1),\n withLatestFrom(viewport$)\n )\n .subscribe(([{ active }, { offset }]) => {\n const tab = active.innerText.trim()\n if (active.hasAttribute(\"data-md-switching\")) {\n active.removeAttribute(\"data-md-switching\")\n\n /* Determine viewport offset of active tab */\n } else {\n const y = el.offsetTop - offset.y\n\n /* Passively activate other tabs */\n for (const set of getElements(\"[data-tabs]\"))\n for (const input of getElements(\n \":scope > input\", set\n )) {\n const label = getElement(`label[for=\"${input.id}\"]`)\n if (\n label !== active &&\n label.innerText.trim() === tab\n ) {\n label.setAttribute(\"data-md-switching\", \"\")\n input.click()\n break\n }\n }\n\n /* Bring active tab into view */\n window.scrollTo({\n top: el.offsetTop - y\n })\n\n /* Persist active tabs in local storage */\n const tabs = __md_get(\"__tabs\") || []\n __md_set(\"__tabs\", [...new Set([tab, ...tabs])])\n }\n })\n\n /* Create and return component */\n return watchContentTabs(el)\n .pipe(\n tap(state => push$.next(state)),\n finalize(() => push$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n })\n .pipe(\n subscribeOn(asyncScheduler)\n )\n}\n", "/*\n * Copyright (c) 2016-2022 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, merge } from \"rxjs\"\n\nimport { Viewport, getElements } from \"~/browser\"\n\nimport { Component } from \"../../_\"\nimport { Annotation } from \"../annotation\"\nimport {\n CodeBlock,\n Mermaid,\n mountCodeBlock,\n mountMermaid\n} from \"../code\"\nimport {\n Details,\n mountDetails\n} from \"../details\"\nimport {\n DataTable,\n mountDataTable\n} from \"../table\"\nimport {\n ContentTabs,\n mountContentTabs\n} from \"../tabs\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Content\n */\nexport type Content =\n | Annotation\n | ContentTabs\n | CodeBlock\n | Mermaid\n | DataTable\n | Details\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n viewport$: Observable /* Viewport observable */\n target$: Observable /* Location target observable */\n print$: Observable /* Media print observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount content\n *\n * This function mounts all components that are found in the content of the\n * actual article, including code blocks, data tables and details.\n *\n * @param el - Content element\n * @param options - Options\n *\n * @returns Content component observable\n */\nexport function mountContent(\n el: HTMLElement, { viewport$, target$, print$ }: MountOptions\n): Observable> {\n return merge(\n\n /* Code blocks */\n ...getElements(\"pre:not(.mermaid) > code\", el)\n .map(child => mountCodeBlock(child, { target$, print$ })),\n\n /* Mermaid diagrams */\n ...getElements(\"pre.mermaid\", el)\n .map(child => mountMermaid(child)),\n\n /* Data tables */\n ...getElements(\"table:not([class])\", el)\n .map(child => mountDataTable(child)),\n\n /* Details */\n ...getElements(\"details\", el)\n .map(child => mountDetails(child, { target$, print$ })),\n\n /* Content tabs */\n ...getElements(\"[data-tabs]\", el)\n .map(child => mountContentTabs(child, { viewport$ }))\n )\n}\n", "/*\n * Copyright (c) 2016-2022 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n Subject,\n defer,\n delay,\n finalize,\n map,\n merge,\n of,\n switchMap,\n tap\n} from \"rxjs\"\n\nimport { getElement } from \"~/browser\"\n\nimport { Component } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Dialog\n */\nexport interface Dialog {\n message: string /* Dialog message */\n active: boolean /* Dialog is active */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n alert$: Subject /* Alert subject */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n alert$: Subject /* Alert subject */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch dialog\n *\n * @param _el - Dialog element\n * @param options - Options\n *\n * @returns Dialog observable\n */\nexport function watchDialog(\n _el: HTMLElement, { alert$ }: WatchOptions\n): Observable