diff options
Diffstat (limited to '')
| -rw-r--r-- | grumpy/sally/deploy.yaml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/grumpy/sally/deploy.yaml b/grumpy/sally/deploy.yaml new file mode 100644 index 0000000..efbe10e --- /dev/null +++ b/grumpy/sally/deploy.yaml @@ -0,0 +1,25 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: sally-deployment + labels: + app: sally +spec: + replicas: 1 + selector: + matchLabels: + app: sally + template: + metadata: + labels: + app: sally + spec: + containers: + - name: sally + image: registry.gitlab.com/grumps/grumpy-containers/sally:v0.2.0 + imagePullPolicy: Always + ports: + - containerPort: 8080 + imagePullSecrets: + - name: gitlabsec + |