Skip to content

Commit

Permalink
update nexus
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrii Korolov committed Jan 22, 2025
1 parent d530e11 commit 92f247b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions charts/dynamiq/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ ibmcloud ks cluster config --cluster $CLUSTER_ID

#### Create PostgreSQL Database

```bash
It is recommended to create a new IBM Cloud Databases for PostgreSQL service instance before you install the software. You can create the service instance by running the following command:

```bash
Expand Down Expand Up @@ -96,8 +95,8 @@ export COS_INSTANCE_NAME=cos-dynamiq
ibmcloud resource service-instance-create ${COS_INSTANCE_NAME} cloud-object-storage standard global -g dynamiq
ibmcloud resource service-key-create ${COS_INSTANCE_NAME}-credentials Writer --instance-name ${COS_INSTANCE_NAME} --parameters '{"HMAC":true}'
STORAGE_IBM_COS_API_KEY=$(ibmcloud resource service-key ${COS_INSTANCE_NAME}-credentials --output=json | jq -r '.[] | select ( .name == "'${COS_INSTANCE_NAME}-credentials'") | .credentials.apikey')
STORAGE_IBM_COS_RESOURCE_INSTANCE_ID=$(ibmcloud resource service-instance ${COS_INSTANCE_NAME} --output=json | jq -r '.[] | select (.name == "'${COS_INSTANCE_NAME}'") | .id')
ibmcloud cos bucket-create --bucket dynamiqai --region us-south --ibm-service-instance-id=$STORAGE_IBM_COS_RESOURCE_INSTANCE_ID
STORAGE_IBM_COS_SERVICE_INSTANCE_ID=$(ibmcloud resource service-instance ${COS_INSTANCE_NAME} --output=json | jq -r '.[] | select (.name == "'${COS_INSTANCE_NAME}'") | .id')
ibmcloud cos bucket-create --bucket dynamiqai --region us-south --ibm-service-instance-id=$STORAGE_IBM_COS_SERVICE_INSTANCE_ID
```

## Installing the software
Expand Down Expand Up @@ -149,7 +148,7 @@ stringData:
DATABASE_USERNAME: '${DATABASE_USERNAME}'
DATABASE_PASSWORD: '${DATABASE_PASSWORD}'
STORAGE_IBM_COS_API_KEY: '${STORAGE_IBM_COS_API_KEY}'
STORAGE_IBM_COS_RESOURCE_INSTANCE_ID: '${STORAGE_IBM_COS_RESOURCE_INSTANCE_ID}'
STORAGE_IBM_COS_SERVICE_INSTANCE_ID: '${STORAGE_IBM_COS_SERVICE_INSTANCE_ID}'
SMTP_HOST: '${SMTP_HOST}'
SMTP_PORT: '${SMTP_PORT}'
SMTP_USERNAME: '${SMTP_USERNAME}'
Expand Down

0 comments on commit 92f247b

Please sign in to comment.