Skip to content

[Improve] K8S active-active deployment pattern doc #10542

@kavindasr

Description

@kavindasr

Description

Doc: https://apim.docs.wso2.com/en/latest/install-and-setup/setup/kubernetes-deployment/kubernetes/am-pattern-1-all-in-one-ha/#prerequisites

Issue 1:

Remove additional SQL commands:

CREATE DATABASE apim_db CHARACTER SET latin1;
CREATE DATABASE shared_db CHARACTER SET latin1;

GRANT ALL ON apim_db.* TO 'apimadmin'@'%';

CREATE USER 'sharedadmin'@'%' IDENTIFIED BY 'sharedadmin';
GRANT ALL ON shared_db.* TO 'sharedadmin'@'%';

Change this to:

CREATE DATABASE apim_db CHARACTER SET latin1;
CREATE DATABASE shared_db CHARACTER SET latin1;

Issue 2:

Remove unnecessary informations:

- WSO2 API Manager 4.6.0 provides three Docker images:
- All-in-one - [wso2am](https://hub.docker.com/r/wso2/wso2am)
- Universal Gateway (GW) - [wso2am-universal-gw](https://hub.docker.com/r/wso2/wso2am-universal-gw)

Rewrite like this:

- For this pattern, you must use the All-in-one - [wso2am](https://hub.docker.com/r/wso2/wso2am) image.

Suggested Fix

Include in the description

Version(s)

4.5.0, 4.6.0, master

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions