Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions charts/data-processing-service/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,18 @@ spec:
value: {{ .Values.kafka.cluster }}
- name: SERVICE_TZ
value: {{ .Values.timezone | default "UTC"}}
- name: KAFKA_THREAD
value: "{{ .Values.kafkaThread}}"
- name: KAFKA_MAX_POLL_RECORD
value: "{{ .Values.maxPollRecord}}"
- name: JDBC_FLAG
value: "{{ .Values.jdbcFlag}}"
- name: THREAD_POOL_SIZE
value: "{{ .Values.threadPoolSize}}"
- name: THREAD_QUEUE_SIZE
value: "{{ .Values.threadQueueSize}}"
- name: THREAD_FLAG
value: "{{ .Values.threadFlag}}"
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- with .Values.nodeSelector }}
Expand Down
2 changes: 1 addition & 1 deletion charts/data-processing-service/values-dts1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@ dataingestion:
keycloak:
srte:
clientId: ""
clientSecret: ""
clientSecret: ""
32 changes: 24 additions & 8 deletions charts/data-processing-service/values-feature.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
replicaCount: 10
replicaCount: 5

env: "feature"

image:
repository: ""
pullPolicy: IfNotPresent
tag: 1.0.1-SNAPSHOT-RTI-PERFORM-1.0.2.511598c
tag: 1.0.1-SNAPSHOT-PEFR-522025-4.a9ca8c8

imagePullSecrets: []
nameOverride: ""
Expand Down Expand Up @@ -40,12 +40,12 @@ ingress:

# Kubernetes resource limits
resources:
limits:
memory: "800Mi"
cpu: "1000m"
requests:
memory: "600Mi"
cpu: "500m"
cpu: "700m"
memory: "2Gi"
limits:
cpu: "1000m"
memory: "2Gi"

autoscaling:
enabled: false
Expand All @@ -57,7 +57,16 @@ nodeSelector: {}

tolerations: []

affinity: {}
affinity:
podAntiAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: app
operator: In
values:
- data-processing-service
topologyKey: "kubernetes.io/hostname"

ingressHost: "app.feature.nbspreview.com"

Expand All @@ -82,3 +91,10 @@ keycloak:
srte:
clientId: ""
clientSecret: ""

kafkaThread: "10"
maxPollRecord: "20"
jdbcFlag: "true"
threadPoolSize: "5"
threadQueueSize: "100"
threadFlag: "true"
1 change: 1 addition & 0 deletions charts/data-processing-service/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,4 @@ keycloak:
srte:
clientId: "EXAMPLE_SRTE_CLIENT_ID"
clientSecret: "EXAMPLE_SRTE_CLIENT_SECRET"