Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: bump babyrite v0.12.0 #2274

Merged
merged 1 commit into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,27 @@ kind: ConfigMap
metadata:
name: babyrite-config
data:
config.yaml: |
config.toml: |
### babyrite configuration ###
# This file is used to configure babyrite.
# You can change the settings here to customize babyrite's behavior.
# For more information, see the babyrite documentation at https://babyrite.m1sk9.dev/configuration.html

## == General settings == ##

# Sets the format of babyrite log output.
# * `compact`: output logs in normal format.
# * `json`: Output logs in JSON format. This is the recommended setting if you are using Grafana Loki or similar.
logger_format='json'

## == Preview settings == ##

[preview]

# Sets whether the guild check process is bypassed when quoting.
# If the guild check process is bypassed, messages can be shared and quoted from all guilds in which babyrite is installed.
# However, the message will be shared to members who do not belong to that guild. This setting is recommended when babyrite is used by multiple private guilds.
bypass_guilds: false
bypass_guild_check=false

# Whether to enable mentions in quoted messages.
citation_mention: false

# Sets the format of babyrite log output.
# * `compact`: output logs in normal format.
# * `json`: Output logs in JSON format. This is the recommended setting if you are using Grafana Loki or similar.
logger_format: 'json'
is_mention=false
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
spec:
containers:
- name: babyrite
image: ghcr.io/m1sk9/babyrite:v0.11.1
image: ghcr.io/m1sk9/babyrite:v0.12.0
resources:
requests:
cpu: 250m
Expand All @@ -31,7 +31,7 @@ spec:
env:
# 相対パスを指定する
- name: CONFIG_FILE_PATH
value: "config/config.yaml"
value: "config/config.toml"
- name: DISCORD_API_TOKEN
valueFrom:
secretKeyRef:
Expand Down