28a9c01d36
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.
21 lines
364 B
YAML
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" ]
|