Skip to content

Commit

Permalink
Update to Kurento 7.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pabloFuente committed May 3, 2023
1 parent fb101bc commit f922c5c
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/openvidu-ce-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ on:
KURENTO_MEDIA_SERVER_IMAGE:
description: "Docker image of kurento-media-server"
required: true
default: "kurento/kurento-media-server:6.18.0"
default: "kurento/kurento-media-server:7.0.1"
DOCKER_RECORDING_VERSION:
description: "Force version of openvidu/openvidu-recording container"
required: true
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
env:
TEST_IMAGE: ${{ inputs.TEST_IMAGE || 'openvidu/openvidu-test-e2e:22.04' }}
KURENTO_SNAPSHOTS_URL: ${{ secrets.KURENTO_SNAPSHOTS_URL }}
KURENTO_MEDIA_SERVER_IMAGE: ${{ inputs.KURENTO_MEDIA_SERVER_IMAGE || 'kurento/kurento-media-server:6.18.0' }}
KURENTO_MEDIA_SERVER_IMAGE: ${{ inputs.KURENTO_MEDIA_SERVER_IMAGE || 'kurento/kurento-media-server:7.0.1' }}
KURENTO_JAVA_COMMIT: ${{ inputs.KURENTO_JAVA_COMMIT || 'default' }}
DOCKER_RECORDING_VERSION: ${{ inputs.DOCKER_RECORDING_VERSION || 'default' }}
CHROME_VERSION: ${{ inputs.CHROME_VERSION || 'latest' }}
Expand Down
2 changes: 1 addition & 1 deletion openvidu-server/deployments/ce/docker-compose/.env
Original file line number Diff line number Diff line change
Expand Up @@ -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:6.18.0
# KMS_IMAGE=kurento/kurento-media-server:7.0.1

# Kurento Media Server Level logs
# -------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ services:
max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}"

kms:
image: ${KMS_IMAGE:-kurento/kurento-media-server:6.18.0}
image: ${KMS_IMAGE:-kurento/kurento-media-server:7.0.1}
restart: always
network_mode: host
ulimits:
Expand Down
2 changes: 1 addition & 1 deletion openvidu-server/deployments/enterprise/docker-compose/.env
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,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:6.18.0
# KMS_IMAGE=kurento/kurento-media-server:7.0.1

# Uncomment the next line and define this variable to change
# the verbosity level of the logs of KMS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:6.18.0
- KMS_IMAGE=kurento/kurento-media-server:7.0.1
- MEDIASOUP_IMAGE=openvidu/mediasoup-controller:2.26.0
- METRICBEAT_IMAGE=docker.elastic.co/beats/metricbeat-oss:7.8.0
- FILEBEAT_IMAGE=docker.elastic.co/beats/filebeat-oss:7.8.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,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:6.18.0
# KMS_IMAGE=kurento/kurento-media-server:7.0.1

# Uncomment the next line and define this variable to change
# the verbosity level of the logs of KMS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ services:
core: -1
environment:
- MEDIA_NODE_CONTROLLER_RECORDINGS_PATH=/opt/openvidu/mncontroller/recordings
- KMS_IMAGE=kurento/kurento-media-server:6.18.0
- KMS_IMAGE=kurento/kurento-media-server:7.0.1
- MEDIASOUP_IMAGE=openvidu/mediasoup-controller:2.26.0
- METRICBEAT_IMAGE=docker.elastic.co/beats/metricbeat-oss:7.8.0
- FILEBEAT_IMAGE=docker.elastic.co/beats/filebeat-oss:7.8.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,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:6.18.0
# KMS_IMAGE=kurento/kurento-media-server:7.0.1

# Uncomment the next line and define this variable to change
# the verbosity level of the logs of KMS
Expand Down
6 changes: 3 additions & 3 deletions openvidu-server/docker/openvidu-dev/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:20.04
LABEL maintainer="info@openvidu.io"

# Update and install dependencies
Expand All @@ -7,8 +7,8 @@ RUN apt-get update && apt-get -y upgrade && \
rm -rf /var/lib/apt/lists/*

# Install Kurento Media Server (KMS)
RUN echo "deb [arch=amd64] http://ubuntu.openvidu.io/6.18.0 bionic kms6" | tee /etc/apt/sources.list.d/kurento.list && \
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 5AFA7A83 && \
RUN echo "deb [arch=amd64] http://ubuntu.openvidu.io/7.0.1 focal main" | tee /etc/apt/sources.list.d/kurento.list && \
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 234821A61B67740F89BFD669FC8A16625AFA7A83 && \
apt-get update && \
apt-get -y install kurento-media-server && \
rm -rf /var/lib/apt/lists/*
Expand Down

0 comments on commit f922c5c

Please sign in to comment.