diff options
| author | Max Resnick <max@ofmax.li> | 2022-09-17 08:02:23 -0700 |
|---|---|---|
| committer | Max Resnick <max@ofmax.li> | 2022-09-17 08:02:23 -0700 |
| commit | d8a0b223dfbe86e88866174082028701b23ab2d4 (patch) | |
| tree | ffe1a388375fe1613c294a796a064d719c2ada4b /grumpy/static-files/base/static-files-deploy.yaml | |
| parent | a0d6733e195bc04a78e6994ee0c978f8bb6c73ad (diff) | |
| download | grumpy-charts-d8a0b223dfbe86e88866174082028701b23ab2d4.tar.gz | |
updated manifests so they actually work
Diffstat (limited to 'grumpy/static-files/base/static-files-deploy.yaml')
| -rw-r--r-- | grumpy/static-files/base/static-files-deploy.yaml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/grumpy/static-files/base/static-files-deploy.yaml b/grumpy/static-files/base/static-files-deploy.yaml index f89e7d7..993c6e4 100644 --- a/grumpy/static-files/base/static-files-deploy.yaml +++ b/grumpy/static-files/base/static-files-deploy.yaml @@ -2,25 +2,27 @@ apiVersion: apps/v1 kind: Deployment metadata: name: static-files + labels: + app.kubernetes.io/part-of: static-files + app.kubernetes.io/version: "1.0" spec: replicas: 1 selector: matchLabels: - app.kubernetes.io/instance: static-files - app.kubernetes.io/name: static-files + app.kubernetes.io/part-of: static-files template: metadata: labels: - app.kubernetes.io/instance: static-files - app.kubernetes.io/name: static-files + app.kubernetes.io/part-of: static-files + app.kubernetes.io/version: "1.0" spec: containers: - - image: static-files + - image: web livenessProbe: httpGet: path: / port: http - name: static-files + name: web ports: - containerPort: 8080 name: http |