From d4028abb9c2c953a045cfff0557d0e803cd3c8fb Mon Sep 17 00:00:00 2001 From: YukiKasuya Date: Fri, 5 Jun 2020 18:41:31 +0900 Subject: [PATCH] add hello-application.yaml file under ja directory --- .../service/access/hello-application.yaml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 content/ja/examples/service/access/hello-application.yaml diff --git a/content/ja/examples/service/access/hello-application.yaml b/content/ja/examples/service/access/hello-application.yaml new file mode 100644 index 0000000000..1cf41313c5 --- /dev/null +++ b/content/ja/examples/service/access/hello-application.yaml @@ -0,0 +1,20 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: hello-world +spec: + selector: + matchLabels: + run: load-balancer-example + replicas: 2 + template: + metadata: + labels: + run: load-balancer-example + spec: + containers: + - name: hello-world + image: gcr.io/google-samples/node-hello:1.0 + ports: + - containerPort: 8080 + protocol: TCP