Updated dockerfiles and min toolset image

  - toolset divided to min and full
  - new qa-daemonset.yaml to work with node's networks and run checks

Related-PROD: PROD-36128
Change-Id: I0acd5281c3ce7c3577f507110c29984bcec01053
diff --git a/k8s/qa-daemonset.yaml b/k8s/qa-daemonset.yaml
new file mode 100644
index 0000000..b6696e4
--- /dev/null
+++ b/k8s/qa-daemonset.yaml
@@ -0,0 +1,28 @@
+apiVersion: apps/v1
+kind: DaemonSet
+metadata:
+  name: nodeinfo
+  namespace: qa-space
+spec:
+  selector:
+    matchLabels:
+      name: nodeinfo
+  template:
+    metadata:
+      labels:
+        name: nodeinfo
+    spec:
+      tolerations:
+      # this toleration is to have the daemonset runnable on master nodes
+      # remove it if your masters can't run pods
+      - key: node-role.kubernetes.io/master
+        operator: Exists
+        effect: NoSchedule
+      containers:
+      - command:
+        - /bin/sleep
+        - infinity
+        name: nodeinfo-pod
+        imagePullPolicy: IfNotPresent
+        image: savex13/toolset-min:0.2
+      hostNetwork: true