Skip to content

The worker deploymentΒΆ

We are going to create a new file k8s/worker-deployment.yaml:

apiVersion: apps/v1
kind: Deployment
metadata:
  name: worker-deployment
spec:
  replicas: 1
  selector:
    matchLabels:
      component: web
  template:
    metadata:
      labels:
        component: web
    spec:
      containers:
        - name: worker
          image: deiveris/multi-worker