Skip to content
Snippets Groups Projects
deployment.yaml 377 B
Newer Older
egon w. stemle's avatar
egon w. stemle committed
---
apiVersion: apps/v1
kind: Deployment
metadata:
  name: deployment
spec:
  replicas: 1
  selector:
    matchLabels:
      app: app
  template:
    metadata:
      labels:
        app: app
    spec:
      containers:
        - name: webserver
          imagePullPolicy: Always
          resources: {}
          ports:
            - name: http
              containerPort: 80