VOL-4435 checks for parent device in reconcilation + flow timeout

Change-Id: Ie8b8e54830809b1e95d6e29600f6fe5f51c538f8
diff --git a/voltha/Chart.yaml b/voltha/Chart.yaml
index 2204589..674d8f2 100644
--- a/voltha/Chart.yaml
+++ b/voltha/Chart.yaml
@@ -14,7 +14,7 @@
 ---
 apiVersion: "v1"
 name: "voltha"
-version: "2.10.7"
+version: "2.10.8"
 description: "A Helm chart for Voltha based on K8S resources in Voltha project"
 keywords:
   - "onf"
diff --git a/voltha/templates/core-deploy.yaml b/voltha/templates/core-deploy.yaml
index fa5731b..807faa1 100644
--- a/voltha/templates/core-deploy.yaml
+++ b/voltha/templates/core-deploy.yaml
@@ -93,6 +93,7 @@
             - "--banner"
             - "--kafka_cluster_address={{ tpl .Values.services.kafka.cluster.address . }}"
             - "--rpc_timeout={{ tpl .Values.rw_core.rpc_timeout . }}"
+            - "--flow_timeout={{ tpl .Values.rw_core.flow_timeout . }}"
             - "--internal_timeout={{ tpl .Values.rw_core.internal_timeout . }}"
             - "--event_topic={{ .Values.rw_core.topics.event_topic }}"
             - "--log_level={{ $log_level }}"
diff --git a/voltha/values.yaml b/voltha/values.yaml
index c2dd843..345f088 100644
--- a/voltha/values.yaml
+++ b/voltha/values.yaml
@@ -28,6 +28,7 @@
   image_pullPolicy: "Always"
   rw_core:
     rpc_timeout: "30s"
+    flow_timeout: "30s"
     internal_timeout: "30s"
   # Configure Log Correlation
   log_correlation:
@@ -88,6 +89,7 @@
 rw_core:
   log_level: '{{ .Values.global.log_level }}'
   rpc_timeout: '{{ .Values.global.rw_core.rpc_timeout }}'
+  flow_timeout: '{{ .Values.global.rw_core.flow_timeout }}'
   internal_timeout: '{{ .Values.global.rw_core.internal_timeout }}'
   kv_store_data_prefix: 'service/{{ .Values.global.stack_name }}_voltha'
   stack_id: "{{ .Values.global.stack_name }}"
@@ -112,7 +114,7 @@
   rw_core:
     registry: '{{ .Values.global.image_registry }}'
     repository: '{{ .Values.global.image_org }}voltha-rw-core'
-    tag: '{{- if hasKey .Values.global "image_tag" }}{{- if .Values.global.image_tag }}{{ .Values.global.image_tag }}{{- else }}3.0.0{{- end }}{{- else }}3.0.0{{- end }}'
+    tag: '{{- if hasKey .Values.global "image_tag" }}{{- if .Values.global.image_tag }}{{ .Values.global.image_tag }}{{- else }}3.0.1{{- end }}{{- else }}3.0.1{{- end }}'
     pullPolicy: '{{ .Values.global.image_pullPolicy }}'
 
 ingress: