From c3f4f858891c52afb4f35e6198cfe0e6d59aa975 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 12 Aug 2016 11:26:07 -0400 Subject: [PATCH] Remove incorrect docs about unset fields in NetworkPolicyPeer --- docs/proposals/network-policy.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/proposals/network-policy.md b/docs/proposals/network-policy.md index c60f3f5c4da..3743211bcc4 100644 --- a/docs/proposals/network-policy.md +++ b/docs/proposals/network-policy.md @@ -207,14 +207,12 @@ type NetworkPolicyPeer struct { // This is a label selector which selects Pods in this namespace. // This field follows standard unversioned.LabelSelector semantics. - // If not provided, this selector selects no pods. // If present but empty, this selector selects all pods in this namespace. PodSelector *unversioned.LabelSelector `json:"podSelector,omitempty"` // Selects Namespaces using cluster scoped-labels. This // matches all pods in all namespaces selected by this label selector. // This field follows standard unversioned.LabelSelector semantics. - // If omited, this selector selects no namespaces. // If present but empty, this selector selects all namespaces. NamespaceSelector *unversioned.LabelSelector `json:"namespaceSelector,omitempty"` }