Skip to content

Commit

Permalink
Merge pull request #52 from librepod/add-firefly-telegram-bot-chart
Browse files Browse the repository at this point in the history
Update firefly bot to latest version with persistence
  • Loading branch information
cyxou authored Feb 11, 2023
2 parents cd81790 + 83881f5 commit 25ed6f2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/firefly-iii-telegram-bot/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: firefly-iii-telegram-bot
version: 0.2.0
appVersion: 1.0.0
version: 0.3.0
appVersion: 1.1.1
description: Firefly III Telegram bot for faster interaction with the service.
type: application
home: https://github.com/cyxou/firefly-iii-telegram-bot
Expand Down
12 changes: 11 additions & 1 deletion charts/firefly-iii-telegram-bot/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ image:
tag: ""

botParams:
fireflyAccessToken: "<YOUR_FIREFLY_ACCESS_TOKEN>"
fireflyApiUrl: http://firefly-iii:8080
fireflyUrl: https://firefly.libre.pod
telegramBotToken: "<YOUR_TELEGRAM_BOT_TOKEN>"

env:
TZ: "Europe/Moscow"
DEBUG: "bot:*,firefly:axios:*"
BOT_TOKEN: '{{ .Values.botParams.telegramBotToken }}'
FIREFLY_URL: '{{ .Values.botParams.fireflyUrl }}'
Expand All @@ -19,3 +19,13 @@ env:
service:
main:
enabled: false

persistence:
sessions:
enabled: true
type: pvc
mountPath: /home/node/app/sessions
readOnly: false
accessMode: ReadWriteOnce
size: 100Mi
retain: true

0 comments on commit 25ed6f2

Please sign in to comment.