Skip to content

Commit

Permalink
Updating Helm chart for product-factory-ms to version 4.41.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkins authored and jenkins committed Sep 5, 2023
1 parent b8571e6 commit a3e3a20
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/product-factory/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: product-factory
description: Helm chart for product factory application
type: application
version: 4.40.0
appVersion: 4.40.0
version: 4.41.0
appVersion: 4.41.0
5 changes: 5 additions & 0 deletions charts/product-factory/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,9 @@ kafka:
tipsdirectory:
name: hr.vestigo.hp.tipsdirectory.profac # default value, set custom name if required
consumerGroup: hr.vestigo.hp.tipsdirectory.profac # default value, set custom name if required
ibanplus:
name: hr.vestigo.hp.ibanplus.profac # default value, set custom name if required
consumerGroup: hr.vestigo.hp.ibanplus.profac # default value, set custom name if required
```

### Enabling and disabling functionalities
Expand Down Expand Up @@ -278,6 +281,8 @@ productFactory:
enabled: true # functionality enabled by default
tipsdirectory:
enabled: true # functionality enabled by default
ibanplus:
enabled: true # functionality enabled by default
```

### Configuring image source and pull secrets
Expand Down
8 changes: 8 additions & 0 deletions charts/product-factory/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,10 @@ spec:
value: {{ .Values.kafka.topics.tipsdirectory.name | quote }}
- name: KAFKA_CONSUMER_GROUP_TIPSDIRECTORY_NAME
value: {{ .Values.kafka.topics.tipsdirectory.consumerGroup | quote }}
- name: KAFKA_TOPIC_IBANPLUS_NAME
value: {{ .Values.kafka.topics.ibanplus.name | quote }}
- name: KAFKA_CONSUMER_GROUP_IBANPLUS_NAME
value: {{ .Values.kafka.topics.ibanplus.consumerGroup | quote }}
- name: PRODUCT_FACTORY_COBAFF_SCHEMA_ENABLED
value: {{ .Values.productFactory.cobaffschema.enabled | quote }}
- name: PRODUCT_FACTORY_COBAFF_SCHEMA_GATEWAY_PARAMS_ENABLED
Expand Down Expand Up @@ -257,6 +261,10 @@ spec:
value: {{ .Values.productFactory.tipsdirectory.enabled | quote }}
- name: PRODUCT_FACTORY_TIPSDIRECTORY_UNIVERSAL_ENABLED
value: {{ .Values.productFactory.tipsdirectory.universal.enabled | quote }}
- name: PRODUCT_FACTORY_IBANPLUS_ENABLED
value: {{ .Values.productFactory.ibanplus.enabled | quote }}
- name: PRODUCT_FACTORY_IBANPLUS_UNIVERSAL_ENABLED
value: {{ .Values.productFactory.ibanplus.universal.enabled | quote }}
- name: SERVER_SSL_KEYSTORE
value: /tmp/tls.p12
- name: SERVER_SSL_KEYSTORETYPE
Expand Down
9 changes: 8 additions & 1 deletion charts/product-factory/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ image:
liquibase:
registry: null
imageLocation: null
tag: 4.39.0
tag: 4.41.0
pullPolicy: null
imagePullSecrets: []
env:
Expand Down Expand Up @@ -109,6 +109,9 @@ kafka:
tipsdirectory:
name: hr.vestigo.hp.tipsdirectory.profac
consumerGroup: hr.vestigo.hp.tipsdirectory.profac
ibanplus:
name: hr.vestigo.hp.ibanplus.profac
consumerGroup: hr.vestigo.hp.ibanplus.profac
productFactory:
cobaffschema:
enabled: false
Expand Down Expand Up @@ -166,6 +169,10 @@ productFactory:
enabled: false
universal:
enabled: false
ibanplus:
enabled: false
universal:
enabled: false
request:
sanitization:
enabled: true
Expand Down

0 comments on commit a3e3a20

Please sign in to comment.