mirror of https://github.com/OpenVidu/openvidu.git
openvidu-deployment: Missing pip install
parent
591a8845fa
commit
08cfbcce64
|
@ -1412,7 +1412,14 @@ Resources:
|
||||||
apt-get update && apt-get install -y \
|
apt-get update && apt-get install -y \
|
||||||
python3-pip \
|
python3-pip \
|
||||||
ec2-instance-connect
|
ec2-instance-connect
|
||||||
pip3 install https://s3.amazonaws.com/cloudformation-examples/aws-cfn-bootstrap-py3-latest.tar.gz
|
|
||||||
|
# Detect Ubuntu version and install cfn-bootstrap accordingly
|
||||||
|
UBUNTU_VERSION=$(lsb_release -rs | cut -d. -f1)
|
||||||
|
if [ "$UBUNTU_VERSION" -ge 24 ]; then
|
||||||
|
python3 -m pip install --break-system-packages https://s3.amazonaws.com/cloudformation-examples/aws-cfn-bootstrap-py3-latest.tar.gz
|
||||||
|
else
|
||||||
|
python3 -m pip install https://s3.amazonaws.com/cloudformation-examples/aws-cfn-bootstrap-py3-latest.tar.gz
|
||||||
|
fi
|
||||||
|
|
||||||
cfn-init -v --region ${AWS::Region} --stack ${AWS::StackName} --resource OpenViduMasterLaunchTemplate
|
cfn-init -v --region ${AWS::Region} --stack ${AWS::StackName} --resource OpenViduMasterLaunchTemplate
|
||||||
|
|
||||||
|
@ -1460,7 +1467,14 @@ Resources:
|
||||||
apt-get update && apt-get install -y \
|
apt-get update && apt-get install -y \
|
||||||
python3-pip \
|
python3-pip \
|
||||||
ec2-instance-connect
|
ec2-instance-connect
|
||||||
pip3 install https://s3.amazonaws.com/cloudformation-examples/aws-cfn-bootstrap-py3-latest.tar.gz
|
|
||||||
|
# Detect Ubuntu version and install cfn-bootstrap accordingly
|
||||||
|
UBUNTU_VERSION=$(lsb_release -rs | cut -d. -f1)
|
||||||
|
if [ "$UBUNTU_VERSION" -ge 24 ]; then
|
||||||
|
python3 -m pip install --break-system-packages https://s3.amazonaws.com/cloudformation-examples/aws-cfn-bootstrap-py3-latest.tar.gz
|
||||||
|
else
|
||||||
|
python3 -m pip install https://s3.amazonaws.com/cloudformation-examples/aws-cfn-bootstrap-py3-latest.tar.gz
|
||||||
|
fi
|
||||||
|
|
||||||
cfn-init -v --region ${AWS::Region} --stack ${AWS::StackName} --resource OpenViduMasterLaunchTemplate
|
cfn-init -v --region ${AWS::Region} --stack ${AWS::StackName} --resource OpenViduMasterLaunchTemplate
|
||||||
|
|
||||||
|
@ -1666,7 +1680,14 @@ Resources:
|
||||||
apt-get update && apt-get install -y \
|
apt-get update && apt-get install -y \
|
||||||
python3-pip \
|
python3-pip \
|
||||||
ec2-instance-connect
|
ec2-instance-connect
|
||||||
pip3 install https://s3.amazonaws.com/cloudformation-examples/aws-cfn-bootstrap-py3-latest.tar.gz
|
|
||||||
|
# Detect Ubuntu version and install cfn-bootstrap accordingly
|
||||||
|
UBUNTU_VERSION=$(lsb_release -rs | cut -d. -f1)
|
||||||
|
if [ "$UBUNTU_VERSION" -ge 24 ]; then
|
||||||
|
python3 -m pip install --break-system-packages https://s3.amazonaws.com/cloudformation-examples/aws-cfn-bootstrap-py3-latest.tar.gz
|
||||||
|
else
|
||||||
|
python3 -m pip install https://s3.amazonaws.com/cloudformation-examples/aws-cfn-bootstrap-py3-latest.tar.gz
|
||||||
|
fi
|
||||||
|
|
||||||
cfn-init --region ${AWS::Region} --stack ${AWS::StackId} --resource OpenViduMediaNodeLaunchTemplate
|
cfn-init --region ${AWS::Region} --stack ${AWS::StackId} --resource OpenViduMediaNodeLaunchTemplate
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue