Advertisement
supermaca

Untitled

Mar 17th, 2023
667
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.03 KB | None | 0 0
  1. # 174-webserver-deployment.yaml
  2. apiVersion: apps/v1      # Kubernetes API version
  3. kind: Deployment         # Type of resource
  4. metadata:               # Resource metadata
  5.   name: mywebserver      # Resource name
  6.   labels:               # Labels for the resource
  7.     app: httpd           # Label "app=httpd"
  8. spec:                   # Resource specifications
  9.   replicas: 2            # Number of replicas
  10.   selectors:            # Pod selectors
  11.     matchLabels:        # Selects Pods with matching labels
  12.       app: httpd         # Selects Pods labeled "app=httpd"
  13.   template:             # Pod template
  14.     metadata:           # Pod metadata
  15.       labels:           # Labels for the Pod
  16.         app: httpd       # Label "app=httpd"
  17.     spec:               # Pod specifications
  18.       containers:       # Containers to create in the Pod
  19.         - name: myhttpd   # Container name
  20.           image: httpd    # Docker image
  21.           ports:         # Container ports
  22.             - containersPort: 80 # Port number (HTTP traffic)
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement