Skip to content

Commit 1103633

Browse files
jotamartosCarlos Rodríguez Hernández
and
Carlos Rodríguez Hernández
authoredNov 16, 2023
[bitnami/*] Remove relative links to non-README sections, add verification for that and update TL;DR section (#20967)
* [bitnami/*] Remove relative links to non-README sections and add verification Signed-off-by: Jota Martos <jotamartos@vmware.com> * Update Elasticsearch solution title Signed-off-by: Jota Martos <jotamartos@vmware.com> * Update .github/workflows/markdown-linter.yml Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com> * Move enterprise string to the tl;dr section Signed-off-by: Jota Martos <jotamartos@vmware.com> * Fix typo in some READMEs Signed-off-by: Jota Martos <jotamartos@vmware.com> * Replace placeholders in the TLDR section Signed-off-by: Jota Martos <jotamartos@vmware.com> * Fix typo in some READMEs Signed-off-by: Jota Martos <jotamartos@vmware.com> * Revert "Update Elasticsearch solution title" This reverts commit 9f437f9. --------- Signed-off-by: Jota Martos <jotamartos@vmware.com> Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com> Co-authored-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>
1 parent 05ab715 commit 1103633

File tree

108 files changed

+370
-577
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+370
-577
lines changed
 

‎.github/workflows/markdown-linter.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,13 @@ jobs:
3333
# Create an empty file, useful when the PR changes ignored files
3434
touch "${TEMP_OUTPUT}"
3535
exit_code=0
36+
for f in ${md_files}; do
37+
# Looking for links that do not start with https, # or img
38+
if grep --quiet --perl-regexp '\]\((?!(https|#|img))[^\)]*' $f; then
39+
echo "::error:: Please ensure all links in $f starts with https, # or img"
40+
exit 1
41+
fi
42+
done
3643
markdownlint -o "${TEMP_OUTPUT}" ${md_files[@]} || exit_code=$?
3744
while read -r line; do
3845
# line format:
@@ -53,4 +60,4 @@ jobs:
5360
if [[ $exit_code -ne 0 ]]; then
5461
echo "::error:: Please review linter messages"
5562
exit "$exit_code"
56-
fi
63+
fi

‎bitnami/airflow/README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,17 @@ Trademarks: This software listing is packaged by Bitnami. The respective tradema
1111
## TL;DR
1212

1313
```console
14-
helm install my-release oci://REGISTRY_NAME/REPOSITORY_NAME/airflow
14+
helm install my-release oci://registry-1.docker.io/bitnamicharts/airflow
1515
```
1616

17-
> Note: You need to substitute the placeholders `REGISTRY_NAME` and `REPOSITORY_NAME` with a reference to your Helm chart registry and repository. For example, in the case of Bitnami, you need to use `REGISTRY_NAME=registry-1.docker.io` and `REPOSITORY_NAME=bitnamicharts`.
17+
Looking to use Apache Airflow in production? Try [VMware Tanzu Application Catalog](https://bitnami.com/enterprise), the enterprise edition of Bitnami Application Catalog.
1818

1919
## Introduction
2020

2121
This chart bootstraps an [Apache Airflow](https://github.com/bitnami/containers/tree/main/bitnami/airflow) deployment on a [Kubernetes](https://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager.
2222

2323
Bitnami charts can be used with [Kubeapps](https://kubeapps.dev/) for deployment and management of Helm Charts in clusters.
2424

25-
Looking to use Apache Airflow in production? Try [VMware Tanzu Application Catalog](https://bitnami.com/enterprise), the enterprise edition of Bitnami Application Catalog.
26-
2725
## Prerequisites
2826

2927
- Kubernetes 1.23+
@@ -521,7 +519,7 @@ helm install my-release -f values.yaml oci://REGISTRY_NAME/REPOSITORY_NAME/airfl
521519
```
522520

523521
> Note: You need to substitute the placeholders `REGISTRY_NAME` and `REPOSITORY_NAME` with a reference to your Helm chart registry and repository. For example, in the case of Bitnami, you need to use `REGISTRY_NAME=registry-1.docker.io` and `REPOSITORY_NAME=bitnamicharts`.
524-
> **Tip**: You can use the default [values.yaml](values.yaml)
522+
> **Tip**: You can use the default [values.yaml](https://github.com/bitnami/charts/tree/main/bitnami/airflow/values.yaml)
525523
526524
## Configuration and installation details
527525

0 commit comments

Comments
 (0)
Please sign in to comment.