Skip to content

Commit 0e74473

Browse files
committed
Fix typo
Oauth -> OAuth
1 parent cbe6d55 commit 0e74473

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/hdinsight-aks/trino/configure-ingress.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@ This article describes how to expose Apache Superset to the Internet.
2323

2424
## Setup ingress
2525

26-
The following instructions add a second layer of authentication in the form of an Oauth authorization proxy using Oauth2Proxy. This layer means that no unauthorized clients reach the Superset application.
26+
The following instructions add a second layer of authentication in the form of an OAuth authorization proxy using Oauth2Proxy. This layer means that no unauthorized clients reach the Superset application.
2727

2828
1. Add the following secrets to your Key Vault.
2929

3030
|Secret Name|Description|
3131
|-|-|
32-
|client-id|Your Azure service principal client ID. Oauth proxy requires this ID to be a secret.|
33-
|oauth2proxy-redis-password|Proxy cache password. The password used by the Oauth proxy to access the back end Redis deployment instance on Kubernetes. Generate a strong password.|
32+
|client-id|Your Azure service principal client ID. OAuth proxy requires this ID to be a secret.|
33+
|oauth2proxy-redis-password|Proxy cache password. The password used by the OAuth proxy to access the back end Redis deployment instance on Kubernetes. Generate a strong password.|
3434
|oauth2proxy-cookie-secret|32 character cookie secret, used to encrypt the cookie data. This secret must be 32 characters long.|
3535

3636
1. Add these callbacks in your Superset Azure AD application configuration.
3737

3838
* `https://{{superset_hostname}}/oauth2/callback`
39-
* for Oauth2 Proxy
39+
* for OAuth2 Proxy
4040
* `https://{{superset_hostname}}/oauth-authorized/azure`
4141
* for Superset
4242

@@ -157,7 +157,7 @@ The following instructions add a second layer of authentication in the form of a
157157
objectName: oauth2proxy-redis-password
158158
```
159159

160-
1. Create configuration for the Oauth Proxy.
160+
1. Create configuration for the OAuth Proxy.
161161

162162
Update in the following yaml:
163163
* `{{superset_hostname}}` - the internet facing hostname chosen in [hostname selection](#hostname-selection)
@@ -173,7 +173,7 @@ The following instructions add a second layer of authentication in the form of a
173173
# due to the fact that it doesn't query an actual cluster
174174
kubeVersion:
175175
176-
# Oauth client configuration specifics
176+
# OAuth client configuration specifics
177177
config:
178178
# OAuth client secret
179179
existingSecret: oauth2-secret
@@ -252,7 +252,7 @@ The following instructions add a second layer of authentication in the form of a
252252
checkDeprecation: true
253253
```
254254

255-
1. Deploy Oauth proxy resources.
255+
1. Deploy OAuth proxy resources.
256256

257257
```bash
258258
kubectl apply -f oauth2-secretprovider.yaml
@@ -283,14 +283,14 @@ The following instructions add a second layer of authentication in the form of a
283283

284284
1. Enter the DNS name label with the `<superset-instance-name>` defined in [hostname selection](#hostname-selection).
285285

286-
1. Verify that your ingress for Oauth is configured.
286+
1. Verify that your ingress for OAuth is configured.
287287

288288
Run `kubectl get ingress` to see the two ingresses created `azure-trino-superset` and `oauth2-oauth2-proxy`. The IP address matches the Public IP from the previous step.
289289

290290
Likewise, when running `kubectl get services` you should see that `ingress-nginx-controller` has been assigned an `EXTERNAL-IP`.
291291

292292
> [!TIP]
293-
> You can open `http://{{superset_hostname}}/oauth2` to test that the Oauth path is working.
293+
> You can open `http://{{superset_hostname}}/oauth2` to test that the OAuth path is working.
294294

295295
1. Define an ingress to provide access to Superset, but redirect all unauthorized calls to `/oauth`.
296296

0 commit comments

Comments
 (0)