Fix typo in NetworkPolicy example

The given example results in:
```
The NetworkPolicy "test-network-policy" is invalid: spec.ingress[0].ports[0].protocol: Unsupported value: "tcp": supported values: TCP, UDP
```
This commit is contained in:
Mike Bryant
2017-07-13 19:40:07 +01:00
committed by Andrew Chen
parent 7adbe501e7
commit a0607d1bf0
@@ -51,7 +51,7 @@ spec:
matchLabels:
role: frontend
ports:
- protocol: tcp
- protocol: TCP
port: 6379
```