how can i set kubectl scale deployment into deployment file?

7/1/2021

After setup my kubernetes cluster on GCP i used command kubectl scale deployment superappip--replicas=30 from google console to scale my deployments, but what should be added in my deployment file myip-service.yaml to do the same?

-- babebort
kubectl
kubernetes

1 Answer

7/1/2021

The following is an example of a Deployment. It creates a ReplicaSet to bring up three nginx Pods

apiVersion: apps/v1
kind: Deployment
metadata:
  name: nginx-deployment
  labels:
    app: nginx
spec:
  replicas: 3
  selector:
    matchLabels:
      app: nginx
  template:
    metadata:
      labels:
        app: nginx
    spec:
      containers:
      - name: nginx
        image: nginx:1.14.2
        ports:
        - containerPort: 80

you can follow more here.

-- Nikhil
Source: StackOverflow