tvl-depot/infra/kubernetes/tazblog/config.yaml
Vincent Ambo 28a9c01d36 feat(infra/k8s): Add in-cluster tazblog deployment via Nixery
First deployment actually using a Nixery image and `gitHEAD`.

This does not actually serve a working blog for various reasons. The
current storage mechanism (acid-state) isn't really appropriate
anymore and I'll need to change that soon.
2019-08-19 03:10:53 +01:00

21 lines
364 B
YAML

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: tazblog
labels:
app: tazblog
spec:
replicas: 1
selector:
matchLabels:
app: tazblog
template:
metadata:
labels:
app: tazblog
spec:
containers:
- name: tazblog
image: nixery.local/shell/tazjin.blog:{{ gitHEAD }}
command: [ "tazblog" ]