azure-maven-plugins icon indicating copy to clipboard operation
azure-maven-plugins copied to clipboard

Deploy function app using low pricing tier is not available

Open ZhengJun003 opened this issue 6 years ago • 1 comments

Plugin name and version

azure-functions-maven-plugin 1.3.5-SNAPSHOT

Plugin configuration in your pom.xml

            <plugin>
                <groupId>com.microsoft.azure</groupId>
                <artifactId>azure-functions-maven-plugin</artifactId>
                <configuration>
                    <resourceGroup>${functionResourceGroup}</resourceGroup>
                    <appName>${functionAppName}</appName>
                    <region>${functionAppRegion}</region>
                    <pricingTier>Consumption</pricingTier>
                    <deploymentType>RUN_FROM_BLOB</deploymentType>
                    <runtime>
                        <os>linux</os>
                    </runtime>
                    <appSettings>
                        <!-- Run Azure Function from package file by default -->
                        <property>
                            <name>FUNCTIONS_EXTENSION_VERSION</name>
                            <value>~3</value>
                        </property>
                        <property>
                            <name>AzureWebJobsStorage</name>
                            <value>xxxxx</value>
                        </property>
                        ......
                    </appSettings>
                </configuration>
                <executions>
                    <execution>
                        <id>package-functions</id>
                        <goals>
                            <goal>package</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

Actual behavior

  1. Use Consumption/Dedicated pricing tier to deploy, function app is not available. Refresh later, the function app with the Dedicated pricing tier is available. but the function app with the Consumption pricing tier always isn't available. image

  2. Use Consumption pricing tier to deploy function app. some times, it can show functions, but the logs show like below. image image

ZhengJun003 avatar Dec 03 '19 09:12 ZhengJun003

Plugin name and version

azure-functions-maven-plugin 1.4.1-SNAPSHOT

Actual behavior

Use Dedicated / Premium pricing tier to deploy under windows runtime, function app is not available. When updating the pricing tier of function app, function app is available image

Elvira-sxr avatar Jan 15 '20 07:01 Elvira-sxr