Compare commits
2 Commits
e787847fd6
...
35aa478609
| Author | SHA1 | Date | |
|---|---|---|---|
| 35aa478609 | |||
| b2b028a662 |
@@ -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
@@ -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
|
||||
Reference in New Issue
Block a user