From 524be4f4705183b590761fb37bfcc4c929230868 Mon Sep 17 00:00:00 2001 From: Aditya Date: Wed, 21 Apr 2021 21:52:41 +0200 Subject: [PATCH] Updated f.services.md Corrected the location of the documentation. --- f.services.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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