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