Skip to content
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
6 changes: 3 additions & 3 deletions cfa/cloudops/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ def remaining_task_autoscale_formula(
# image defaults
default_image_publisher = "microsoft-dsvm"
default_image_offer = "ubuntu-hpc"
default_image_sku = "2204"
default_node_agent_sku_id = "batch.node.ubuntu 22.04"
default_image_sku = "2404"
default_node_agent_sku_id = "batch.node.ubuntu 24.04"

# batch info
default_azure_batch_resource_url = "https://batch.core.windows.net/"
Expand Down Expand Up @@ -109,7 +109,7 @@ def remaining_task_autoscale_formula(
)


default_vm_size = "standard_d4ds_v5" # 4 core D-series VM
default_vm_size = "standard_d4ads_v5" # 4 core D-series VM

default_autoscale_evaluation_interval = "PT5M"

Expand Down
5 changes: 4 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
The versioning pattern is `major.minor.patch`.

---
## v0.7.4
- Upgrade Ubuntu node to 24.04

## v0.7.3
- Push penultimate deployments to `rollbackprevious` slot of Azure Function Apps

## v0.7.2
- add a deprecation warning when jobs are created on pools using a v3 VM
- Add a deprecation warning when jobs are created on pools using a v3 VM

## v0.7.1
- `create_pool()` allows for empty container image name, which can be determined when adding tasks
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "cfa.cloudops"
version = "0.7.3"
version = "0.7.4"
description = "Cloud storage, batch, functions, MLOps assistance"
authors = [
{name = "Ryan Raasch", email = "xng3@cdc.gov"}
Expand Down
Loading