I am new to kubernetes and I went through many articles but didnt find a basic answer to my doubt.
Suppose I have 2 nodes kubernete cluster and I have deployed 2 applications on it then.
My both of the apps will be hosted on both of the nodes? Like app1 on both of the nodes and similarly app2? it means we have replication factor of 2 by default. Correct?
It will have 1 pod per node? What will be the structure?
Node 1, Pod1 - > App1 Node 1, Pod1 - > App2 Node 2, Pod1 - > App1 Node 2, Pod1 - > App2
- If I have set replication factor=2 then how it will affect the structure? Will it create
Node 1- Pod1 - > App1 Node 1- Pod2 - > App2 Node 2- Pod1 - > App1 Node 2- Pod2 - > App2
- What is deployment in terms of above physical/logical structures? How it differs with service? Deployment is specific to per node?