Skip to content

v35.3.0

Compare
Choose a tag to compare
@bingosummer bingosummer released this 06 Jun 08:44
· 543 commits to master since this release

Features:

  • CPI sets the default option for diagnostic data collecting and VM boot diagnostics to false, allowing customer to turn it on. (#400)

    Collecting diagnotics data should be opt-in, not opt-out. #399.

    To turn on the diagnostics features, you can explicitly set value of enable_telemetry and / or enable_vm_boot_diagnostics in global configuration. Example:

    azure: &azure
      environment: AzureCloud
      ...
      enable_telemetry: true
      enable_vm_boot_diagnostics: true
    
  • CPI supports enabling IP forwarding for VM network interface. (#382)

    By default, IP forwarding is disabled. To enable it, you can set ip_forwarding in VM type/extension or network configuration to true. The ip_forwarding in VM type/extension can override the equivalent option in the network configuration.

Fixes:

  • When diagnostic metrics is turned on, CPI waits for logging to complete before finishing VM creation, This slows down the process. The fix allows CPI to proceed with VM creating in parallel of the diagnostic logging. (#394)

  • The default value of disk type is Premium_LRS if instance type is the series B, Dsv3, Esv3 and Ls. (#389)

  • When creating storage account, CPI will wait until its provisioning state becomes succeeded. (#387)

  • Update Active Directory Endpoint of Azure USGovernment. (#391)

  • Add EOFError as one of the retryable network errors. (#393)

Documents:

  • Update CPI global configurations for Azure Stack. (#397)

Development:

  • Create standard sku public ip using terraform in CI. (#390)

  • Use master branch of bosh-acceptance-tests for CI. (#390)