Skip to content

Commit

Permalink
Add kubernetes deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
vaughnw128 committed Jun 19, 2024
1 parent ea2584a commit 8cab76f
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
32 changes: 32 additions & 0 deletions eternalpose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: eternalpose
namespace: eternalpose
spec:
replicas: 1
selector:
matchLabels:
app: "eternalpose"
template:
metadata:
labels:
app: "eternalpose"
spec:
containers:
- name: "eternalpose"
image: "ghcr.io/vaughnw128/eternalpose:latest"
imagePullPolicy: IfNotPresent
resources:
limits:
cpu: 100m
memory: 128Mi
requests:
cpu: 100m
memory: 128Mi
env:
- name: WEBHOOK_URL
valueFrom:
secretKeyRef:
name: discord-webhook
key: discord-webhook
2 changes: 1 addition & 1 deletion manga.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[{"title":"One Piece","regex":"One Piece Chapter (?P\u003cChapter\u003e\\d{4})$","users":["\u003c@173232081575346178\u003e"],"currentChapter":1117},{"title":"Jujutsu Kaisen","regex":"Jujutsu Kaisen Chapter (?P\u003cChapter\u003e\\d{3})$","users":["\u003cc@228997488563060736\u003e","\u003c@262637906865291264\u003e"],"currentChapter":262}]
[{"title":"One Piece","regex":"One Piece Chapter (?P\u003cChapter\u003e\\d{4})$","users":["\u003c@173232081575346178\u003e"],"currentChapter":1116},{"title":"Jujutsu Kaisen","regex":"Jujutsu Kaisen Chapter (?P\u003cChapter\u003e\\d{3})$","users":["\u003cc@228997488563060736\u003e","\u003c@262637906865291264\u003e"],"currentChapter":262}]

0 comments on commit 8cab76f

Please sign in to comment.