Service NodePort

Service NodePort

Service NodePort

Deployment File

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

Service File

Curl or Wget

Last updated