SEBA-698 Remove reference to private image

Change-Id: Ie72451583a055fa2ccb481b8b6ea56454a28bff9
diff --git a/ponnet/templates/ponnet-cni.yaml b/ponnet/templates/ponnet-cni.yaml
new file mode 100644
index 0000000..0241df6
--- /dev/null
+++ b/ponnet/templates/ponnet-cni.yaml
@@ -0,0 +1,184 @@
+---
+# Copyright 2017-present Open Networking Foundation
+#
+# 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.
+
+kind: ClusterRole
+apiVersion: rbac.authorization.k8s.io/v1beta1
+metadata:
+  name: ponnet-plugin
+rules:
+  - apiGroups:
+      - ""
+    resources:
+      - pods
+    verbs:
+      - get
+      - update
+      - patch
+  - apiGroups:
+      - "alpha.network.k8s.io"
+    resources:
+      - logicalnetworks
+    verbs:
+      - get
+      - update
+      - patch
+  - apiGroups:
+      - "alpha.network.k8s.io"
+    resources:
+      - physicalnetworks
+    verbs:
+      - get
+      - update
+      - patch
+  - apiGroups:
+      - ""
+    resources:
+      - configmaps
+    verbs:
+      - get
+  - apiGroups:
+      - "admissionregistration.k8s.io"
+    resources:
+      - validatingwebhookconfigurations
+    verbs:
+      - get
+      - update
+      - create
+      - delete
+
+---
+kind: ClusterRoleBinding
+apiVersion: rbac.authorization.k8s.io/v1beta1
+metadata:
+  name: ponnet-plugin
+roleRef:
+  apiGroup: rbac.authorization.k8s.io
+  kind: ClusterRole
+  name: ponnet-plugin
+subjects:
+- kind: ServiceAccount
+  name: ponnnet-plugin
+  namespace: kube-system
+- kind: Group
+  name: system:authenticated
+  apiGroup: rbac.authorization.k8s.io
+
+---
+apiVersion: v1
+kind: ServiceAccount
+metadata:
+  name: ponnet-plugin
+  namespace: kube-system
+
+---
+# This ConfigMap can be used to configure a self-hosted Ponnet installation.
+kind: ConfigMap
+apiVersion: v1
+metadata:
+  name: ponnet-config
+  namespace: kube-system
+data:
+  pon0.conf: |
+    {
+      "name": "pon0",
+      "type": "bridge",
+      "bridge": "pon0",
+      "isGateway": false,
+      "ipMask": false,
+      "ipam": {
+        "type": "host-local",
+        "subnet": "10.22.0.0/16"
+      }
+    }
+  pon1.conf: |
+    {
+      "name": "pon1",
+      "type": "bridge",
+      "bridge": "pon1",
+      "isGateway": false,
+      "ipMask": false,
+      "ipam": {
+        "type": "host-local",
+        "subnet": "10.23.0.0/16"
+      }
+    }
+
+---
+# Install Ponnnet CNI conf on each slave node.
+kind: DaemonSet
+apiVersion: extensions/v1beta1
+metadata:
+  name: ponnet-plugin
+  namespace: kube-system
+  labels:
+    k8s-app: ponnet
+spec:
+  selector:
+    matchLabels:
+      k8s-app: ponnet
+  template:
+    metadata:
+      labels:
+        k8s-app: ponnet
+      annotations:
+        scheduler.alpha.kubernetes.io/critical-pod: ''
+        scheduler.alpha.kubernetes.io/tolerations: |
+          [
+            {
+              "key": "dedicated",
+              "value": "master",
+              "effect": "NoSchedule"
+            },
+            {
+              "key": "CriticalAddonsOnly",
+              "operator": "Exists"
+            }
+          ]
+    spec:
+      hostNetwork: true
+      hostPID: true
+      serviceAccountName: ponnet-plugin
+      initContainers:
+        # Installs CNI config files on each node
+        - name: install-cni
+          image: {{ .Values.pull_docker_registry }}{{ .Values.images.ponnet.repository }}:{{ .Values.images.ponnet.tag }} 
+          imagePullPolicy: {{ .Values.images.ponnet.pullPolicy }}
+          command: ["/bin/sh", "-c", "cp /tmp/cni/* /host/etc/cni/net.d"]
+          env:
+            - name: KUBERNETES_NODE_NAME
+              valueFrom:
+                fieldRef:
+                  fieldPath: spec.nodeName
+          volumeMounts:
+            - mountPath: /host/opt/cni/bin
+              name: cni-bin-dir
+            - mountPath: /host/etc/cni/net.d
+              name: cni-net-dir
+            - mountPath: /tmp/cni
+              name: ponnet-config
+      volumes:
+        - name: cni-bin-dir
+          hostPath:
+            path: /opt/cni/bin
+        - name: cni-net-dir
+          hostPath:
+            path: /etc/cni/net.d
+        - name: ponnet-config
+          configMap:
+            name: ponnet-config
+      containers:
+        - name: pause
+          image: gcr.io/google_containers/pause
+