aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/sdc
diff options
context:
space:
mode:
Diffstat (limited to 'kubernetes/sdc')
-rw-r--r--kubernetes/sdc/components/sdc-cs/values.yaml8
-rw-r--r--kubernetes/sdc/components/sdc-helm-validator/templates/deployment.yaml6
-rw-r--r--kubernetes/sdc/components/sdc-helm-validator/values.yaml8
-rw-r--r--kubernetes/sdc/values.yaml7
4 files changed, 23 insertions, 6 deletions
diff --git a/kubernetes/sdc/components/sdc-cs/values.yaml b/kubernetes/sdc/components/sdc-cs/values.yaml
index c4e6945a8b..61a38dbb0a 100644
--- a/kubernetes/sdc/components/sdc-cs/values.yaml
+++ b/kubernetes/sdc/components/sdc-cs/values.yaml
@@ -18,7 +18,7 @@
#################################################################
global:
nodePortPrefix: 302
- readinessImage: onap/oom/readiness:6.1.1
+ readinessImage: onap/oom/readiness:6.1.2
loggingRepository: docker.elastic.co
loggingImage: beats/filebeat:5.5.0
sdc_cassandra:
@@ -150,15 +150,15 @@ affinity: {}
# probe configuration parameters
liveness:
- initialDelaySeconds: 60
- periodSeconds: 10
+ initialDelaySeconds: 120
+ periodSeconds: 120
# necessary to disable liveness probe when setting breakpoints
# in debugger so K8s doesn't restart unresponsive container
enabled: true
readiness:
initialDelaySeconds: 120
- periodSeconds: 10
+ periodSeconds: 60
service:
type: ClusterIP
diff --git a/kubernetes/sdc/components/sdc-helm-validator/templates/deployment.yaml b/kubernetes/sdc/components/sdc-helm-validator/templates/deployment.yaml
index ef006d8071..894bfd60f7 100644
--- a/kubernetes/sdc/components/sdc-helm-validator/templates/deployment.yaml
+++ b/kubernetes/sdc/components/sdc-helm-validator/templates/deployment.yaml
@@ -37,6 +37,12 @@ spec:
env:
- name: LOG_LEVEL
value: {{ .Values.config.loggingLevel }}
+ - name: TRACING_ENABLED
+ value: {{ .Values.global.tracing.enabled | quote }}
+ - name: COLLECTOR_URL
+ value: {{ .Values.global.tracing.collector.baseUrl }}
+ - name: TRACING_SAMPLING_PROBABILITY
+ value: {{ .Values.global.tracing.sampling.probability | quote }}
livenessProbe:
httpGet:
path: {{ .Values.liveness.path }}
diff --git a/kubernetes/sdc/components/sdc-helm-validator/values.yaml b/kubernetes/sdc/components/sdc-helm-validator/values.yaml
index 7d3883cd91..b96e3c1544 100644
--- a/kubernetes/sdc/components/sdc-helm-validator/values.yaml
+++ b/kubernetes/sdc/components/sdc-helm-validator/values.yaml
@@ -18,8 +18,14 @@
# Global values
global:
pullPolicy: Always
+ tracing:
+ enabled: false
+ collector:
+ baseUrl: http://jaeger-collector.istio-config:9411
+ sampling:
+ probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
-image: onap/sdc-helm-validator:1.3.1
+image: onap/sdc-helm-validator:1.3.2
containerPort: &svc_port 8080
config:
diff --git a/kubernetes/sdc/values.yaml b/kubernetes/sdc/values.yaml
index 88cd12654a..23324186a1 100644
--- a/kubernetes/sdc/values.yaml
+++ b/kubernetes/sdc/values.yaml
@@ -65,6 +65,12 @@ global:
topics:
sdcDistNotifTopic: &notif-topic-name SDC-DISTR-NOTIF-TOPIC
sdcDistStatusTopic: &status-topic-name SDC-DISTR-STATUS-TOPIC
+ tracing:
+ enabled: false
+ collector:
+ baseUrl: http://jaeger-collector.istio-config:9411
+ sampling:
+ probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
# Environment file
env:
@@ -124,4 +130,3 @@ cassandra:
socket_read_timeout: 20000
socket_connect_timeout: 20000
janusgraph_connection_timeout: 10000
-