diff options
| author | Kubernetes Submit Queue <k8s-merge-robot@users.noreply.github.com> | 2016-08-02 16:24:12 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-02 16:24:12 -0700 |
| commit | 8fc0b285d41a09948045c7e3bcf1ae1dd2ac4715 (patch) | |
| tree | b81163f8c5f938b0bb08b67d24f057858ab28357 | |
| parent | 291d5534cdde903e663498fd805115671766b307 (diff) | |
| parent | b06c9cc99a5dbc4ecb44e036312cd499689ecab2 (diff) | |
Merge pull request #28902 from ibm-contribs/fix_allow_all
Automatic merge from submit-queue
Fix the allow-all example NetworkPolicy
[]()
This is a bug fix, no release note required.
Fixes #28795
| -rw-r--r-- | network-policy.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/network-policy.md b/network-policy.md index 3250aca4..c60f3f5c 100644 --- a/network-policy.md +++ b/network-policy.md @@ -321,11 +321,13 @@ spec: ```yaml kind: NetworkPolicy -apiVersion: extensions/v1beta1 +apiVersion: extensions/v1beta1 metadata: name: allow-all spec: - podSelector: + podSelector: + ingress: + - {} ``` ## References |
