Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[2.5] Update dashboard cloud base image version to meet Python 3.9 #3063

Merged
merged 1 commit into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nvflare/lighter/impl/aws_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ aws_start_sh: |

aws_start_dsb_sh: |
VM_NAME=nvflare_dashboard
AMI_IMAGE=ami-04bad3c587fe60d89
AMI_IMAGE=ami-04c7330a29e61bbca # 22.04 from https://cloud-images.ubuntu.com/locator/ec2/
EC2_TYPE=t2.small
SECURITY_GROUP=nvflare_dashboard_sg_$RANDOM
REGION=us-west-2
Expand Down
14 changes: 7 additions & 7 deletions nvflare/lighter/impl/azure_template.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
azure_start_svr_header_sh: |
RESOURCE_GROUP=nvflare_rg
VM_NAME=nvflare_server
VM_IMAGE=Canonical:0001-com-ubuntu-server-focal:20_04-lts-gen2:latest
VM_IMAGE=Canonical:0001-com-ubuntu-server-jammy:22_04-lts-gen2:latest
VM_SIZE=Standard_B2ms
NSG_NAME=nvflare_nsgs
ADMIN_USERNAME=nvflare
Expand Down Expand Up @@ -41,10 +41,10 @@ azure_start_svr_header_sh: |

if [ $container == true ]
then
VM_IMAGE=Canonical:0001-com-ubuntu-server-focal:20_04-lts-gen2:latest
VM_IMAGE=Canonical:0001-com-ubuntu-server-jammy:22_04-lts-gen2:latest
VM_SIZE=Standard_D8s_v3
else
VM_IMAGE=Canonical:0001-com-ubuntu-server-focal:20_04-lts-gen2:latest
VM_IMAGE=Canonical:0001-com-ubuntu-server-jammy:22_04-lts-gen2:latest
VM_SIZE=Standard_B2ms
fi

Expand Down Expand Up @@ -178,7 +178,7 @@ azure_start_svr_header_sh: |
azure_start_cln_header_sh: |
RESOURCE_GROUP=nvflare_client_rg_${RANDOM}_${RANDOM}
VM_NAME=nvflare_client
VM_IMAGE=Canonical:0001-com-ubuntu-server-focal:20_04-lts-gen2:latest
VM_IMAGE=Canonical:0001-com-ubuntu-server-jammy:22_04-lts-gen2:latest
VM_SIZE=Standard_B2ms
NSG_NAME=nvflare_nsgc
ADMIN_USERNAME=nvflare
Expand All @@ -202,10 +202,10 @@ azure_start_cln_header_sh: |

if [ $container == true ]
then
VM_IMAGE=Canonical:0001-com-ubuntu-server-focal:20_04-lts-gen2:latest
VM_IMAGE=Canonical:0001-com-ubuntu-server-jammy:22_04-lts-gen2:latest
VM_SIZE=Standard_D8s_v3
else
VM_IMAGE=Canonical:0001-com-ubuntu-server-focal:20_04-lts-gen2:latest
VM_IMAGE=Canonical:0001-com-ubuntu-server-jammy:22_04-lts-gen2:latest
VM_SIZE=Standard_B2ms
fi
if [ -z ${config_file+x} ]
Expand Down Expand Up @@ -356,7 +356,7 @@ azure_start_common_sh: |
azure_start_dsb_sh: |
RESOURCE_GROUP=nvflare_dashboard_rg_${RANDOM}_${RANDOM}
VM_NAME=nvflare_dashboard
VM_IMAGE=Canonical:0001-com-ubuntu-server-focal:20_04-lts-gen2:latest
VM_IMAGE=Canonical:0001-com-ubuntu-server-jammy:22_04-lts-gen2:latest
VM_SIZE=Standard_B2ms
NSG_NAME=nvflare_nsgc
ADMIN_USERNAME=nvflare
Expand Down
Loading