Advertisement
supermaca

Untitled

Mar 17th, 2023
641
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.49 KB | None | 0 0
  1. # 174-webserver-service.yaml
  2. apiVersion: v1  # Version of Kubernetes API
  3. kind: Service   # Type of resource
  4. metadata:      # Resource metadata
  5.   name: webserversvc  # Resource name
  6. spec:          # Resource specifications
  7.   type: NodePort  # Exposes service on high port
  8.   ports:       # Service ports
  9.     - port: 80     # Port number (HTTP traffic)
  10.       protocol: TCP  # Protocol type
  11.   selector:      # Selects Pods to route traffic to
  12.     app: httpd    # Selects Pods labeled "app=httpd"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement