[VOL-3850] Support configuration of reconciling timeout via helm charts

Change-Id: I6926ea066d5a7856ea83838c8dee60c7568bb0cd
diff --git a/voltha-adapter-openonu/Chart.yaml b/voltha-adapter-openonu/Chart.yaml
index ba0a4b5..052d620 100644
--- a/voltha-adapter-openonu/Chart.yaml
+++ b/voltha-adapter-openonu/Chart.yaml
@@ -14,7 +14,7 @@
 ---
 apiVersion: "v1"
 name: "voltha-adapter-openonu"
-version: "2.7.8"
+version: "2.7.9"
 description: "A Helm chart for Voltha OpenONU Adapter"
 keywords:
   - "onf"
diff --git a/voltha-adapter-openonu/templates/openonu-go-deploy.yaml b/voltha-adapter-openonu/templates/openonu-go-deploy.yaml
index 1e10714..f3ccab0 100644
--- a/voltha-adapter-openonu/templates/openonu-go-deploy.yaml
+++ b/voltha-adapter-openonu/templates/openonu-go-deploy.yaml
@@ -93,6 +93,7 @@
             - "--probe_port=8080"
             - "--accept_incr_evto={{ tpl .Values.adapter_open_onu.incremental_evto_update . }}"
             - "--max_timeout_interadapter_comm={{ tpl .Values.adapter_open_onu.max_timeout_interadapter_comm . }}"
+            - "--max_timeout_reconciling={{ tpl .Values.adapter_open_onu.max_timeout_reconciling . }}"
             - "--trace_enabled={{ .Values.global.tracing.enabled }}"
             - "--trace_agent_address={{ tpl .Values.services.tracing_agent.address . }}"
             - "--log_correlation_enabled={{ .Values.global.log_correlation.enabled }}"
diff --git a/voltha-adapter-openonu/values.yaml b/voltha-adapter-openonu/values.yaml
index 9fb4234..d62ba8f 100644
--- a/voltha-adapter-openonu/values.yaml
+++ b/voltha-adapter-openonu/values.yaml
@@ -29,6 +29,8 @@
   # timeout for deadline for interadapter communication
   # should be in format as expected by parseDuration golang.
   max_timeout_interadapter_comm: "30s"
+  # timeout for ONU reconciling
+  max_timeout_reconciling: "10s"
   # kv store timeout
   adapter_open_onu:
     timeout: "5s"
@@ -101,6 +103,7 @@
   log_level: '{{ .Values.global.log_level }}'
   incremental_evto_update: '{{ .Values.global.incremental_evto_update }}'
   max_timeout_interadapter_comm: '{{ .Values.global.max_timeout_interadapter_comm }}'
+  max_timeout_reconciling: '{{ .Values.global.max_timeout_reconciling }}'
   kv_store_timeout: '{{ .Values.global.adapter_open_onu.timeout }}'
   kv_store_data_prefix: 'service/{{ .Values.global.stack_name }}_voltha'
   topics:
@@ -116,5 +119,5 @@
   adapter_open_onu_go:
     registry: '{{ .Values.global.image_registry }}'
     repository: '{{ .Values.global.image_org }}voltha-openonu-adapter-go'
-    tag: '{{- if hasKey .Values.global "image_tag" }}{{- if .Values.global.image_tag }}{{ .Values.global.image_tag }}{{- else }}1.2.2{{- end }}{{- else }}1.2.2{{- end }}'
+    tag: '{{- if hasKey .Values.global "image_tag" }}{{- if .Values.global.image_tag }}{{ .Values.global.image_tag }}{{- else }}1.2.4{{- end }}{{- else }}1.2.4{{- end }}'
     pullPolicy: '{{ .Values.global.image_pullPolicy }}'