mirror of https://github.com/OpenVidu/openvidu.git
openvidu-deployment: Update runtime to Python 3.13 of lambdas and upgrade Docker images
parent
98880f6405
commit
0d728f71d0
|
|
@ -535,7 +535,7 @@ Resources:
|
|||
Handler: index.handler
|
||||
Role:
|
||||
!GetAtt CloudformationLambdaRole.Arn
|
||||
Runtime: python3.11
|
||||
Runtime: python3.13
|
||||
Timeout: 900
|
||||
|
||||
CloudformationLambdaInvoke:
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ services:
|
|||
max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}"
|
||||
|
||||
minio-s3:
|
||||
image: minio/minio:RELEASE.2023-01-06T18-11-18Z
|
||||
image: minio/minio:RELEASE.2025-09-07T16-13-09Z
|
||||
restart: always
|
||||
environment:
|
||||
- MINIO_ACCESS_KEY=${OPENVIDU_ENTERPRISE_HA_S3_CONFIG_ACCESS_KEY}
|
||||
|
|
@ -73,7 +73,7 @@ services:
|
|||
max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}"
|
||||
|
||||
createbuckets:
|
||||
image: minio/mc:RELEASE.2022-12-24T15-21-38Z
|
||||
image: minio/mc:RELEASE.2025-08-13T08-35-41Z
|
||||
depends_on:
|
||||
- minio-s3
|
||||
entrypoint: >
|
||||
|
|
@ -87,7 +87,7 @@ services:
|
|||
"
|
||||
|
||||
redis:
|
||||
image: redis:7.0.8-alpine
|
||||
image: redis:8.2.3-alpine
|
||||
restart: always
|
||||
ports:
|
||||
- "${OPENVIDU_ENTERPRISE_HA_REDIS_PORT:-6379}:${OPENVIDU_ENTERPRISE_HA_REDIS_PORT:-6379}"
|
||||
|
|
|
|||
|
|
@ -1284,7 +1284,7 @@ Resources:
|
|||
Handler: index.handler
|
||||
Role:
|
||||
!GetAtt LambdaOnDeleteRole.Arn
|
||||
Runtime: python3.11
|
||||
Runtime: python3.13
|
||||
Timeout: 900
|
||||
|
||||
LambdaOnDeleteInvoke:
|
||||
|
|
@ -1408,7 +1408,7 @@ Resources:
|
|||
Handler: index.handler
|
||||
Role:
|
||||
!GetAtt LambdaOnCreateRole.Arn
|
||||
Runtime: python3.11
|
||||
Runtime: python3.13
|
||||
Timeout: 900
|
||||
|
||||
LambdaOnCreateInvoke:
|
||||
|
|
|
|||
|
|
@ -1229,7 +1229,7 @@ Resources:
|
|||
Handler: index.handler
|
||||
Role:
|
||||
!GetAtt LambdaOnDeleteRole.Arn
|
||||
Runtime: python3.11
|
||||
Runtime: python3.13
|
||||
Timeout: 900
|
||||
|
||||
LambdaOnDeleteInvoke:
|
||||
|
|
@ -1353,7 +1353,7 @@ Resources:
|
|||
Handler: index.handler
|
||||
Role:
|
||||
!GetAtt LambdaOnCreateRole.Arn
|
||||
Runtime: python3.11
|
||||
Runtime: python3.13
|
||||
Timeout: 900
|
||||
|
||||
LambdaOnCreateInvoke:
|
||||
|
|
|
|||
|
|
@ -150,7 +150,7 @@ Resources:
|
|||
Handler: index.handler
|
||||
Role: !Sub ${DescribeImagesRole.Arn}
|
||||
Timeout: 60
|
||||
Runtime: python3.11
|
||||
Runtime: python3.13
|
||||
Code:
|
||||
ZipFile: |
|
||||
import boto3
|
||||
|
|
|
|||
|
|
@ -1107,7 +1107,7 @@ Resources:
|
|||
Handler: index.handler
|
||||
Role:
|
||||
!GetAtt CloudformationLambdaRole.Arn
|
||||
Runtime: python3.11
|
||||
Runtime: python3.13
|
||||
Timeout: 900
|
||||
|
||||
CloudformationLambdaInvoke:
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM coturn/coturn:4.6.3-r2-alpine
|
||||
FROM coturn/coturn:4.7.0-r2-alpine
|
||||
|
||||
USER root
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM nginx:1.27.3-alpine
|
||||
FROM nginx:1.29.3-alpine
|
||||
|
||||
# Install required software
|
||||
RUN apk update && \
|
||||
|
|
|
|||
Loading…
Reference in New Issue