openvidu-server,deployment: Update kurento-media-server to 6.18.0

pull/750/head
cruizba 2022-09-16 16:43:49 +02:00
parent f124f0a661
commit 7f1684fb78
7 changed files with 8 additions and 8 deletions

View File

@ -15,7 +15,7 @@ on:
KURENTO_MEDIA_SERVER_IMAGE:
description: 'Docker image of kurento-media-server'
required: true
default: 'kurento/kurento-media-server:dev-6.18.0'
default: 'kurento/kurento-media-server:6.18.0'
MEDIASOUP_CONTROLLER_VERSION:
description: 'Tag of image openvidu/mediasoup-controller'
required: true
@ -54,7 +54,7 @@ jobs:
- /opt/openvidu:/opt/openvidu
env:
KURENTO_SNAPSHOTS_URL: ${{ secrets.KURENTO_SNAPSHOTS_URL }}
KURENTO_MEDIA_SERVER_IMAGE: ${{ github.event.inputs.KURENTO_MEDIA_SERVER_IMAGE || 'kurento/kurento-media-server:dev-6.18.0' }}
KURENTO_MEDIA_SERVER_IMAGE: ${{ github.event.inputs.KURENTO_MEDIA_SERVER_IMAGE || 'kurento/kurento-media-server:6.18.0' }}
MEDIASOUP_CONTROLLER_VERSION: ${{ github.event.inputs.MEDIASOUP_CONTROLLER_VERSION || 'master' }}
KURENTO_JAVA_COMMIT: ${{ github.event.inputs.KURENTO_JAVA_COMMIT || 'master' }}
DOCKER_RECORDING_VERSION: ${{ github.event.inputs.DOCKER_RECORDING_VERSION || 'default' }}

View File

@ -176,7 +176,7 @@ OPENVIDU_CDR_PATH=/opt/openvidu/cdr
# --------------------------
# Docker hub kurento media server: https://hub.docker.com/r/kurento/kurento-media-server
# Uncomment the next line and define this variable with KMS image that you want use
# KMS_IMAGE=kurento/kurento-media-server:dev-6.18.0
# KMS_IMAGE=kurento/kurento-media-server:6.18.0
# Kurento Media Server Level logs
# -------------------------------

View File

@ -45,7 +45,7 @@ services:
max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}"
kms:
image: ${KMS_IMAGE:-kurento/kurento-media-server:dev-6.18.0}
image: ${KMS_IMAGE:-kurento/kurento-media-server:6.18.0}
restart: always
network_mode: host
ulimits:

View File

@ -349,7 +349,7 @@ ELASTICSEARCH_PASSWORD=
# Uncomment the next line and define this variable with KMS image that you want use
# By default, KMS_IMAGE is defined in media nodes and it does not need to be specified unless
# you want to use a specific version of KMS
# KMS_IMAGE=kurento/kurento-media-server:dev-6.18.0
# KMS_IMAGE=kurento/kurento-media-server:6.18.0
# Uncomment the next line and define this variable to change
# the verbosity level of the logs of KMS

View File

@ -22,7 +22,7 @@ services:
core: -1
entrypoint: ['/bin/sh', '-c', '/beats/copy_config_files.sh && /usr/local/bin/entrypoint.sh']
environment:
- KMS_IMAGE=kurento/kurento-media-server:dev-6.18.0
- KMS_IMAGE=kurento/kurento-media-server:6.18.0
- MEDIASOUP_IMAGE=openvidu/mediasoup-controller:2.22.0
- METRICBEAT_IMAGE=docker.elastic.co/beats/metricbeat-oss:7.8.0
- FILEBEAT_IMAGE=docker.elastic.co/beats/filebeat-oss:7.8.0

View File

@ -346,7 +346,7 @@ ELASTICSEARCH_PASSWORD=
# Uncomment the next line and define this variable with KMS image that you want use
# By default, KMS_IMAGE is defined in media nodes and it does not need to be specified unless
# you want to use a specific version of KMS
# KMS_IMAGE=kurento/kurento-media-server:dev-6.18.0
# KMS_IMAGE=kurento/kurento-media-server:6.18.0
# Uncomment the next line and define this variable to change
# the verbosity level of the logs of KMS

View File

@ -65,7 +65,7 @@ public class OpenViduTestE2e {
// Media server variables
final protected static String KURENTO_IMAGE = "kurento/kurento-media-server";
final protected static String MEDIASOUP_IMAGE = "openvidu/mediasoup-controller";
protected static String MEDIA_SERVER_IMAGE = KURENTO_IMAGE + ":dev-6.18";
protected static String MEDIA_SERVER_IMAGE = KURENTO_IMAGE + ":6.18.0";
final protected String DEFAULT_JSON_SESSION = "{'id':'STR','object':'session','sessionId':'STR','createdAt':0,'mediaMode':'STR','recordingMode':'STR','defaultRecordingProperties':{'hasVideo':true,'frameRate':25,'hasAudio':true,'shmSize':536870912,'name':'','outputMode':'COMPOSED','resolution':'1280x720','recordingLayout':'BEST_FIT'},'customSessionId':'STR','connections':{'numberOfElements':0,'content':[]},'recording':false,'forcedVideoCodec':'STR','allowTranscoding':false}";
final protected String DEFAULT_JSON_PENDING_CONNECTION = "{'id':'STR','object':'connection','type':'WEBRTC','status':'pending','connectionId':'STR','sessionId':'STR','createdAt':0,'activeAt':null,'location':null,'ip':null,'platform':null,'token':'STR','serverData':'STR','record':true,'role':'STR','kurentoOptions':null,'rtspUri':null,'adaptativeBitrate':null,'onlyPlayWithSubscribers':null,'networkCache':null,'clientData':null,'publishers':null,'subscribers':null, 'customIceServers':[]}";