diff options
Diffstat (limited to 'infra/kubernetes/tazblog')
-rw-r--r-- | infra/kubernetes/tazblog/config.yaml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/infra/kubernetes/tazblog/config.yaml b/infra/kubernetes/tazblog/config.yaml new file mode 100644 index 000000000000..dee75cb995b7 --- /dev/null +++ b/infra/kubernetes/tazblog/config.yaml @@ -0,0 +1,21 @@ +--- +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" ] |