From e0cd1ee67d711dfd30c9eafb5c6e8fa48af1e80f Mon Sep 17 00:00:00 2001 From: Kenichi Omichi Date: Tue, 7 May 2019 22:14:32 -0700 Subject: [PATCH] Fix orders of yaml of pods/init-containers.md (#14214) The orders of kind and metadata were inconsistent, and that made the doc unreadable. This fixes the orders in consistent way under pods/init-containers.md. --- content/en/docs/concepts/workloads/pods/init-containers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/concepts/workloads/pods/init-containers.md b/content/en/docs/concepts/workloads/pods/init-containers.md index c535d5b59e..2c6aeb8ddf 100644 --- a/content/en/docs/concepts/workloads/pods/init-containers.md +++ b/content/en/docs/concepts/workloads/pods/init-containers.md @@ -156,8 +156,8 @@ spec: Yaml file below outlines the `mydb` and `myservice` services: ```yaml -kind: Service apiVersion: v1 +kind: Service metadata: name: myservice spec: @@ -166,8 +166,8 @@ spec: port: 80 targetPort: 9376 --- -kind: Service apiVersion: v1 +kind: Service metadata: name: mydb spec: