aboutsummaryrefslogtreecommitdiff
path: root/grumpy/sally/deploy.yaml
diff options
context:
space:
mode:
authorMax Resnick <max@ofmax.li>2020-06-14 08:14:06 -0700
committerMax Resnick <max@ofmax.li>2020-06-14 08:14:06 -0700
commitcd933edde0f78b6f74d398b4565d466583490e08 (patch)
tree85c3ab327d546da9153405294e30fb67df2e1d60 /grumpy/sally/deploy.yaml
parent0fc577ea6654f0e655f0a2d18694f7ebf1fcfde1 (diff)
downloadgrumpy-charts-cd933edde0f78b6f74d398b4565d466583490e08.tar.gz
add golang meta server sally
Diffstat (limited to '')
-rw-r--r--grumpy/sally/deploy.yaml25
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
+