From e883a27f3b305542e46c0528f6cbebff7bdaa735 Mon Sep 17 00:00:00 2001 From: Ahmet Alp Balkan Date: Wed, 21 Jun 2017 11:11:53 -0700 Subject: [PATCH] networkpolicies.md --> network-policies.md for SEO Signed-off-by: Ahmet Alp Balkan --- _data/concepts.yml | 2 +- docs/concepts/cluster-administration/addons.md | 2 +- docs/concepts/cluster-administration/networking.md | 2 +- .../{networkpolicies.md => network-policies.md} | 0 docs/getting-started-guides/scratch.md | 2 +- docs/tasks/administer-cluster/declare-network-policy.md | 2 +- js/redirects.js | 4 ++++ 7 files changed, 9 insertions(+), 5 deletions(-) rename docs/concepts/services-networking/{networkpolicies.md => network-policies.md} (100%) diff --git a/_data/concepts.yml b/_data/concepts.yml index 3eaffe1e7f..1e03af5f84 100644 --- a/_data/concepts.yml +++ b/_data/concepts.yml @@ -60,7 +60,7 @@ toc: - docs/concepts/services-networking/dns-pod-service.md - docs/concepts/services-networking/connect-applications-service.md - docs/concepts/services-networking/ingress.md - - docs/concepts/services-networking/networkpolicies.md + - docs/concepts/services-networking/network-policies.md - title: Storage section: diff --git a/docs/concepts/cluster-administration/addons.md b/docs/concepts/cluster-administration/addons.md index 2988fcf4d0..0aaaf7c82d 100644 --- a/docs/concepts/cluster-administration/addons.md +++ b/docs/concepts/cluster-administration/addons.md @@ -20,7 +20,7 @@ Add-ons in each section are sorted alphabetically - the ordering does not imply * [Cilium](https://github.com/cilium/cilium) is a L3 network and network policy plugin that can enforce HTTP/API/L7 policies transparently. Both routing and overlay/encapsulation mode are supported. * [Contiv](http://contiv.github.io) provides configurable networking (native L3 using BGP, overlay using vxlan, classic L2, and Cisco-SDN/ACI) for various use cases and a rich policy framework. Contiv project is fully [open sourced](http://github.com/contiv). The [installer](http://github.com/contiv/install) provides both kubeadm and non-kubeadm based installation options. * [Flannel](https://github.com/coreos/flannel/blob/master/Documentation/kube-flannel.yml) is an overlay network provider that can be used with Kubernetes. -* [Romana](http://romana.io) is a Layer 3 networking solution for pod networks that also supports the [NetworkPolicy API](/docs/concepts/services-networking/networkpolicies/). Kubeadm add-on installation details available [here](https://github.com/romana/romana/tree/master/containerize). +* [Romana](http://romana.io) is a Layer 3 networking solution for pod networks that also supports the [NetworkPolicy API](/docs/concepts/services-networking/network-policies/). Kubeadm add-on installation details available [here](https://github.com/romana/romana/tree/master/containerize). * [Weave Net](https://www.weave.works/docs/net/latest/kube-addon/) provides networking and network policy, will carry on working on both sides of a network partition, and does not require an external database. * [CNI-Genie](https://github.com/Huawei-PaaS/CNI-Genie) enables Kubernetes to seamlessly connect to a choice of CNI plugins, such as Flannel, Calico, Canal, Romana, or Weave. diff --git a/docs/concepts/cluster-administration/networking.md b/docs/concepts/cluster-administration/networking.md index aa98560944..ff7af7942b 100644 --- a/docs/concepts/cluster-administration/networking.md +++ b/docs/concepts/cluster-administration/networking.md @@ -213,7 +213,7 @@ Calico can also be run in policy enforcement mode in conjunction with other netw ### Romana -[Romana](http://romana.io) is an open source network and security automation solution that lets you deploy Kubernetes without an overlay network. Romana supports Kubernetes [Network Policy](/docs/concepts/services-networking/networkpolicies/) to provide isolation across network namespaces. +[Romana](http://romana.io) is an open source network and security automation solution that lets you deploy Kubernetes without an overlay network. Romana supports Kubernetes [Network Policy](/docs/concepts/services-networking/network-policies/) to provide isolation across network namespaces. ### Weave Net from Weaveworks diff --git a/docs/concepts/services-networking/networkpolicies.md b/docs/concepts/services-networking/network-policies.md similarity index 100% rename from docs/concepts/services-networking/networkpolicies.md rename to docs/concepts/services-networking/network-policies.md diff --git a/docs/getting-started-guides/scratch.md b/docs/getting-started-guides/scratch.md index ffb02c031f..eb5b37752b 100644 --- a/docs/getting-started-guides/scratch.md +++ b/docs/getting-started-guides/scratch.md @@ -130,7 +130,7 @@ Also, you need to pick a static IP for master node. #### Network Policy -Kubernetes enables the definition of fine-grained network policy between Pods using the [NetworkPolicy](/docs/concepts/services-networking/networkpolicies/) resource. +Kubernetes enables the definition of fine-grained network policy between Pods using the [NetworkPolicy](/docs/concepts/services-networking/network-policies/) resource. Not all networking providers support the Kubernetes NetworkPolicy API, see [Using Network Policy](/docs/tasks/configure-pod-container/declare-network-policy/) for more information. diff --git a/docs/tasks/administer-cluster/declare-network-policy.md b/docs/tasks/administer-cluster/declare-network-policy.md index cb5805e1cf..6ce303e22b 100644 --- a/docs/tasks/administer-cluster/declare-network-policy.md +++ b/docs/tasks/administer-cluster/declare-network-policy.md @@ -9,7 +9,7 @@ redirect_from: - "/docs/tasks/configure-pod-container/declare-network-policy.html" --- {% capture overview %} -This document helps you get started using using the Kubernetes [NetworkPolicy API](/docs/user-guide/networkpolicies) to declare network policies that govern how pods communicate with each other. +This document helps you get started using using the Kubernetes [NetworkPolicy API](/docs/user-guide/network-policies) to declare network policies that govern how pods communicate with each other. {% endcapture %} {% capture prerequisites %} diff --git a/js/redirects.js b/js/redirects.js index 39f39a9949..a6cb150c5f 100644 --- a/js/redirects.js +++ b/js/redirects.js @@ -76,6 +76,10 @@ $( document ).ready(function() { { "from": "/docs/troubleshooting/", "to": "/docs/tasks/debug-application-cluster/troubleshooting/" + }, + { + "from": "/docs/concepts/services-networking/networkpolicies/", + "to": "/docs/concepts/services-networking/network-policies/" }]; forwardingRules.forEach(function(rule) {