diff --git a/f.services.md b/f.services.md index a4f0923a..27c7dc9f 100644 --- a/f.services.md +++ b/f.services.md @@ -1,6 +1,8 @@ ![](https://gaforgithub.azurewebsites.net/api?repo=CKAD-exercises/services&empty) # Services and Networking (13%) +kubernetes.io > Documentation > Concepts > Services, Load Balancing, and Networking > [Network Policies](https://kubernetes.io/docs/concepts/services-networking/network-policies/) + ### Create a pod with image nginx called nginx and expose its port 80
show @@ -174,7 +176,6 @@ kubectl delete deploy foo ### Create an nginx deployment of 2 replicas, expose it via a ClusterIP service on port 80. Create a NetworkPolicy so that only pods with labels 'access: granted' can access the deployment and apply it -kubernetes.io > Documentation > Concepts > Services, Load Balancing, and Networking > [Network Policies](https://kubernetes.io/docs/concepts/services-networking/network-policies/)
show