diff options
| author | Max Resnick <max@ofmax.li> | 2024-09-07 21:08:51 -0700 |
|---|---|---|
| committer | Max Resnick <max@ofmax.li> | 2024-09-07 21:08:51 -0700 |
| commit | bb01592d79af9f197f06d246af96d4dda8cffa7f (patch) | |
| tree | 8fbd31a7b2264eb4a84fc55f0a7fbc8964ecfdf6 /grumpy/sally/deploy.yaml | |
| parent | 10dfd94046053a04e7b9f62d1b00007cc87b7d1b (diff) | |
| download | grumpy-charts-bb01592d79af9f197f06d246af96d4dda8cffa7f.tar.gz | |
chore: refactor manifests to use haproxy class and clean up labels
Diffstat (limited to 'grumpy/sally/deploy.yaml')
| -rw-r--r-- | grumpy/sally/deploy.yaml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/grumpy/sally/deploy.yaml b/grumpy/sally/deploy.yaml index 8368603..e3a3bf2 100644 --- a/grumpy/sally/deploy.yaml +++ b/grumpy/sally/deploy.yaml @@ -1,22 +1,20 @@ apiVersion: apps/v1 kind: Deployment metadata: - name: sally-deployment - labels: - app: sally + name: sally spec: replicas: 1 selector: matchLabels: - app: sally + app.kubernetes.io/name: sally template: metadata: labels: - app: sally + app.kubernetes.io/name: sally spec: containers: - name: sally - image: registry.gitlab.com/grumps/grumpy-containers/sally:latest + image: public.ecr.aws/s0f9o2k5/sally:v0.2.0 imagePullPolicy: Always ports: - containerPort: 8080 |