Compare commits

...

2 Commits

Author SHA1 Message Date
Darkages 35aa478609 whoops forgot to indent Index.html 2026-06-14 17:59:50 -07:00
Darkages b2b028a662 updated deployment.yaml 2026-06-14 17:51:42 -07:00
2 changed files with 360 additions and 352 deletions
+6 -6
View File
@@ -5,14 +5,14 @@ metadata:
data:
index.html: |
<!DOCTYPE html>
<html lang="en">
<head>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Celestial Hierarchy - Human Engine</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
</head>
<body>
<!-- Hamburger Button -->
<button class="hamburger-btn" onclick="toggleSidePanel()">
@@ -376,5 +376,5 @@ data:
</div>
<script src="game.js"></script>
</body>
</html>
</body>
</html>
+13 -5
View File
@@ -1,31 +1,39 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx
name: angels
spec:
replicas: 2
selector:
matchLabels:
app: nginx
app: angels
template:
metadata:
labels:
app: nginx
app: angels
spec:
volumes:
- name: html-content
configMap:
name: angels-index
containers:
- name: nginx
image: nginx:alpine
ports:
- containerPort: 82
volumeMounts:
- name: html-content
mountPath: /usr/share/nginx/html/index.html
subPath: index.html
---
apiVersion: v1
kind: Service
metadata:
name: nginx
name: angels
spec:
type: LoadBalancer
selector:
app: nginx
app: angels
ports:
- port: 82
targetPort: 82