diff --git a/angels/configmap.yaml b/angels/configmap.yaml deleted file mode 100644 index a777ed3..0000000 --- a/angels/configmap.yaml +++ /dev/null @@ -1,380 +0,0 @@ -apiVersion: v1 -kind: ConfigMap -metadata: - name: angels-index -data: - index.html: | - - - - - - Celestial Hierarchy - Human Engine - - - - - - - - -
- - -
-
-

👼 Angelic Summoning

- -
- -
View currencies in the Left Sidebar
- - -
- -
-
Tier 1
-
Common Angel
-
0
-
Cost: 50 Prayers
-
+1 Grace/sec each
-
- - - - -
-
- - -
-
Tier 2
-
Principalities Angel
-
0
-
Cost: 150 Grace
- -
Requires 150 Grace to unlock Tier 2
-
+10% nearby bonus
-
- - - - -
-
- - -
-
Tier 3
-
Power Angel
-
0
-
Cost: 250 Sacred Vessels
-
Requires 100 Sacred Vessels to unlock Tier 3
-
+15% resource collection
-
- - - - -
-
- - -
-
Tier 4
-
Virtue Angel
-
0
-
Cost: 400 Blessings
-
Requires 150 Manna to unlock Tier 4
-
+25% miracle chance
-
- - - - -
-
- - -
-
Tier 5
-
Dominion Angel
-
0
-
Cost: 600 Souls
-
Requires 200 Wisdom to unlock Tier 5
-
+20% all output
-
- - - - -
-
- - -
-
Tier 6
-
Throne Angel
-
0
-
Cost: 800 Wisdom
-
Requires 250 Miracles to unlock Tier 6
-
+15% efficiency
-
- - - - -
-
- - -
-
Tier 7
-
Cherubim Guardian
-
0
-
Cost: 1000 Manna
-
Requires 300 Auras to unlock Tier 7
-
-25% spawn costs
-
- - - - -
-
- - -
-
Tier 8
-
Seraphim Fire Angel
-
0
-
Cost: 1500 Miracles
-
Requires 350 Sacred Icons to unlock Tier 8
-
+5x Prayer generation
-
- - - - -
-
- - -
-
Tier 9
-
Arch-Angel (Michael/Gabriel)
-
0
-
Cost: 500 Sacred Icons
-
Requires Tier 8 to unlock Tier 9
-
10x+ Multiplier! Ultimate!
-
- - - - -
-
-
-
- - -
- - - - - -
-

🕊️ CELESTIAL HIERARCHY 🕊️

-

Ascend through the 9 Tiers of Heaven with 11 Currencies

- - -
-

🌟 Angelic Tiers Unlocked

- -
-
-
Tier 1
-
Common Angels
-
0
-
+1 Grace/sec | Cost: Prayers
-
- -
-
Tier 2
-
Principalities
-
0
-
+10% bonus | Cost: Grace (150 Grace unlock)
-
- -
-
Tier 3
-
Powers
-
0
-
+15% resource | Cost: Vessels (100 Vessels unlock)
-
- -
-
Tier 4
-
Virtues
-
0
-
+25% miracle | Cost: Blessings (150 Manna unlock)
-
- -
-
Tier 5
-
Dominions
-
0
-
+20% output | Cost: Souls (200 Wisdom unlock)
-
- -
-
Tier 6
-
Thrones
-
0
-
+15% efficiency | Cost: Wisdom (250 Miracles unlock)
-
- -
-
Tier 7
-
Cherubim
-
0
-
Cost Reduction | Cost: Manna (300 Auras unlock)
-
- -
-
Tier 8
-
Seraphim
-
0
-
+5x Prayer | Cost: Miracles (350 Icons unlock)
-
- -
-
Tier 9
-
Arch-Angels
-
0
-
10x+ Multiplier | Cost: Sacred Icons (Tier 8 unlock)
-
-
-
- - -
-

🙏 Human Summoning

- -
- - -
-

🔯 Ascension (Prestige)

-

Reset progress for permanent bonuses!

- - - -
- ✨ Global Bonus: 1.0x -
- -
- Ascensions: 0 -
-
- - -
- - - -
- - -
Welcome to Celestial Hierarchy!
-
-
- - - - \ No newline at end of file diff --git a/angels/deployment.yaml b/angels/deployment.yaml index b75bc1f..0741880 100644 --- a/angels/deployment.yaml +++ b/angels/deployment.yaml @@ -2,6 +2,7 @@ apiVersion: apps/v1 kind: Deployment metadata: name: angels + namespace: angels spec: replicas: 2 selector: @@ -12,28 +13,35 @@ spec: labels: app: angels spec: - volumes: - - name: html-content - configMap: - name: angels-index containers: + # 1. The Downloader + - name: git-sync + image: registry.k8s.io/git-sync/git-sync:v4.1.0 + args: + - --repo=http://192.168.2.65:3000/Darkages/Be-Not-Afraid.git + - --branch=main + - --rev=HEAD + - --path=angels + - --depth=1 + - --period=10s + - --root=/mnt/git + - --ssl-verify=false + # Uncomment these if your Gitea repo is private: + # - --username=admin + # - --password=admin123 + volumeMounts: + - name: html-content + mountPath: /mnt/git + + # 2. The Web Server - 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: angels -spec: - type: LoadBalancer - selector: - app: angels - ports: - - port: 82 - targetPort: 82 \ No newline at end of file + mountPath: /usr/share/nginx/html + subPath: angels # Maps /mnt/git/angels to /usr/share/nginx/html + volumes: + - name: html-content + emptyDir: {} \ No newline at end of file diff --git a/angels/services.yaml b/angels/services.yaml new file mode 100644 index 0000000..84c9837 --- /dev/null +++ b/angels/services.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: Service +metadata: + name: angels + namespace: angels +spec: + type: LoadBalancer + selector: + app: angels + ports: + - port: 82 + targetPort: 82 \ No newline at end of file