- Kustomize: base + overlays/dev + overlays/prod
This commit is contained in:
@@ -0,0 +1,3 @@
|
|||||||
|
API_ID=""
|
||||||
|
API_HASH=""
|
||||||
|
STRINGSESSION=""
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
# apiflash api key only for webshot plugin
|
||||||
|
APIFLASH_KEY=""
|
||||||
|
# gemini api key only for gemini plugin
|
||||||
|
GEMINI_KEY=""
|
||||||
|
# VT api key only for VirusTotal plugin
|
||||||
|
VT_KEY=""
|
||||||
|
# rmbg api key only for removebg plugin
|
||||||
|
RMBG_KEY=""
|
||||||
|
# cohere api key only for cohere plugin
|
||||||
|
COHERE_KEY=""
|
||||||
|
# sqlite/sqlite3 or mongo/mongodb
|
||||||
|
DATABASE_TYPE=""
|
||||||
|
# file name for sqlite3, database name for mongodb
|
||||||
|
DATABASE_NAME=""
|
||||||
@@ -14,3 +14,6 @@ __pycache__/
|
|||||||
/downloads/
|
/downloads/
|
||||||
/Downloads/
|
/Downloads/
|
||||||
config.ini
|
config.ini
|
||||||
|
|
||||||
|
k8s/*/*secret*.yaml
|
||||||
|
!k8s/account-secrets.yaml.example
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: userbot-common-config
|
||||||
|
data:
|
||||||
|
DATABASE_TYPE: ""
|
||||||
|
DATABASE_NAME: ""
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
|
||||||
|
resources:
|
||||||
|
- userbots.yaml
|
||||||
|
- common-secret.yaml
|
||||||
|
- common-config.yaml
|
||||||
|
- forust-secrets.yaml
|
||||||
|
- anna-secrets.yaml
|
||||||
@@ -0,0 +1,114 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: forust-userbot-deployment
|
||||||
|
labels:
|
||||||
|
app: forust-userbot
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: forust-userbot
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: forust-userbot
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: forust-userbot
|
||||||
|
image: gcr.forust.xyz/forust/userbot:latest
|
||||||
|
imagePullPolicy: Always
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
memory: "512Mi"
|
||||||
|
cpu: "500m"
|
||||||
|
requests:
|
||||||
|
memory: "256Mi"
|
||||||
|
cpu: "100m"
|
||||||
|
envFrom:
|
||||||
|
- secretRef:
|
||||||
|
name: userbot-common-secrets
|
||||||
|
- configMapRef:
|
||||||
|
name: userbot-common-config
|
||||||
|
- secretRef:
|
||||||
|
name: userbot-forust-secrets
|
||||||
|
volumeMounts:
|
||||||
|
- name: forust-storage
|
||||||
|
mountPath: /app/data
|
||||||
|
subPath: data
|
||||||
|
- name: forust-storage
|
||||||
|
mountPath: /app/logs
|
||||||
|
subPath: logs
|
||||||
|
volumes:
|
||||||
|
- name: forust-storage
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: forust-pvc
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: forust-pvc
|
||||||
|
spec:
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 1Gi
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteOnce
|
||||||
|
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: anna-userbot-deployment
|
||||||
|
labels:
|
||||||
|
app: anna-userbot
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: anna-userbot
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: anna-userbot
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: anna-userbot
|
||||||
|
image: gcr.forust.xyz/forust/userbot:latest
|
||||||
|
imagePullPolicy: Always
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
memory: "512Mi"
|
||||||
|
cpu: "500m"
|
||||||
|
requests:
|
||||||
|
memory: "256Mi"
|
||||||
|
cpu: "100m"
|
||||||
|
envFrom:
|
||||||
|
- secretRef:
|
||||||
|
name: userbot-common-secrets
|
||||||
|
- configMapRef:
|
||||||
|
name: userbot-common-config
|
||||||
|
- secretRef:
|
||||||
|
name: userbot-anna-secrets
|
||||||
|
volumeMounts:
|
||||||
|
- name: anna-storage
|
||||||
|
mountPath: /app/data
|
||||||
|
subPath: data
|
||||||
|
- name: anna-storage
|
||||||
|
mountPath: /app/logs
|
||||||
|
subPath: logs
|
||||||
|
volumes:
|
||||||
|
- name: anna-storage
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: anna-pvc
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: anna-pvc
|
||||||
|
spec:
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 1Gi
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteOnce
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
|
||||||
|
resources:
|
||||||
|
- ../../base
|
||||||
|
|
||||||
|
patches:
|
||||||
|
- path: patch-downloads.yaml
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: forust-userbot-deployment
|
||||||
|
spec:
|
||||||
|
template:
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: forust-userbot
|
||||||
|
volumeMounts:
|
||||||
|
- name: downloads
|
||||||
|
mountPath: /app/downloads
|
||||||
|
volumes:
|
||||||
|
- name: downloads
|
||||||
|
hostPath:
|
||||||
|
path: /home/user/projects/homelab/userbot/Downloads
|
||||||
|
type: DirectoryOrCreate
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: anna-userbot-deployment
|
||||||
|
spec:
|
||||||
|
template:
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: anna-userbot
|
||||||
|
volumeMounts:
|
||||||
|
- name: downloads
|
||||||
|
mountPath: /app/downloads
|
||||||
|
volumes:
|
||||||
|
- name: downloads
|
||||||
|
hostPath:
|
||||||
|
path: /home/user/projects/homelab/userbot/Downloads
|
||||||
|
type: DirectoryOrCreate
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
|
||||||
|
resources:
|
||||||
|
- ../../base
|
||||||
|
|
||||||
|
patches:
|
||||||
|
- path: patch-downloads.yaml
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: forust-userbot-deployment
|
||||||
|
spec:
|
||||||
|
template:
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: forust-userbot
|
||||||
|
volumeMounts:
|
||||||
|
- name: downloads
|
||||||
|
mountPath: /app/downloads
|
||||||
|
volumes:
|
||||||
|
- name: downloads
|
||||||
|
hostPath:
|
||||||
|
path: /srv/homelab/userbot/Downloads
|
||||||
|
type: DirectoryOrCreate
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: anna-userbot-deployment
|
||||||
|
spec:
|
||||||
|
template:
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: anna-userbot
|
||||||
|
volumeMounts:
|
||||||
|
- name: downloads
|
||||||
|
mountPath: /app/downloads
|
||||||
|
volumes:
|
||||||
|
- name: downloads
|
||||||
|
hostPath:
|
||||||
|
path: /srv/homelab/userbot/Downloads
|
||||||
|
type: DirectoryOrCreate
|
||||||
Reference in New Issue
Block a user