Files
wehub-resource-sync 070959e133
landing-page-staging / Deploy landing page to staging (push) Has been skipped
landing-page-ci / Validate landing page (push) Failing after 4s
visual-baseline / Capture visual baselines (push) Has been cancelled
bake-plugin-previews / Bake plugin previews (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:00:47 +08:00

177 lines
4.7 KiB
Bicep

targetScope = 'resourceGroup'
@description('Azure region for the Open Design container group and storage account.')
param location string = resourceGroup().location
@description('Container group name.')
param containerGroupName string = 'open-design'
@description('DNS label for the Azure Container Instances upstream endpoint. Must be unique in the selected region.')
param dnsNameLabel string = toLower('open-design-${uniqueString(resourceGroup().id, location)}')
@description('Open Design container image.')
param image string = 'ghcr.io/nexu-io/od:latest'
@secure()
@description('Required Open Design API token. Generate with: openssl rand -hex 32')
param odApiToken string
@description('Comma-separated browser-visible origins allowed by the daemon. Set this to the authenticated reverse proxy origin, for example https://od.example.com.')
param allowedOrigins string = ''
@description('Node.js heap cap inside the container.')
param nodeOptions string = '--max-old-space-size=192'
@description('CPU cores requested by the container.')
@minValue(1)
param cpuCores int = 1
@description('Memory requested by the container in GiB.')
@minValue(1)
param memoryInGB int = 1
@description('Azure Files share quota in GiB for persistent Open Design data.')
@minValue(1)
@maxValue(5120)
param fileShareQuotaGB int = 10
var storageAccountName = take(toLower('od${uniqueString(resourceGroup().id, location)}'), 24)
var fileShareName = 'opendesigndata'
var appPort = 7456
resource storageAccount 'Microsoft.Storage/storageAccounts@2023-05-01' = {
name: storageAccountName
location: location
sku: {
name: 'Standard_LRS'
}
kind: 'StorageV2'
properties: {
allowBlobPublicAccess: false
minimumTlsVersion: 'TLS1_2'
supportsHttpsTrafficOnly: true
}
}
resource fileService 'Microsoft.Storage/storageAccounts/fileServices@2023-05-01' = {
parent: storageAccount
name: 'default'
}
resource dataShare 'Microsoft.Storage/storageAccounts/fileServices/shares@2023-05-01' = {
parent: fileService
name: fileShareName
properties: {
accessTier: 'TransactionOptimized'
shareQuota: fileShareQuotaGB
}
}
resource containerGroup 'Microsoft.ContainerInstance/containerGroups@2023-05-01' = {
name: containerGroupName
location: location
properties: {
osType: 'Linux'
restartPolicy: 'Always'
sku: 'Standard'
ipAddress: {
type: 'Public'
dnsNameLabel: dnsNameLabel
ports: [
{
protocol: 'TCP'
port: appPort
}
]
}
containers: [
{
name: 'open-design'
properties: {
image: image
ports: [
{
protocol: 'TCP'
port: appPort
}
]
environmentVariables: [
{
name: 'NODE_ENV'
value: 'production'
}
{
name: 'NODE_OPTIONS'
value: nodeOptions
}
{
name: 'OD_BIND_HOST'
value: '0.0.0.0'
}
{
name: 'OD_PORT'
value: string(appPort)
}
{
name: 'OD_WEB_PORT'
value: string(appPort)
}
{
name: 'OD_DATA_DIR'
value: '/app/.od'
}
{
name: 'OD_ALLOWED_ORIGINS'
value: allowedOrigins
}
{
name: 'OD_API_TOKEN'
secureValue: odApiToken
}
]
resources: {
requests: {
cpu: cpuCores
memoryInGB: memoryInGB
}
}
volumeMounts: [
{
name: 'open-design-data'
mountPath: '/app/.od'
readOnly: false
}
]
livenessProbe: {
httpGet: {
path: '/api/health'
port: appPort
scheme: 'http'
}
initialDelaySeconds: 30
periodSeconds: 30
failureThreshold: 3
timeoutSeconds: 5
}
}
}
]
volumes: [
{
name: 'open-design-data'
azureFile: {
shareName: dataShare.name
storageAccountName: storageAccount.name
storageAccountKey: listKeys(storageAccount.id, storageAccount.apiVersion).keys[0].value
readOnly: false
}
}
]
}
}
output daemonFqdn string = containerGroup.properties.ipAddress.fqdn
output proxyUpstreamUrl string = 'http://${containerGroup.properties.ipAddress.fqdn}:${appPort}'
output storageAccountName string = storageAccount.name
output fileShareName string = dataShare.name