Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
d177a34
chore: integrate changes from main
Apr 9, 2026
d9ae5b3
chore: integrate changes from main
Apr 9, 2026
0337caf
Merged PR 604: feat(cloud): add diagnostic settings for blueprint res…
Apr 10, 2026
e879f87
Merged PR 624: feat(cncf-cluster): add Entra ID group support and Arc…
Apr 14, 2026
4e405c1
Merged PR 640: fix: resolve deployment issues across blueprints
Apr 15, 2026
f3d7ff6
[SECURITY] Add ignore-scripts=true to .npmrc
Apr 16, 2026
eb0e661
chore: integrate changes from main
Apr 18, 2026
fcac7aa
chore: integrate changes from upstream/main
katriendg Apr 21, 2026
9b5c687
chore: integrate changes from main
Apr 27, 2026
262f95c
feat(application): add video capture, query API, and ONVIF integration
auyidi1 Mar 13, 2026
c759343
fix(build): resolve megalinter failures for PR #616
auyidi1 Mar 13, 2026
1aa5764
fix(build): resolve all megalinter failures for PR #616
auyidi1 Mar 13, 2026
d2c69a6
refactor(docs): consolidate ONVIF camera docs into getting-started guide
auyidi1 Mar 13, 2026
bbe4854
fix(docs): correct broken link in ADR 006 to edge-video-streaming ADR
auyidi1 Mar 13, 2026
f4b6b30
fix(build): resolve cspell, ruff, and yamllint failures for PR #616
auyidi1 Mar 13, 2026
69e203d
feat(blueprints): integrate video capture query into full-single-node…
auyidi1 Mar 19, 2026
fe99b2c
fix(application): address PR #616 review feedback for video query API
auyidi1 Apr 27, 2026
84c3699
fix(security): address PR #468 review feedback and CI failures
auyidi1 May 12, 2026
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
23 changes: 23 additions & 0 deletions .cspell/project-specific.txt
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,26 @@ Ouvrir
tinyyolov
ullaakut
youracr
absdiff
anyauth
datamover
delenv
demuxer
dtmi
edgeaistorage
edgesubvolume
edgesubvolumes
faststart
ffprobe
filelist
guestconfiguration
matroska
mmin
movflags
readall
reolink
stvideoqueryapipoc
Subtractor
ultrafast
vidcap
videocapture
4 changes: 3 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ package-lock=true
# Use color in npm output
color=true
# Set log level to warn by default
loglevel=warn
loglevel=warn
# Disable postinstall scripts for supply chain security hardening
ignore-scripts=true
2 changes: 1 addition & 1 deletion blueprints/azure-local/terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Deploys the cloud and edge resources required to run Azure IoT Operations on an
| azure\_local\_control\_plane\_count | Number of control plane nodes for Azure Local cluster | `number` | `1` | no |
| azure\_local\_control\_plane\_vm\_size | VM size for control plane nodes in Azure Local cluster | `string` | `"Standard_A4_v2"` | no |
| azure\_local\_node\_pool\_count | Number of worker nodes in the default node pool for Azure Local cluster | `number` | `1` | no |
| azure\_local\_node\_pool\_vm\_size | VM size for worker nodes in Azure Local cluster | `string` | `"Standard_D8s_v3"` | no |
| azure\_local\_node\_pool\_vm\_size | VM size for worker nodes in Azure Local cluster | `string` | `"Standard_D8s_v6"` | no |
| azure\_local\_pod\_cidr | CIDR range for Kubernetes pods in Azure Local cluster | `string` | `"10.244.0.0/16"` | no |
| custom\_locations\_oid | Resource ID of the custom location for the Azure Stack HCI cluster | `string` | `null` | no |
| instance | Instance identifier for naming resources: 001, 002, etc | `string` | `"001"` | no |
Expand Down
6 changes: 5 additions & 1 deletion blueprints/azure-local/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ module "cloud_security_identity" {
should_enable_purge_protection = var.should_enable_key_vault_purge_protection
should_create_aks_identity = false
should_create_ml_workload_identity = false
log_analytics_workspace_id = module.cloud_observability.log_analytics_workspace.id
should_enable_diagnostic_settings = true
}

module "cloud_observability" {
Expand Down Expand Up @@ -102,7 +104,9 @@ module "cloud_messaging" {
resource_prefix = var.resource_prefix
instance = var.instance

should_create_azure_functions = var.should_create_azure_functions
should_create_azure_functions = var.should_create_azure_functions
log_analytics_workspace_id = module.cloud_observability.log_analytics_workspace.id
should_enable_diagnostic_settings = true
}

module "azure_local_host" {
Expand Down
2 changes: 1 addition & 1 deletion blueprints/azure-local/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ variable "azure_local_control_plane_vm_size" {
variable "azure_local_node_pool_vm_size" {
type = string
description = "VM size for worker nodes in Azure Local cluster"
default = "Standard_D8s_v3"
default = "Standard_D8s_v6"
}

variable "azure_local_pod_cidr" {
Expand Down
Loading