add prometheus endoint flag to roc

Change-Id: Iad60d4019292fc6eee26ecdf2abc81b2f80c2828
diff --git a/aether-roc-api/Chart.yaml b/aether-roc-api/Chart.yaml
index 6c4f946..e1b4e4d 100644
--- a/aether-roc-api/Chart.yaml
+++ b/aether-roc-api/Chart.yaml
@@ -7,7 +7,7 @@
 description: Aether ROC API
 kubeVersion: ">=1.15.0"
 type: application
-version: 1.6.0
+version: 1.7.0
 appVersion: v0.10.0
 keywords:
   - aether
diff --git a/aether-roc-api/templates/deployment.yaml b/aether-roc-api/templates/deployment.yaml
index f925dc4..50d74e9 100644
--- a/aether-roc-api/templates/deployment.yaml
+++ b/aether-roc-api/templates/deployment.yaml
@@ -51,6 +51,7 @@
             - "-gnmiTimeout={{ .Values.gnmiTimeout }}"
             - "-port={{ .Values.port }}"
             - "-logLevel={{ .Values.logging.loggers.root.level }}"
+            - "-analyticsEndpoint={{ .Values.analyticsEndpoint }}"
             {{- range $key, $corsorigin := .Values.corsOrigins }}
             - {{ printf "-allowCorsOrigin=%s" $corsorigin }}
             {{end}}
diff --git a/aether-roc-api/values.yaml b/aether-roc-api/values.yaml
index 93cbfcd..d05fe06 100644
--- a/aether-roc-api/values.yaml
+++ b/aether-roc-api/values.yaml
@@ -19,6 +19,7 @@
 fullnameOverride: "aether-roc-api"
 
 gnmiEndpoint: onos-config:5150
+analyticsEndpoint: http://aether-roc-umbrella-prometheus-acc-server:9090
 gnmiTimeout: 10s
 port: 8181