Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleport forward
collapsetrue
> kubectl scale deployment/nginx --replicas=0deployment.apps/nginx scaled

Service (svc)

Exposing pod(s) with a service. This will act as a load balancer

Code Block
languageyml
titlenginx deployment
collapsetrue
apiVersion: v1
kind: Service
metadata:
  name: nginx
spec:
  selector:
    app: nginx
  ports:
    - protocol: TCP
      port: 80
      targetPort: 80

Ingress (ing)

Helm


Page properties
hiddentrue


Related issues


...