Services

2025. 1. 7. 16:17쿠버네티스/Kubernetes for the Absolute Beginners

728x90
반응형

apiVersion: v1
kind: Service
metadata:
  name: image-processing
  labels:
    app: myapp
spec:
  # type: ClusterIP
  ports:
    - port: 80
      targetPort: 8080
  selector:
    tier: backend
    
    
apiVersion: v1
kind: Service
metadata:
  name: frontend
  labels:
    app: myapp
spec:
  type: NodePort
  ports:
    - port: 80
      targetPort: 80
  selector:
    app: myapp

 

반응형

'쿠버네티스 > Kubernetes for the Absolute Beginners' 카테고리의 다른 글

Microsevices Architectue  (0) 2025.01.07
Deployments  (0) 2025.01.07
Replication Controllers and ReplicaSets  (0) 2025.01.07
PODs with YAML  (0) 2025.01.07