Files
truecharts/charts/stable/calendarr/values.yaml
T
Xstar97TheNoobandGitHub b26d706d48 chore(calendarr) move calendarr to stable (#37706)
**Description**
move chart from incubator to stable
what does this chart do?
> Fetches upcoming airings/releases for TV shows and movies from Sonarr
and Radarr calendars and posts them to Discord on a schedule.

⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [X] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [ ] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [X] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [X] ⬆️ I increased versions for any altered app according to semantic
versioning
- [X] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2025-07-27 20:45:24 +02:00

131 lines
4.4 KiB
YAML

image:
repository: ghcr.io/jordanlambrecht/calendarr
pullPolicy: IfNotPresent
tag: latest@sha256:2f84db911f98cfeb4d4ba2abab172a1a3ad5230dc3e9408117c18f34892e96e5
securityContext:
container:
readOnlyRootFilesystem: false
runAsNonRoot: false
runAsUser: 0
runAsGroup: 0
service:
main:
enabled: false
ports:
main:
enabled: false
calendarr:
events:
# Remove duplicate events from multiple sources
deduplicate: true
# DISPLAY, HIDE, or STRIKE
passedHandling: STRIKE
logs:
name: "calendarr.log"
backupCount: 15
# maxSize in MB
maxSize: 1
discord:
enabled: false
webhookUrl: ""
hideMentionInstructions: false
# Discord only Role ID to mention
discordMentionRoleId: ""
slack:
enabled: false
webhookUrl: ""
custom:
header: "TV Guide - Shows and Movies airing this week"
discord:
footer: false
slack:
footer: false
schedule:
# Run every Monday at 9 AM
# Custom CRON expression (Overrides SCHEDULE_TYPE, SCHEDULE_DAY, RUN_TIME) (Optional)
cron: 0 9 * * 1
# WEEKLY or DAILY
type: WEEKLY
# 0=Sun, 1=Mon, ..., 6=Sat (Only used if SCHEDULE_TYPE is WEEKLY and CRON_SCHEDULE is not set)
day: 1
showDateRange: true
startWeekOnMonday: true
runOnStartup: true
# AUTO, DAY, or WEEK
calendarRange: AUTO
addLeadingZero: true
# Time in HH:MM format (24-hour)
runTime: "09:30"
displayTime: true
militaryTime: true
showTimeZone: true
http:
timeout: 30
# List of calendar URLs to fetch events from
urls:
# type must be "tv" or "movie"
- url: ""
type: tv
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
enabled: false
readiness:
enabled: false
startup:
enabled: false
env:
DEBUG: false
LOG_DIR: "{{ .Values.persistence.logs.mountPath }}"
LOG_FILE: "{{ .Values.calendarr.logs.name }}"
LOG_BACKUP_COUNT: "{{ .Values.calendarr.logs.backupCount }}"
LOG_MAX_SIZE_MB: "{{ .Values.calendarr.logs.maxSize }}"
CALENDAR_URLS: "{{- $.Values.calendarr.urls | toJson | nindent 2 }}"
# discord
USE_DISCORD: "{{ .Values.calendarr.discord.enabled }}"
DISCORD_WEBHOOK_URL: "{{ .Values.calendarr.discord.webhookUrl }}"
DISCORD_HIDE_MENTION_INSTRUCTIONS: "{{ .Values.calendarr.discord.hideMentionInstructions }}"
# Discord only Hide the instruction text below the role mention
DISCORD_MENTION_ROLE_ID: "{{ .Values.calendarr.discord.discordMentionRoleId }}"
# slack
USE_SLACK: "{{ .Values.calendarr.slack.enabled }}"
SLACK_WEBHOOK_URL: "{{ .Values.calendarr.slack.webhookUrl }}"
CUSTOM_HEADER: "{{ .Values.calendarr.custom.header }}"
ENABLE_CUSTOM_DISCORD_FOOTER: "{{ .Values.calendarr.custom.discord.footer }}"
ENABLE_CUSTOM_SLACK_FOOTER: "{{ .Values.calendarr.custom.slack.footer }}"
SHOW_DATE_RANGE: "{{ .Values.calendarr.schedule.showDateRange }}"
START_WEEK_ON_MONDAY: "{{ .Values.calendarr.schedule.startWeekOnMonday }}"
RUN_ON_STARTUP: "{{ .Values.calendarr.schedule.runOnStartup }}"
CRON_SCHEDULE: "{{ .Values.calendarr.schedule.cron }}"
ADD_LEADING_ZERO: "{{ .Values.calendarr.schedule.addLeadingZero }}"
CALENDAR_RANGE: "{{ .Values.calendarr.schedule.calendarRange }}"
DEDUPLICATE_EVENTS: "{{ .Values.calendarr.events.deduplicate }}"
DISPLAY_TIME: "{{ .Values.calendarr.schedule.displayTime }}"
HTTP_TIMEOUT: "{{ .Values.calendarr.http.timeout }}"
PASSED_EVENT_HANDLING: "{{ .Values.calendarr.events.passedHandling }}"
RUN_TIME: "{{ .Values.calendarr.schedule.runTime }}"
SCHEDULE_DAY: "{{ .Values.calendarr.schedule.day }}"
SCHEDULE_TYPE: "{{ .Values.calendarr.schedule.type }}"
SHOW_TIMEZONE_IN_SUBHEADER: "{{ .Values.calendarr.schedule.showTimeZone }}"
USE_24_HOUR: "{{ .Values.calendarr.schedule.militaryTime }}"
persistence:
logs:
enabled: true
type: emptyDir
mountPath: /app/logs
medium: ""
# Mount custom footers directory (required if ENABLE_CUSTOM_*_FOOTER is true)
footers:
enabled: false
mountPath: /app/custom_footers