# For information regarding those parameters, please visit http://onap.readthedocs.io/en/latest/submodules/dcaegen2.git/docs/sections/installation_heat.html
 
+
+# --------------------------------------------- #
+# IMPORTANT:
+# If you're running a K8S cluster, please add   #
+# your Node IPs in ../dcaegen2/values.yaml      #
+# --------------------------------------------- #
+
+
 #################
 # COMMON CONFIG #
 #################
 
 # For information regarding those parameters, please visit http://onap.readthedocs.io/en/latest/submodules/dcaegen2.git/docs/sections/installation_heat.html
 
+
+# --------------------------------------------- #
+# IMPORTANT:
+# If you're running a K8S cluster, please add   #
+# your Node IPs in ../dcaegen2/values.yaml      #
+# --------------------------------------------- #
+
+
 #################
 # COMMON CONFIG #
 #################
 
   selector:
     app: nginx
   type: LoadBalancer
+  externalIPs:
+  {{ if .Values.externalIp1 }}
+  - {{ .Values.externalIp1 }}
+  {{ end }}
+  {{ if .Values.externalIp2 }}
+  - {{ .Values.externalIp2 }}
+  {{ end }}
+  {{ if .Values.externalIp3 }}
+  - {{ .Values.externalIp3 }}
+  {{ end }}
+  {{ if .Values.externalIp4 }}
+  - {{ .Values.externalIp4 }}
+  {{ end }}
+  {{ if .Values.externalIp5 }}
+  - {{ .Values.externalIp5 }}
+  {{ end }}
+  {{ if .Values.externalIp6 }}
+  - {{ .Values.externalIp6 }}
+  {{ end }}
   externalTrafficPolicy: Local
\ No newline at end of file
 
   tag: stable
 heat_bootstrap:
   repository: ubuntu
-  tag: xenial
\ No newline at end of file
+  tag: xenial
+
+# Those are the IPs of the nodes in your K8S cluster.
+# You don't need to touch this is you have just one node.
+# If you have more than 6 nodes, edit the templates/nginx-service.yaml to add more entries.
+externalIp1:
+externalIp2:
+externalIp3:
+externalIp4:
+externalIp5:
+externalIp6:
\ No newline at end of file