updated cal.com to 6.1.0

This commit is contained in:
2026-01-16 11:31:26 +01:00
parent 9008698e36
commit 9598485696
2 changed files with 7 additions and 5 deletions
+2 -2
View File
@@ -148,7 +148,7 @@ metadata:
labels: labels:
app.kubernetes.io/instance: calcom app.kubernetes.io/instance: calcom
app.kubernetes.io/name: calcom app.kubernetes.io/name: calcom
app.kubernetes.io/version: "v6.0.8" app.kubernetes.io/version: "v6.1.0"
spec: spec:
replicas: 1 replicas: 1
strategy: strategy:
@@ -194,7 +194,7 @@ spec:
echo "Redis is ready!" echo "Redis is ready!"
containers: containers:
- name: calcom - name: calcom
image: docker.io/calcom/cal.com:v6.0.8 image: docker.io/calcom/cal.com:v6.1.0
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
command: command:
- /bin/sh - /bin/sh
+5 -3
View File
@@ -28,7 +28,9 @@ data:
APP = FastAPI() APP = FastAPI()
# Configuration # ================================
# Időkép configuration
# ================================
IDOKEP_URL = os.getenv("IDOKEP_URL", "https://www.idokep.hu/idojaras/Budapest%20VII.%20ker") IDOKEP_URL = os.getenv("IDOKEP_URL", "https://www.idokep.hu/idojaras/Budapest%20VII.%20ker")
PLACE_NAME = os.getenv("PLACE_NAME", "Budapest VII. ker") PLACE_NAME = os.getenv("PLACE_NAME", "Budapest VII. ker")
SOURCE_NAME = "Időkép" SOURCE_NAME = "Időkép"
@@ -243,9 +245,9 @@ data:
def metrics(): def metrics():
return Response(generate_latest(), media_type=CONTENT_TYPE_LATEST) return Response(generate_latest(), media_type=CONTENT_TYPE_LATEST)
# ------------------------- # ================================
# Tandoor "Meal of the Day" # Tandoor "Meal of the Day"
# ------------------------- # ================================
from datetime import datetime, timezone from datetime import datetime, timezone
from zoneinfo import ZoneInfo from zoneinfo import ZoneInfo
from urllib.parse import urlencode from urllib.parse import urlencode