Skip to content

Commit acbca3e

Browse files
committed
corrected callout comments and regenerate charts
1 parent ebe8079 commit acbca3e

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

deploy/helm/airflow-operator/crds/crds.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ spec:
7979
nullable: true
8080
type: string
8181
listenerClass:
82-
description: This field controls which [ListenerClass](https://docs.stackable.tech/home/nightly/listener-operator/listenerclass.html) is used to expose the webserver.
82+
description: This field controls which [ListenerClass](https://docs.stackable.tech/home/nightly/listener-operator/listenerclass.html) is used to expose the airflow services.
8383
enum:
8484
- cluster-internal
8585
- external-unstable
@@ -304,7 +304,7 @@ spec:
304304
nullable: true
305305
type: string
306306
listenerClass:
307-
description: This field controls which [ListenerClass](https://docs.stackable.tech/home/nightly/listener-operator/listenerclass.html) is used to expose the webserver.
307+
description: This field controls which [ListenerClass](https://docs.stackable.tech/home/nightly/listener-operator/listenerclass.html) is used to expose the airflow services.
308308
enum:
309309
- cluster-internal
310310
- external-unstable
@@ -923,7 +923,7 @@ spec:
923923
nullable: true
924924
type: string
925925
listenerClass:
926-
description: This field controls which [ListenerClass](https://docs.stackable.tech/home/nightly/listener-operator/listenerclass.html) is used to expose the webserver.
926+
description: This field controls which [ListenerClass](https://docs.stackable.tech/home/nightly/listener-operator/listenerclass.html) is used to expose the airflow services.
927927
enum:
928928
- cluster-internal
929929
- external-unstable
@@ -1148,7 +1148,7 @@ spec:
11481148
nullable: true
11491149
type: string
11501150
listenerClass:
1151-
description: This field controls which [ListenerClass](https://docs.stackable.tech/home/nightly/listener-operator/listenerclass.html) is used to expose the webserver.
1151+
description: This field controls which [ListenerClass](https://docs.stackable.tech/home/nightly/listener-operator/listenerclass.html) is used to expose the airflow services.
11521152
enum:
11531153
- cluster-internal
11541154
- external-unstable
@@ -1354,7 +1354,7 @@ spec:
13541354
nullable: true
13551355
type: string
13561356
listenerClass:
1357-
description: This field controls which [ListenerClass](https://docs.stackable.tech/home/nightly/listener-operator/listenerclass.html) is used to expose the webserver.
1357+
description: This field controls which [ListenerClass](https://docs.stackable.tech/home/nightly/listener-operator/listenerclass.html) is used to expose the airflow services.
13581358
enum:
13591359
- cluster-internal
13601360
- external-unstable
@@ -1579,7 +1579,7 @@ spec:
15791579
nullable: true
15801580
type: string
15811581
listenerClass:
1582-
description: This field controls which [ListenerClass](https://docs.stackable.tech/home/nightly/listener-operator/listenerclass.html) is used to expose the webserver.
1582+
description: This field controls which [ListenerClass](https://docs.stackable.tech/home/nightly/listener-operator/listenerclass.html) is used to expose the airflow services.
15831583
enum:
15841584
- cluster-internal
15851585
- external-unstable

tests/templates/kuttl/external-access/50-access-airflow.txt.j2

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -75,25 +75,25 @@ data:
7575
script.sh: |
7676
set -euxo pipefail
7777

78-
echo "Attempting to reach master at $SCHEDULER_METRICS..."
78+
echo "Attempting to reach scheduler at $SCHEDULER_METRICS..."
7979
curl --retry 0 -f -s -o /dev/null -w "%{http_code}" "${SCHEDULER_METRICS}" | grep 200
8080

81-
echo "Attempting to reach master at $WORKER_0_METRICS..."
81+
echo "Attempting to reach worker at $WORKER_0_METRICS..."
8282
curl --retry 0 -f -s -o /dev/null -w "%{http_code}" "${WORKER_0_METRICS}" | grep 200
8383

84-
echo "Attempting to reach region-server at $WORKER_1_METRICS..."
84+
echo "Attempting to reach worker at $WORKER_1_METRICS..."
8585
curl --retry 0 -f -s -o /dev/null -w "%{http_code}" "${WORKER_1_METRICS}" | grep 200
8686

87-
echo "Attempting to reach rest-server at $WEBSERVER_DEFAULT_HTTP..."
87+
echo "Attempting to reach webserver at $WEBSERVER_DEFAULT_HTTP..."
8888
curl --retry 0 -f -s -o /dev/null -w "%{http_code}" "${WEBSERVER_DEFAULT_HTTP}" | grep 200
8989

90-
echo "Attempting to reach rest-server at $WEBSERVER_DEFAULT_METRICS..."
90+
echo "Attempting to reach webserver at $WEBSERVER_DEFAULT_METRICS..."
9191
curl --retry 0 -f -s -o /dev/null -w "%{http_code}" "${WEBSERVER_DEFAULT_METRICS}" | grep 200
9292

93-
echo "Attempting to reach rest-server at $WEBSERVER_EXTERNAL_HTTP..."
93+
echo "Attempting to reach webserver at $WEBSERVER_EXTERNAL_HTTP..."
9494
curl --retry 0 -f -s -o /dev/null -w "%{http_code}" "${WEBSERVER_EXTERNAL_HTTP}" | grep 200
9595

96-
echo "Attempting to reach rest-server at $WEBSERVER_EXTERNAL_METRICS..."
96+
echo "Attempting to reach webserver at $WEBSERVER_EXTERNAL_METRICS..."
9797
curl --retry 0 -f -s -o /dev/null -w "%{http_code}" "${WEBSERVER_EXTERNAL_METRICS}" | grep 200
9898

9999
echo "All tests successful!"

0 commit comments

Comments
 (0)