Skip to content
Snippets Groups Projects
Commit b6149833 authored by Vladyslav Hundarchuk's avatar Vladyslav Hundarchuk Committed by Oleksandr Kosse (EPAM)
Browse files

Update Readme

parent 45d347fc
No related branches found
No related tags found
1 merge request!341Update Readme
...@@ -31,38 +31,49 @@ First you need to set variables in **values.yaml** file using any code editor. S ...@@ -31,38 +31,49 @@ First you need to set variables in **values.yaml** file using any code editor. S
| Name | Description | Type | Default |Required | | Name | Description | Type | Default |Required |
|------|-------------|------|---------|---------| |------|-------------|------|---------|---------|
**logLevel** | logging level | string | INFO | yes **data.logLevel** | logging level | string | INFO | yes
**springProfilesActive** | active spring profile | string | gcp | yes **data.springProfilesActive** | active spring profile | string | gcp | yes
**entitlementsHost** | entitlements service host address | string | `http://entitlements` | yes **data.entitlementsHost** | entitlements service host address | string | `http://entitlements` | yes
**registerHost** | register service host address | string | `http://register` | yes **data.registerHost** | register service host address | string | `http://register` | yes
**partitionHost** | partition service host address | string | `http://partition` | yes **data.partitionHost** | partition service host address | string | `http://partition` | yes
**redisNotificationHost** | The host for redis instance. If empty, helm installs an internal redis instance | string | `redis-notification` | yes **data.redisNotificationHost** | The host for redis instance. If empty, helm installs an internal redis instance | string | `redis-notification` | yes
**redisNotificationPort** | The port for redis instance | digit | 6379 | yes **data.redisNotificationPort** | The port for redis instance | digit | 6379 | yes
### Deployment variables ### Deployment variables
| Name | Description | Type | Default |Required | | Name | Description | Type | Default |Required |
|------|-------------|------|---------|---------| |------|-------------|------|---------|---------|
**requestsCpu** | amount of requested CPU | string | `0.1` | yes **data.requestsCpu** | amount of requested CPU | string | `0.1` | yes
**requestsMemory** | amount of requested memory| string | `256M` | yes **data.requestsMemory** | amount of requested memory| string | `256M` | yes
**limitsCpu** | CPU limit | string | `1` | yes **data.limitsCpu** | CPU limit | string | `1` | yes
**limitsMemory** | memory limit | string | `1.5G` | yes **data.limitsMemory** | memory limit | string | `1.5G` | yes
**serviceAccountName** | name of your service account | string | `notification` | yes **data.serviceAccountName** | name of your service account | string | `notification` | yes
**imagePullPolicy** | when to pull image | string | `IfNotPresent` | yes **data.imagePullPolicy** | when to pull image | string | `IfNotPresent` | yes
**image** | service image | string | - | yes **data.image** | service image | string | - | yes
**redisImage** | redis image | string | `redis:7` | yes **data.redisImage** | redis image | string | `redis:7` | yes
### Config variables ### Config variables
| Name | Description | Type | Default |Required | | Name | Description | Type | Default |Required |
|------|-------------|------|---------|---------| |------|-------------|------|---------|---------|
**appName** | Service name | string | `notification` | yes **conf.appName** | Service name | string | `notification` | yes
**configmap** | configmap to be used | string | `notification-config` | yes **conf.configmap** | configmap to be used | string | `notification-config` | yes
**rabbitmqSecretName** | secret for rabbitmq | string | `rabbitmq-secret` | yes **conf.rabbitmqSecretName** | secret for rabbitmq | string | `rabbitmq-secret` | yes
**openidSecretName** | secret for openid | string | `notification-keycloak-secret` | yes **conf.openidSecretName** | secret for openid | string | `notification-keycloak-secret` | yes
**notificationRedisSecretName** | Notification redis secret | string | `notification-redis-secret` | yes **conf.notificationRedisSecretName** | Notification redis secret | string | `notification-redis-secret` | yes
**onPremEnabled** | whether on-prem is enabled | boolean | false | yes **conf.onPremEnabled** | whether on-prem is enabled | boolean | false | yes
**domain** | your domain, ex `example.com` | string | - | yes **conf.domain** | your domain, ex `example.com` | string | - | yes
**redisSSL** | Redis host ssl config. External redis configuration only if true | string | false | no **conf.redisSSL** | Redis host ssl config. External redis configuration only if true | string | false | no
### Istio variables
| Name | Description | Type | Default |Required |
|------|-------------|------|---------|---------|
**istio.proxyCPU** | CPU request for Envoy sidecars | string | `50m` | yes
**istio.proxyCPULimit** | CPU limit for Envoy sidecars | string | `500m` | yes
**istio.proxyMemory** | memory request for Envoy sidecars | string | `64Mi` | yes
**istio.proxyMemoryLimit** | memory limit for Envoy sidecars | string | `512Mi` | yes
### Install the helm chart ### Install the helm chart
Run this command from within this directory: Run this command from within this directory:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment