Deployment vs Daemonset
Deployment and Daemonset
code compare
Deployment
1. pod will deploy as per replicas define.
2. pod will get pod ip list.
3. pod will get dynamic ip.
4. pod control by replicas and replicas control by deployment.
Daemonset
1.pod will deploy pod per node.
2. pod will get node ip.
3.pod will always get same ip
4. pod control by daemonset.
Comments
Post a Comment