Updated dependencies for the affinity router.
Added the build mechanism for the affinity router.

Change-Id: I940edcc07f0a030f651dcb805b91e68418147151
diff --git a/k8s/affinity-router.yml b/k8s/affinity-router.yml
new file mode 100644
index 0000000..28c2623
--- /dev/null
+++ b/k8s/affinity-router.yml
@@ -0,0 +1,52 @@
+# Copyright 2018 the original author or authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+apiVersion: v1
+kind: Pod
+metadata:
+  name: afrouter
+  namespace: voltha
+  labels:
+    app: afrouter
+  annotations:
+    cni: "calico"
+spec:
+  containers:
+  - name: arouter
+    image: volthacore/afrouter:testing
+    imagePullPolicy: Always
+    volumeMounts:
+    - name: config-volume
+      mountPath: /app/config
+    ports:
+    - containerPort: 55555
+    command: ["/app/afrouter"]
+    args: ["-config", "/app/config/arouter.voltha3.json"]
+  - name: envoy
+    image: volthacore/envoy
+    volumeMounts:
+    - name: config-volume
+      mountPath: /envoy/config
+    ports:
+    - containerPort: 8192
+    - containerPort: 50555
+  - name: arouterd
+    image: volthacore/afrouterd:testing
+    command: ["/app/arouterd"]
+    imagePullPolicy: Always
+  restartPolicy: Never
+  volumes:
+    - name: config-volume
+      configMap:
+        name: afrouter-config