mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-23 14:06:00 +03:00
2cc2f5c700
Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
50 lines
1.0 KiB
Markdown
50 lines
1.0 KiB
Markdown
|
|
# Deploying Platform on k8s cluster
|
|
|
|
We need [MongoDb](https://www.mongodb.com), [Elastic Search](https://www.elastic.co), and [MinIO](https://www.min.io) servers installed on the network/cloud.
|
|
You should have credentials to access these servers to continue deployment.
|
|
|
|
ElasticSearch should have `ingest` plugin installed.
|
|
|
|
## Secrets
|
|
|
|
`secret.yaml` provide exemplary configuration values to access data storage servers. Provide correct values and
|
|
|
|
```
|
|
kubectl apply -f secret.yaml
|
|
```
|
|
|
|
## Deploying Transactor service
|
|
|
|
```
|
|
cd server/server
|
|
kubectl apply -f kube/transactor.yml
|
|
kubectl apply -f kube/ingress.yml
|
|
```
|
|
|
|
## Deploying Front-end services
|
|
|
|
```
|
|
cd server/front
|
|
kubectl apply -f kube/front.yml
|
|
kubectl apply -f kube/ingress.yml
|
|
```
|
|
|
|
## Deploying Account services
|
|
|
|
```
|
|
cd pods/account
|
|
kubectl apply -f kube/deployment.yml
|
|
kubectl apply -f kube/service.yml
|
|
kubectl apply -f kube/ingress.yml
|
|
```
|
|
|
|
## Deploying Upload services
|
|
|
|
```
|
|
cd server/upload
|
|
kubectl apply -f kube/deployment.yml
|
|
kubectl apply -f kube/service.yml
|
|
kubectl apply -f kube/ingress.yml
|
|
```
|