Fix orders of yaml of services-networking/ingress (#14192)

The order of kind and metadata were inconsistent, and that made the
doc unreadable.
This fixes the orders in consistent way in ingress.md
This commit is contained in:
Kenichi Omichi 2019-05-06 17:43:41 -07:00 committed by Kubernetes Prow Robot
parent 9ae02fcbb0
commit 360a842673
1 changed files with 3 additions and 3 deletions

View File

@ -305,13 +305,13 @@ and private key to use for TLS, e.g.:
```yaml
apiVersion: v1
data:
tls.crt: base64 encoded cert
tls.key: base64 encoded key
kind: Secret
metadata:
name: testsecret-tls
namespace: default
data:
tls.crt: base64 encoded cert
tls.key: base64 encoded key
type: kubernetes.io/tls
```