Merge pull request #26782 from dragoneena12/horizontal-pod-autoscale-walkthrough-ja

Translate tasks/run-application/horizontal-pod-autoscale-walkthrough/ into Japanese
This commit is contained in:
Kubernetes Prow Robot
2021-03-13 03:17:05 -08:00
committed by GitHub
2 changed files with 439 additions and 0 deletions
@@ -0,0 +1,36 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: php-apache
spec:
selector:
matchLabels:
run: php-apache
replicas: 1
template:
metadata:
labels:
run: php-apache
spec:
containers:
- name: php-apache
image: k8s.gcr.io/hpa-example
ports:
- containerPort: 80
resources:
limits:
cpu: 500m
requests:
cpu: 200m
---
apiVersion: v1
kind: Service
metadata:
name: php-apache
labels:
run: php-apache
spec:
ports:
- port: 80
selector:
run: php-apache