(Created target blank page For Version: HTCC:9.0.0) |
(Update with the copy of version: 9.0.0DRAFT) |
||
Line 1: | Line 1: | ||
− | < | + | =Upgrading from 9.0.002.57 to 9.0.002.74= |
+ | |||
+ | Configuration file ('''parameters.yaml''') should be updated as follows: | ||
+ | |||
+ | '''Redis server configuration''' | ||
+ | |||
+ | Previously: | ||
+ | <source lang="text"> | ||
+ | REDIS_ADDR: redis-cluster:6379 | ||
+ | </source> | ||
+ | Now, it is split as: | ||
+ | <source lang="text"> | ||
+ | REDIS_ADDR: redis-cluster | ||
+ | REDIS_PORT: 6379 | ||
+ | </source> | ||
+ | '''Elasticsearch server configuration''' | ||
+ | |||
+ | Previously: | ||
+ | <source lang="text"> | ||
+ | ELASTICSEARCH: elasticsearch:9200 | ||
+ | </source> | ||
+ | Now, it is split as: | ||
+ | <source lang="text"> | ||
+ | ELASTICSEARCH_ADDR: elasticsearch | ||
+ | ELASTICSEARCH_PORT: 9200 | ||
+ | </source> | ||
+ | '''Ingress endpoints configuration''' | ||
+ | |||
+ | A new section should be added to '''parameters.yaml''': | ||
+ | <source lang="text"> | ||
+ | entryPoints: | ||
+ | internal: | ||
+ | service: | ||
+ | type: LoadBalancer | ||
+ | annotations: {} | ||
+ | ingress: | ||
+ | annotations: {} | ||
+ | tlsEnable: false | ||
+ | secretName: gws-secret-int | ||
+ | hostName: gws-int.test.com | ||
+ | external: | ||
+ | service: | ||
+ | type: ClusterIP | ||
+ | annotations: {} | ||
+ | ingress: | ||
+ | annotations: {} | ||
+ | tlsEnable: false | ||
+ | secretName: gws-secret-ext | ||
+ | hostName: gws.test.com | ||
+ | </source> | ||
+ | |||
+ | [[Category:V:HTCC:9.0.0]] |
Revision as of 19:04, September 28, 2020
Upgrading from 9.0.002.57 to 9.0.002.74
Configuration file (parameters.yaml) should be updated as follows:
Redis server configuration
Previously:
REDIS_ADDR: redis-cluster:6379
Now, it is split as:
REDIS_ADDR: redis-cluster
REDIS_PORT: 6379
Elasticsearch server configuration
Previously:
ELASTICSEARCH: elasticsearch:9200
Now, it is split as:
ELASTICSEARCH_ADDR: elasticsearch
ELASTICSEARCH_PORT: 9200
Ingress endpoints configuration
A new section should be added to parameters.yaml:
entryPoints:
internal:
service:
type: LoadBalancer
annotations: {}
ingress:
annotations: {}
tlsEnable: false
secretName: gws-secret-int
hostName: gws-int.test.com
external:
service:
type: ClusterIP
annotations: {}
ingress:
annotations: {}
tlsEnable: false
secretName: gws-secret-ext
hostName: gws.test.com
Comments or questions about this documentation? Contact us for support!