Initial commit

This commit is contained in:
Neil Hanlon 2022-09-02 14:02:45 -04:00
commit 788ac662f8
Signed by: neil
GPG Key ID: 705BC21EC3C70F34
4 changed files with 118 additions and 0 deletions

4
Caddyfile Normal file
View File

@ -0,0 +1,4 @@
:8080 {
templates
file_server browse
}

4
Containerfile Normal file
View File

@ -0,0 +1,4 @@
FROM caddy:latest
COPY Caddyfile /etc/caddy/Caddyfile
COPY index.html /srv/

40
index.html Normal file
View File

@ -0,0 +1,40 @@
<!DOCTYPE html>
<html>
<head>
<title>Cult of the Fifth Octet</title>
<style>
body {
background-color: #222222;
color: #FFFFFF;
display: flex;
justify-content: center;
align-items: center;
}
section {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
div.question {
display: inline-block;
font-size: 3rem;
font-weight: bold;
padding: 1.5rem;
border: 1px solid white;
}
div.answer {
display: inline-block;
font-size: 3rem;
font-weight: bold;
padding: 1.5rem;
border: 1px solid white;
}
</style>
</head>
<body>
<section>
<div class="question">Expect the Fifth Octet</div>
</section>
</body>
</html>

70
nginx.yml Normal file
View File

@ -0,0 +1,70 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: caddy
namespace: cultfifthoctet
spec:
replicas: 3
selector:
matchLabels:
app: caddy
template:
metadata:
labels:
app: caddy
spec:
containers:
- name: caddy
image: git.shrug.pw/neil/cultfifthoctet:latest
ports:
- name: tcp
containerPort: 8080
---
apiVersion: v1
kind: Service
metadata:
name: caddy
namespace: cultfifthoctet
annotations:
service.beta.kubernetes.io/aws-load-balancer-ip-address-type: dualstack
service.beta.kubernetes.io/aws-load-balancer-nlb-target-type: ip
service.beta.kubernetes.io/aws-load-balancer-scheme: internal
service.beta.kubernetes.io/aws-load-balancer-type: external
spec:
ports:
- port: 8080
targetPort: 8080
protocol: TCP
type: LoadBalancer
selector:
app: caddy
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
kubernetes.io/ingress.class: nginx
nginx.ingress.kubernetes.io/client-max-body-size: 20m
nginx.ingress.kubernetes.io/proxy-body-size: 20m
name: caddy
namespace: cultfifthoctet
spec:
rules:
- host: cultfifthoctet.org
http:
paths:
- backend:
service:
name: caddy
port:
number: 8080
path: /
pathType: Prefix
tls:
- hosts:
- cultfifthoctet.org
secretName: default-cert