From a28ade71915e7f6e693431e8346f7d5582d933af Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Sat, 16 Nov 2024 12:54:08 -0500 Subject: [PATCH] Add documentation site --- .gitignore | 4 ++-- .../documentation-deployment.yaml | 21 +++++++++++++++++++ 2 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 cluster/static-site-hosts/documentation-deployment.yaml diff --git a/.gitignore b/.gitignore index ab69987..63c45b2 100644 --- a/.gitignore +++ b/.gitignore @@ -4,5 +4,5 @@ private.pem venv/ -./.ci/static/ -!./.ci/static/.gitkeep +.ci/static/* +!.ci/static/.gitkeep diff --git a/cluster/static-site-hosts/documentation-deployment.yaml b/cluster/static-site-hosts/documentation-deployment.yaml new file mode 100644 index 0000000..772e402 --- /dev/null +++ b/cluster/static-site-hosts/documentation-deployment.yaml @@ -0,0 +1,21 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: documentation-site + namespace: default +spec: + slector: + matchLabels: + app: documentation-site + template: + metadata: + labels: + app: documentation-site + spec: + containers: + - name: documentation-site + image: git.clortox.com/infrastructure/gluttony-cluster/documentation:0.0.1 + ports: + - name: http + containerPort: 80 + protocol: TCP