apps(suwayomi): Updated to 2.1.1875 and moved to sekibanki cluster
This commit is contained in:
57
apps/sekibanki/suwayomi/deployment.yaml
Normal file
57
apps/sekibanki/suwayomi/deployment.yaml
Normal file
@@ -0,0 +1,57 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: suwayomi
|
||||
labels:
|
||||
app.kubernetes.io/name: suwayomi
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app.kubernetes.io/name: suwayomi
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/name: suwayomi
|
||||
spec:
|
||||
volumes:
|
||||
- name: data
|
||||
persistentVolumeClaim:
|
||||
claimName: suwayomi-pvc
|
||||
containers:
|
||||
- name: suwayomi
|
||||
image: ghcr.io/suwayomi/suwayomi-server:v2.1.1875
|
||||
ports:
|
||||
- containerPort: 4567
|
||||
name: http
|
||||
env:
|
||||
- name: "TZ"
|
||||
value: "America/Toronto"
|
||||
- name: "DOWNLOAD_AS_CBZ"
|
||||
value: "true"
|
||||
- name: "EXTENSION_REPOS"
|
||||
value: "[\"https://raw.githubusercontent.com/keiyoushi/extensions/repo/index.min.json\"]"
|
||||
- name: "AUTO_DOWNLOAD_CHAPTERS"
|
||||
value: "true"
|
||||
- name: "BASIC_AUTH_ENABLED"
|
||||
value: "false"
|
||||
volumeMounts:
|
||||
- name: data
|
||||
mountPath: "/home/suwayomi/.local/share/Tachidesk"
|
||||
securityContext:
|
||||
runAsUser: 1000
|
||||
runAsGroup: 1000
|
||||
runAsNonRoot: true
|
||||
allowPrivilegeEscalation: false
|
||||
capabilities:
|
||||
drop:
|
||||
- ALL
|
||||
seccompProfile:
|
||||
type: RuntimeDefault
|
||||
resources:
|
||||
limits:
|
||||
cpu: 1500m
|
||||
memory: 1024Mi
|
||||
requests:
|
||||
cpu: 250m
|
||||
memory: 256Mi
|
4
apps/sekibanki/suwayomi/kustomization.yaml
Normal file
4
apps/sekibanki/suwayomi/kustomization.yaml
Normal file
@@ -0,0 +1,4 @@
|
||||
resources:
|
||||
- deployment.yaml
|
||||
- pvc.yaml
|
||||
- services.yaml
|
11
apps/sekibanki/suwayomi/pvc.yaml
Normal file
11
apps/sekibanki/suwayomi/pvc.yaml
Normal file
@@ -0,0 +1,11 @@
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: suwayomi-pvc
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
resources:
|
||||
requests:
|
||||
storage: 150Gi
|
||||
storageClassName: nfs-csi
|
12
apps/sekibanki/suwayomi/services.yaml
Normal file
12
apps/sekibanki/suwayomi/services.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: suwayomi
|
||||
spec:
|
||||
type: ClusterIP
|
||||
selector:
|
||||
app.kubernetes.io/name: suwayomi
|
||||
ports:
|
||||
- protocol: TCP
|
||||
port: 80
|
||||
targetPort: http
|
Reference in New Issue
Block a user