I am trying this scenario - internal pod should have communication to and from - . . .

Lavanya R:

ZM:
You have defined matchLabels as map. What you need is two podSelector as list items under -from

ZM:
The way you have defined is has a problem:

matchLabels is a map and not a list (no -). This map has repeated keys, so the second key/value pair (name: mysql) overrides the first key/value pair (name: payroll)

Lavanya R:
Much Thanks ZM