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:
parent
9ae02fcbb0
commit
360a842673
|
@ -305,13 +305,13 @@ and private key to use for TLS, e.g.:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
data:
|
|
||||||
tls.crt: base64 encoded cert
|
|
||||||
tls.key: base64 encoded key
|
|
||||||
kind: Secret
|
kind: Secret
|
||||||
metadata:
|
metadata:
|
||||||
name: testsecret-tls
|
name: testsecret-tls
|
||||||
namespace: default
|
namespace: default
|
||||||
|
data:
|
||||||
|
tls.crt: base64 encoded cert
|
||||||
|
tls.key: base64 encoded key
|
||||||
type: kubernetes.io/tls
|
type: kubernetes.io/tls
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue