This repository provides scripts and procedures for setting up test validation external services for SAP EIC on the OpenShift Container Platform (OCP). The services covered include PostgreSQL and Redis. This guide will help you install and configure these services, as well as perform cleanup after validation.
Note: These services may be optional for a proof of concept (PoC) setup.
If you donβt enable or configure the external Postgres and Redis during the SAP Edge Integration Cell (EIC) installation, EIC will automatically deploy self-contained Postgres and Redis pods within its own service namespace.
Important Notice
Please be aware that this repository is intended for testing purposes only. The configurations and scripts provided are designed to assist in test validation scenarios and are not recommended for production use.
Support Information
Red Hat does not provide support for the Postgres/Redis services configured through this repository. Support is available directly from the respective vendors:
-
PostgreSQL: Crunchy Data offers enterprise-level support for their PostgreSQL Operator through a subscription-based model. This includes various tiers with different response times, service levels, bug fixes, security patches, updates, and technical support. A subscription is required for using the software in third-party consulting or support services. For more details, refer to their Terms of Use.
-
Redis: Support for this solution is provided directly by the Redis Labs team, as detailed in Appendix 1 of the Redis Enterprise Software Subscription Agreement. The agreement categorizes support services into Support Services, Customer Success Services, and Consulting Services, offering assistance from basic troubleshooting to advanced consultancy and ongoing optimization tailored to diverse customer needs.
For comprehensive support, please contact Crunchy Data and Redis Labs directly.
Operations
For operational guidance on Crunchy Postgres and Redis, refer to the official documentation:
- Access to an OpenShift Container Platform cluster using an account with
cluster-admin
permissions. - Installed
oc
,jq
, andgit
command line tools on your local system.
When ODF (OpenShift Data Foundation) is installed, set the shared file system parameters as follows:
Property | Settings |
---|---|
Enable Shared File System | yes |
Shared File System Storage Class | ocs-storagecluster-cephfs |
Additionally, set the ODF ocs-storagecluster-ceph-rbd
storage class as default for RWO/RWX Block volumes to meet most block storage requirements for various services running on OpenShift.
The following steps will install the Crunchy Postgres Operator and use its features to manage the lifecycle of the external PostgreSQL DB service.
- Clone the repository:
git clone https://github.com/redhat-sap/sap-edge.git
- Create a new project:
oc new-project sap-eic-external-postgres
- Apply the OperatorGroup configuration:
oc apply -f sap-edge/edge-integration-cell/postgres-operator/operatorgroup.yaml
- Apply the Subscription configuration:
oc apply -f sap-edge/edge-integration-cell/postgres-operator/subscription.yaml
- Wait for the Postgres operator to be ready:
bash sap-edge/edge-integration-cell/external-postgres/wait_for_postgres_operator_ready.sh
- Create a PostgresCluster:
oc apply -f sap-edge/edge-integration-cell/external-postgres/postgrescluster-v15.yaml
- For other versions, replace
v14
withv15
orv16
.
- For other versions, replace
- Wait for Crunchy Postgres to be ready:
bash sap-edge/edge-integration-cell/external-postgres/wait_for_postgres_ready.sh
- Get access details of Crunchy Postgres:
bash sap-edge/edge-integration-cell/external-postgres/get_external_postgres_access.sh
After running the above script, you will get the access details of Crunchy Postgres like the following:
- External DB Hostname:
hippo-primary.sap-eic-external-postgres.svc
- External DB Port:
5432
- External DB Name:
eic
- External DB Username:
eic
- External DB Password:
xklaieniej12#
- External DB TLS Root Certificate saved to
external_postgres_db_tls_root_cert.crt
Please use the provided information to set up the EIC external DB accordingly.
To clean up the PostgresCluster:
oc delete postgrescluster eic -n sap-eic-external-postgres
bash sap-edge/edge-integration-cell/external-postgres/wait_for_deletion_of_postgrescluster.sh
oc delete subscription crunchy-postgres-operator -n sap-eic-external-postgres
oc get csv -n sap-eic-external-postgres --no-headers | grep 'postgresoperator' | awk '{print $1}' | xargs -I{} oc delete csv {} -n sap-eic-external-postgres
oc delete namespace sap-eic-external-postgres
This guide provides instructions for setting up and validating the Redis service for SAP EIC on OpenShift Container Platform (OCP). The steps include installing the Redis Enterprise Operator, creating a RedisEnterpriseCluster and RedisEnterpriseDatabase, and cleaning up after validation.
- Access to an OpenShift Container Platform cluster using an account with
cluster-admin
permissions. - Installed
oc
,jq
, andgit
command line tools on your local system.
The following steps will install the Redis Enterprise Operator and use its features to manage the lifecycle of the external Redis datastore service.
- Clone the repository:
git clone https://github.com/redhat-sap/sap-edge.git
- Create a new project:
oc new-project sap-eic-external-redis
- Apply the OperatorGroup configuration:
oc apply -f sap-edge/edge-integration-cell/redis-operator/operatorgroup.yaml
- Apply the Subscription configuration:
oc apply -f sap-edge/edge-integration-cell/redis-operator/subscription.yaml
- Apply the Security Context Constraint (SCC):
- For OpenShift versions 4.16 and later, use
oc apply -f sap-edge/edge-integration-cell/redis-operator/security_context_constraint.yaml
- For OpenShift versions earlier than 4.16, use:
oc apply -f sap-edge/edge-integration-cell/redis-operator/security_context_constraint_v2.yaml
- Wait for the Redis operator to be ready:
bash sap-edge/edge-integration-cell/external-redis/wait_for_redis_operator_ready.sh
- Create a RedisEnterpriseCluster:
oc apply -f sap-edge/edge-integration-cell/external-redis/redis_enterprise_cluster.yaml
- Wait for the RedisEnterpriseCluster to be ready:
bash sap-edge/edge-integration-cell/external-redis/wait_for_rec_running_state.sh
- Create a RedisEnterpriseDatabase:
oc apply -f sap-edge/edge-integration-cell/external-redis/redis_enterprise_database.yaml
- Note: You might need to run the above command several times until it works because the previously created RedisEnterpriseCluster needs some time to enable the admission webhook successfully.
- Wait for the RedisEnterpriseDatabase to be ready:
bash sap-edge/edge-integration-cell/external-redis/wait_for_redb_active_status.sh
- Get access details of Redis:
bash sap-edge/edge-integration-cell/external-redis/get_redis_access.sh
After running the above script, you will get the access details of Redis like the following:
- External Redis Addresses:
redb-headless.sap-eic-external-redis.svc:12117
- External Redis Mode:
standalone
- External Redis Username:
[leave me blank]
- External Redis Password:
XpglWqoR
- External Redis Sentinel Username:
[leave me blank]
- External Redis Sentinel Password:
[leave me blank]
- External Redis TLS Certificate content saved to
external_redis_tls_certificate.pem
- External Redis Server Name:
rec.sap-eic-external-redis.svc.cluster.local
Alternatively, you can run the following script to retrieve access details for both Redis and Postgres:
bash sap-edge/edge-integration-cell/get_all_access.sh
To clean up the Redis instance:
oc delete redisenterprisedatabase redb -n sap-eic-external-redis
oc delete redisenterprisecluster rec -n sap-eic-external-redis
bash sap-edge/edge-integration-cell/external-redis/wait_for_deletion_of_rec.sh
oc delete subscription redis-enterprise-operator-cert -n sap-eic-external-redis
oc get csv -n sap-eic-external-redis --no-headers | grep 'redis-enterprise-operator' | awk '{print $1}' | xargs -I{} oc delete csv {} -n sap-eic-external-redis
# For OpenShift versions earlier than 4.16
oc delete scc redis-enterprise-scc-v2
# For OpenShift versions 4.16 and later
oc delete scc redis-enterprise-scc
oc delete namespace sap-eic-external-redis
This project supports automated deployment of external Postgres and Redis services using Argo CD and a GitOps workflow.
Requirements
- OpenShift cluster
- OpenShift GitOps Operator
- Access to this Git repository
Argo CD uses an App of Apps model located in:
edge-integration-cell/argocd-apps/
This folder defines four Argo CD Applications:
Application Name | Purpose | Sync Wave |
---|---|---|
postgres-operator |
Installs Crunchy Postgres Operator | 0 |
external-postgres |
Deploys PostgresCluster CR | 1 |
external-redis-operator |
Installs Redis Enterprise Operator | 0 |
external-redis |
Deploys RedisCluster CRs | 1 |
Each application includes a sync wave annotation to ensure the operator is deployed before its related custom resources.
- Make sure Argo CD is installed in your cluster (e.g., via OpenShift GitOps).
- Create a parent Argo CD Application pointing to the
argocd-apps
folder:
kubectl apply -f sap-edge/edge-integration-cell/sap-eic-external-services-app.yaml
- Argo CD will:
- Install the Postgres and Redis operators
- Wait for them to be ready
- Deploy the respective PostgresCluster and RedisEnterpriseCluster, RedisDB custom resources
This project is licensed under the Apache License 2.0. See the LICENSE for details.