Skip to content

Commit f5c2f0c

Browse files
docs: fix typo for "wasb" (#726)
* docs: fix typo in docs/faq/dags/airflow-connections.md Signed-off-by: Obeyda Djeffal <[email protected]> * docs: fix typo for "wasb" Signed-off-by: Mathew Wicks <[email protected]> --------- Signed-off-by: Obeyda Djeffal <[email protected]> Signed-off-by: Mathew Wicks <[email protected]> Co-authored-by: Mathew Wicks <[email protected]>
1 parent c53e706 commit f5c2f0c

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

charts/airflow/docs/faq/dags/airflow-connections.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -375,23 +375,23 @@ serviceAccount:
375375

376376
## Azure Blob Storage Connection
377377

378-
The `apache-airflow-providers-microsoft-azure` provider package contains the `"wabs"` connection type.
378+
The `apache-airflow-providers-microsoft-azure` provider package contains the `"wasb"` connection type.
379379

380-
The following are some options for defining [`"wabs"` type connections](https://airflow.apache.org/docs/apache-airflow-providers-microsoft-azure/stable/connections/wasb.html) using this chart.
380+
The following are some options for defining [`"wasb"` type connections](https://airflow.apache.org/docs/apache-airflow-providers-microsoft-azure/stable/connections/wasb.html) using this chart.
381381

382382
<details>
383383
<summary>
384384
<a id="azure-blob-storage-connection---plain-text"></a>
385385
<b>Option 1: Plain Text</b>
386386
</summary>
387387

388-
The following values will create a `"wabs"` type connection called `my_wabs` using a token stored in plain-text:
388+
The following values will create a `"wasb"` type connection called `my_wasb` using a token stored in plain-text:
389389

390390
```yaml
391391
airflow:
392392
connections:
393-
- id: my_wabs
394-
type: wabs
393+
- id: my_wasb
394+
type: wasb
395395
description: my Azure Blob Storage connection
396396
397397
## your `AZURE_CLIENT_ID`
@@ -422,13 +422,13 @@ airflow:
422422
<b>Option 2: Secret Templates (recommended)</b>
423423
</summary>
424424

425-
The following values will create a `"wabs"` type connection called `my_wabs` using a token stored in `Secret/my-wabs-token`:
425+
The following values will create a `"wasb"` type connection called `my_wasb` using a token stored in `Secret/my-wasb-token`:
426426

427427
```yaml
428428
airflow:
429429
connections:
430-
- id: my_wabs
431-
type: wabs
430+
- id: my_wasb
431+
type: wasb
432432
description: my Azure Blob Storage connection
433433
434434
## this string template is defined by `airflow.connectionsTemplates.CLIENT_ID`
@@ -444,32 +444,32 @@ airflow:
444444
}
445445
446446
connectionsTemplates:
447-
## extracts the value of AZURE_CLIENT_ID from `Secret/my-wabs-token`
447+
## extracts the value of AZURE_CLIENT_ID from `Secret/my-wasb-token`
448448
CLIENT_ID:
449449
kind: secret
450-
name: my-wabs-token
450+
name: my-wasb-token
451451
key: AZURE_CLIENT_ID
452452

453-
## extracts the value of AZURE_CLIENT_SECRET from `Secret/my-wabs-token`
453+
## extracts the value of AZURE_CLIENT_SECRET from `Secret/my-wasb-token`
454454
CLIENT_SECRET:
455455
kind: secret
456-
name: my-wabs-token
456+
name: my-wasb-token
457457
key: AZURE_CLIENT_SECRET
458458

459-
## extracts the value of AZURE_TENANT_ID from `Secret/my-wabs-token`
459+
## extracts the value of AZURE_TENANT_ID from `Secret/my-wasb-token`
460460
TENANT_ID:
461461
kind: secret
462-
name: my-wabs-token
462+
name: my-wasb-token
463463
key: AZURE_TENANT_ID
464464
```
465465
466466
> 🟦 __Tip__ 🟦
467467
>
468-
> You may create the `Secret` called `my-wabs-token` with `kubectl`.
468+
> You may create the `Secret` called `my-wasb-token` with `kubectl`.
469469
>
470470
> ```shell
471471
> kubectl create secret generic \
472-
> my-wabs-token \
472+
> my-wasb-token \
473473
> --from-literal=AZURE_CLIENT_ID='xxxxxxxxxxxxxxxxxxxx' \
474474
> --from-literal=AZURE_CLIENT_SECRET='xxxxxxxxxxxxxxxxxxxx' \
475475
> --from-literal=AZURE_TENANT_ID='xxxxxxxxxxxxxxxxxxxx' \
@@ -734,4 +734,4 @@ airflow:
734734
> --namespace my-airflow-namespace
735735
> ```
736736

737-
</details>
737+
</details>

charts/airflow/docs/faq/monitoring/log-persistence.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -194,17 +194,17 @@ The `apache-airflow-providers-microsoft-azure` provider supports [remote logging
194194

195195
> 🟦 __Tip__ 🟦
196196
>
197-
> A `wabs` type airflow connection called `my_wabs` must exist for this example,
197+
> A `wasb` type airflow connection called `my_wasb` must exist for this example,
198198
> see our [guide using `airflow.connections`](../dags/airflow-connections.md#azure-blob-storage-connection) to do this.
199199

200-
For example, to use Azure Blob Storage called `wasb-<<MY_NAME>>` with access provided by an Airflow Connection called `my_wabs`:
200+
For example, to use Azure Blob Storage called `wasb-<<MY_NAME>>` with access provided by an Airflow Connection called `my_wasb`:
201201

202202
```yaml
203203
airflow:
204204
config:
205205
AIRFLOW__LOGGING__REMOTE_LOGGING: "True"
206206
AIRFLOW__LOGGING__REMOTE_BASE_LOG_FOLDER: "wasb-<<MY_NAME>>"
207-
AIRFLOW__LOGGING__REMOTE_LOG_CONN_ID: "my_wabs"
207+
AIRFLOW__LOGGING__REMOTE_LOG_CONN_ID: "my_wasb"
208208
```
209209

210210
</details>

0 commit comments

Comments
 (0)