github.com/tilt-dev/tilt@v0.33.15-0.20240515162809-0a22ed45d8a0/integration/k8s_custom_deploy/deploy.yaml (about)

     1  apiVersion: apps/v1
     2  kind: Deployment
     3  metadata:
     4    name: custom-deploy
     5    namespace: tilt-integration
     6    labels:
     7      app: custom-deploy
     8  spec:
     9    selector:
    10      matchLabels:
    11        app: custom-deploy
    12    template:
    13      metadata:
    14        labels:
    15          app: custom-deploy
    16          someLabel: someValue1
    17      spec:
    18        containers:
    19          - name: nginx
    20            image: nginx
    21            ports:
    22              - containerPort: 80
    23            readinessProbe:
    24              httpGet:
    25                port: 80