You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/aks/ingress-static-ip.md
+8-15Lines changed: 8 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ You can also:
26
26
27
27
This article assumes that you have an existing AKS cluster. If you need an AKS cluster, see the AKS quickstart [using the Azure CLI][aks-quickstart-cli] or [using the Azure portal][aks-quickstart-portal].
28
28
29
-
This article uses Helm to install the NGINX ingress controller, cert-manager, and a sample web app. You need to have Helm initialized within your AKS cluster and using a service account for Tiller. Make sure that you are using the latest release of Helm 3. For upgrade instructions, see the [Helm install docs][helm-install]. For more information on configuring and using Helm, see [Install applications with Helm in Azure Kubernetes Service (AKS)][use-helm].
29
+
This article uses Helm to install the NGINX ingress controller, cert-manager, and a sample web app. Make sure that you are using the latest release of Helm. For upgrade instructions, see the [Helm install docs][helm-install]. For more information on configuring and using Helm, see [Install applications with Helm in Azure Kubernetes Service (AKS)][use-helm].
30
30
31
31
This article also requires that you are running the Azure CLI version 2.0.64 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI][azure-cli-install].
32
32
@@ -114,13 +114,10 @@ To install the cert-manager controller in an RBAC-enabled cluster, use the follo
114
114
115
115
```console
116
116
# Install the CustomResourceDefinition resources separately
Delete the releases with the `helm uninstall` command. The following example deletes the NGINX ingress deployment, certificate manager, and the two sample AKS hello world apps.
Delete the releases with the `helm delete` command. The following example deletes the NGINX ingress deployment, and the two sample AKS hello world apps.
Copy file name to clipboardExpand all lines: articles/hdinsight/hdinsight-hadoop-use-blob-storage.md
+15-13Lines changed: 15 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ ms.author: hrasheed
6
6
ms.reviewer: jasonh
7
7
ms.service: hdinsight
8
8
ms.topic: conceptual
9
-
ms.date: 11/01/2019
9
+
ms.date: 02/28/2020
10
10
---
11
11
12
12
# Use Azure storage with Azure HDInsight clusters
@@ -33,7 +33,7 @@ Sharing one blob container as the default file system for multiple clusters isn'
33
33
> [!NOTE]
34
34
> The Archive access tier is an offline tier that has a several hour retrieval latency and isn't recommended for use with HDInsight. For more information, see [Archive access tier](../storage/blobs/storage-blob-storage-tiers.md#archive-access-tier).
35
35
36
-
## Access files from the cluster
36
+
## Access files from within cluster
37
37
38
38
There are several ways you can access the files in Data Lake Storage from an HDInsight cluster. The URI scheme provides unencrypted access (with the *wasb:* prefix) and SSL encrypted access (with *wasbs*). We recommend using *wasbs* wherever possible, even when accessing data that lives inside the same region in Azure.
* To identify the complete path to the configured default store, navigate to:
@@ -127,6 +138,8 @@ LOCATION '/example/data/';
127
138
128
139
**HDFS** > **Configs** and enter `blob.core.windows.net` in the filter input box.
129
140
141
+
To obtain the path using Ambari REST API, see [Get the default storage](./hdinsight-hadoop-manage-ambari-rest-api.md#get-the-default-storage).
142
+
130
143
## Blob containers
131
144
132
145
To use blobs, you first create an [Azure Storage account](../storage/common/storage-create-storage-account.md). As part of this, you specify an Azure region where the storage account is created. The cluster and the storage account must be hosted in the same region. The Hive metastore SQL Server database and Apache Oozie metastore SQL Server database must also be located in the same region.
@@ -137,17 +150,6 @@ The default Blob container stores cluster-specific information such as job histo
While creating an HDInsight cluster, you specify the Azure Storage account you want to associate with it. In addition to this storage account, you can add additional storage accounts from the same Azure subscription or different Azure subscriptions during the creation process or after a cluster has been created. For instructions about adding additional storage accounts, see [Create HDInsight clusters](hdinsight-hadoop-provision-linux-clusters.md).
Copy file name to clipboardExpand all lines: articles/spring-cloud/spring-cloud-tutorial-prepare-app-deployment.md
+52-5Lines changed: 52 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,12 @@ ms.author: brendm
12
12
13
13
This quickstart shows how to prepare an existing Java Spring application for deployment to Azure Spring Cloud. If configured properly, Azure Spring Cloud provides robust services to monitor, scale, and update your Java Spring Cloud application.
14
14
15
+
Other examples explain how to deploy an application to Azure Spring Cloud when the POM file is configured.
16
+
*[Launch App using the Azure portal](spring-cloud-quickstart-launch-app-portal.md)
17
+
*[Launch App using the Azure CLI](spring-cloud-quickstart-launch-app-cli.md)
18
+
19
+
This article explains the required dependencies and how to add them to the POM file.
20
+
15
21
## Java Runtime version
16
22
17
23
Only Spring/Java applications can run in Azure Spring Cloud.
@@ -20,17 +26,19 @@ Azure Spring Cloud supports both Java 8 and Java 11. The hosting environment con
20
26
21
27
## Spring Boot and Spring Cloud versions
22
28
23
-
Azure Spring Cloud supports only Spring Boot apps. It supports both Spring Boot version 2.1 and version 2.2. The following table lists the supported Spring Boot and Spring Cloud combinations:
29
+
To prepare an existing Spring Boot application for deployment to Azure Spring Cloud include the Spring Boot and Spring Cloud dependencies in the application POM file as shown in the following sections.
30
+
31
+
Azure Spring Cloud supports only Spring Boot apps either Spring Boot version 2.1 or version 2.2. The following table lists the supported Spring Boot and Spring Cloud combinations:
24
32
25
33
Spring Boot version | Spring Cloud version
26
34
---|---
27
35
2.1 | Greenwich.RELEASE
28
36
2.2 | Hoxton.RELEASE
29
37
30
-
Verify that your pom.xml file has the correct Spring Boot and Spring Cloud dependencies based on your Spring Boot version.
31
-
32
38
### Dependencies for Spring Boot version 2.1
33
39
40
+
For Spring Boot version 2.1 add the following dependencies to the application POM file.
41
+
34
42
```xml
35
43
<!-- Spring Boot dependencies -->
36
44
<parent>
@@ -55,6 +63,8 @@ Verify that your pom.xml file has the correct Spring Boot and Spring Cloud depen
55
63
56
64
### Dependencies for Spring Boot version 2.2
57
65
66
+
For Spring Boot version 2.2 add the following dependencies to the application POM file.
67
+
58
68
```xml
59
69
<!-- Spring Boot dependencies -->
60
70
<parent>
@@ -79,7 +89,7 @@ Verify that your pom.xml file has the correct Spring Boot and Spring Cloud depen
79
89
80
90
## Azure Spring Cloud client dependency
81
91
82
-
Azure Spring Cloud hosts and manages Spring Cloud components for you. Such components include Spring Cloud Service Registry and Spring Cloud Config Server. Include the Azure Spring Cloud client library in your dependencies to allow communication with your Azure Spring Cloud service instance.
92
+
Azure Spring Cloud hosts and manages Spring Cloud components. The components include Spring Cloud Service Registry and Spring Cloud Config Server. Include the Azure Spring Cloud client library in your dependencies to allow communication with your Azure Spring Cloud service instance.
83
93
84
94
The following table lists the correct Azure Spring Cloud versions for your app that uses Spring Boot and Spring Cloud.
85
95
@@ -92,6 +102,8 @@ Include one of the following dependencies in your pom.xml file. Select the depen
92
102
93
103
### Dependency for Azure Spring Cloud version 2.1
94
104
105
+
For Spring Boot version 2.1 add the following dependency to the application POM file.
106
+
95
107
```xml
96
108
<dependency>
97
109
<groupId>com.microsoft.azure</groupId>
@@ -102,6 +114,8 @@ Include one of the following dependencies in your pom.xml file. Select the depen
102
114
103
115
### Dependency for Azure Spring Cloud version 2.2
104
116
117
+
For Spring Boot version 2.2 add the following dependency to the application POM file.
118
+
105
119
```xml
106
120
<dependency>
107
121
<groupId>com.microsoft.azure</groupId>
@@ -112,7 +126,33 @@ Include one of the following dependencies in your pom.xml file. Select the depen
112
126
113
127
## Other required dependencies
114
128
115
-
To enable the built-in features of Azure Spring Cloud, your application must include the following dependencies. This inclusion ensures that your application configures itself correctly with each component.
129
+
To enable the built-in features of Azure Spring Cloud, your application must include the following dependencies. This inclusion ensures that your application configures itself correctly with each component.
130
+
131
+
### EnableDiscoveryClient annotation
132
+
133
+
Add the following annotation to the application source code.
134
+
```java
135
+
@EnableDiscoveryClient
136
+
```
137
+
For example, see the piggymetrics application from earlier examples:
0 commit comments