Skip to content
This repository was archived by the owner on Feb 16, 2024. It is now read-only.

Commit fed94ca

Browse files
sbernaueradwk67
andcommitted
update demos for 23.7 (#269)
## Description Fixes stackabletech/issues#402 N.B. DO NOT MERGE UNTIL AFTER RELEASE-23.7!! Keep this PR open until after the release so that e.g. versions 0.0.0-dev can be replaced with 23.7 Co-authored-by: Andrew Kenworthy <[email protected]>
1 parent a98f4f2 commit fed94ca

Some content is hidden

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

49 files changed

+167
-196
lines changed

demos/data-lakehouse-iceberg-trino-spark/create-trino-tables.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ spec:
1818
volumeMounts:
1919
- name: script
2020
mountPath: /tmp/script
21-
- name: trino-credentials
22-
mountPath: /trino-credentials
21+
- name: trino-users
22+
mountPath: /trino-users
2323
volumes:
2424
- name: script
2525
configMap:
2626
name: create-tables-in-trino-script
27-
- name: trino-credentials
27+
- name: trino-users
2828
secret:
29-
secretName: trino-credentials
29+
secretName: trino-users
3030
restartPolicy: OnFailure
3131
backoffLimit: 50
3232
---
@@ -49,7 +49,7 @@ data:
4949
port=8443,
5050
user="admin",
5151
http_scheme='https',
52-
auth=trino.auth.BasicAuthentication("admin", open("/trino-credentials/admin").read()),
52+
auth=trino.auth.BasicAuthentication("admin", open("/trino-users/admin").read()),
5353
)
5454
connection._http_session.verify = False
5555
return connection

demos/data-lakehouse-iceberg-trino-spark/load-test-data.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spec:
1010
- name: load-test-data
1111
image: "bitnami/minio:2022-debian-10"
1212
# Please try to order the load jobs from small to large datasets
13-
command: ["bash", "-c", "mc --insecure alias set minio http://minio:9000/ $(cat /minio-s3-credentials/accessKey) $(cat /minio-s3-credentials/secretKey) && cd /tmp && curl -O https://repo.stackable.tech/repository/misc/datasets/open-postcode-geo/open-postcode-geo.csv && mc cp open-postcode-geo.csv minio/staging/house-sales/postcode-geo-lookup/ && rm open-postcode-geo.csv && for year in {2005..2021}; do curl -O https://repo.stackable.tech/repository/misc/datasets/uk-house-sales/uk-house-sales-$year.csv && mc cp uk-house-sales-$year.csv minio/staging/house-sales/house-sales/ && rm uk-house-sales-$year.csv; done && curl -O https://repo.stackable.tech/repository/misc/earthquake-data/earthquakes_1950_to_2022.csv && mc cp earthquakes_1950_to_2022.csv minio/staging/earthquakes/earthquakes/ && rm earthquakes_1950_to_2022.csv && curl -O https://repo.stackable.tech/repository/misc/datasets/e-charging-stations/e-charging-stations-2022-08.csv && mc cp e-charging-stations-2022-08.csv minio/staging/smart-city/e-charging-stations/ && rm e-charging-stations-2022-08.csv && curl -O https://repo.stackable.tech/repository/misc/ny-taxi-data/taxi_zone_lookup.csv && mc cp taxi_zone_lookup.csv minio/staging/taxi/taxi-zone-lookup/ && rm taxi_zone_lookup.csv && curl -O https://repo.stackable.tech/repository/misc/ny-taxi-data/rate_code_lookup.csv && mc cp rate_code_lookup.csv minio/staging/taxi/rate-code-lookup/ && rm rate_code_lookup.csv && curl -O https://repo.stackable.tech/repository/misc/ny-taxi-data/payment_type_lookup.csv && mc cp payment_type_lookup.csv minio/staging/taxi/payment-type-lookup/ && rm payment_type_lookup.csv && for month in 2021-01 2021-02 2021-03 2021-04 2021-05 2021-06 2021-07 2021-08 2021-09 2021-10 2021-11 2021-12 2022-01 2022-02 2022-03 2022-04 2022-05 2022-06; do curl -O https://repo.stackable.tech/repository/misc/ny-taxi-data/green_tripdata_$month.parquet && mc cp green_tripdata_$month.parquet minio/staging/taxi/green-tripdata/ && rm green_tripdata_$month.parquet; done && for month in 2015-01 2015-02 2015-03 2015-04 2015-05 2015-06 2015-07 2015-08 2015-09 2015-10 2015-11 2015-12 2016-01 2016-02 2016-03 2016-04 2016-05 2016-06 2016-07 2016-08 2016-09 2016-10 2016-11 2016-12 2017-01 2017-02 2017-03 2017-04 2017-05 2017-06 2017-07 2017-08 2017-09 2017-10 2017-11 2017-12 2018-01 2018-02 2018-03 2018-04 2018-05 2018-06 2018-07 2018-08 2018-09 2018-10 2018-11 2018-12 2019-01 2019-02 2019-03 2019-04 2019-05 2019-06 2019-07 2019-08 2019-09 2019-10 2019-11 2019-12 2020-01 2020-02 2020-03 2020-04 2020-05 2020-06 2020-07 2020-08 2020-09 2020-10 2020-11 2020-12 2021-01 2021-02 2021-03 2021-04 2021-05 2021-06 2021-07 2021-08 2021-09 2021-10 2021-11 2021-12 2022-01 2022-02 2022-03 2022-04 2022-05 2022-06; do curl -O https://repo.stackable.tech/repository/misc/ny-taxi-data/yellow_tripdata_$month.parquet && mc cp yellow_tripdata_$month.parquet minio/staging/taxi/yellow-tripdata/ && rm yellow_tripdata_$month.parquet; done && for month in 2020-09 2020-10 2020-11 2020-12 2021-01 2021-02 2021-03 2021-04 2021-05 2021-06 2021-07 2021-08 2021-09 2021-10 2021-11 2021-12 2022-01 2022-02 2022-03 2022-04 2022-05 2022-06; do curl -O https://repo.stackable.tech/repository/misc/ny-taxi-data/fhvhv_tripdata_$month.parquet && mc cp fhvhv_tripdata_$month.parquet minio/staging/taxi/fhvhv-tripdata/ && rm fhvhv_tripdata_$month.parquet; done"]
13+
command: ["bash", "-c", "mc --insecure alias set minio http://minio:9000/ $(cat /minio-s3-credentials/accessKey) $(cat /minio-s3-credentials/secretKey) && cd /tmp && curl -O https://repo.stackable.tech/repository/misc/datasets/open-postcode-geo/open-postcode-geo.csv && mc cp open-postcode-geo.csv minio/staging/house-sales/postcode-geo-lookup/ && rm open-postcode-geo.csv && for year in {2005..2021}; do curl -O https://repo.stackable.tech/repository/misc/datasets/uk-house-sales/uk-house-sales-$year.csv && mc cp uk-house-sales-$year.csv minio/staging/house-sales/house-sales/ && rm uk-house-sales-$year.csv; done && curl -O https://repo.stackable.tech/repository/misc/earthquake-data/earthquakes_1950_to_2022.csv && mc cp earthquakes_1950_to_2022.csv minio/staging/earthquakes/earthquakes/ && rm earthquakes_1950_to_2022.csv && curl -O https://repo.stackable.tech/repository/misc/datasets/e-charging-stations/e-charging-stations-2022-08.csv && mc cp e-charging-stations-2022-08.csv minio/staging/smart-city/e-charging-stations/ && rm e-charging-stations-2022-08.csv && curl -O https://repo.stackable.tech/repository/misc/ny-taxi-data/taxi_zone_lookup.csv && mc cp taxi_zone_lookup.csv minio/staging/taxi/taxi-zone-lookup/ && rm taxi_zone_lookup.csv && curl -O https://repo.stackable.tech/repository/misc/ny-taxi-data/rate_code_lookup.csv && mc cp rate_code_lookup.csv minio/staging/taxi/rate-code-lookup/ && rm rate_code_lookup.csv && curl -O https://repo.stackable.tech/repository/misc/ny-taxi-data/payment_type_lookup.csv && mc cp payment_type_lookup.csv minio/staging/taxi/payment-type-lookup/ && rm payment_type_lookup.csv && for month in 2021-01 2021-02 2021-03 2021-04 2021-05 2021-06 2021-07 2021-08 2021-09 2021-10 2021-11 2021-12 2022-01 2022-02 2022-03 2022-04 2022-05 2022-06; do curl -O https://repo.stackable.tech/repository/misc/ny-taxi-data/green_tripdata_$month.parquet && mc cp green_tripdata_$month.parquet minio/staging/taxi/green-tripdata/ && rm green_tripdata_$month.parquet; done && for month in 2015-01 2015-02 2015-03 2015-04 2015-05 2015-06 2015-07 2015-08 2015-09 2015-10 2015-11 2015-12 2016-01 2016-02 2016-03 2016-04 2016-05 2016-06 2016-07 2016-08 2016-09 2016-10 2016-11 2016-12 2017-01 2017-02 2017-03 2017-04 2017-05 2017-06 2017-07 2017-08 2017-09 2017-10 2017-11 2017-12 2018-01 2018-02 2018-03 2018-04 2018-05 2018-06 2018-07 2018-08 2018-09 2018-10 2018-11 2018-12 2019-01 2019-02 2019-03 2019-04 2019-05 2019-06 2019-07 2019-08 2019-09 2019-10 2019-11 2019-12 2020-01 2020-02 2020-03 2020-04 2020-05 2020-06 2020-07 2020-08 2020-09 2020-10 2020-11 2020-12 2021-01 2021-02 2021-03 2021-04 2021-05 2021-06 2021-07 2021-08 2021-09 2021-10 2021-11 2021-12 2022-01 2022-02 2022-03 2022-04 2022-05 2022-06 2022-07 2022-08 2022-09 2022-10 2022-11 2022-12 2023-01 2023-02 2023-03 2023-04; do curl -O https://repo.stackable.tech/repository/misc/ny-taxi-data/yellow_tripdata_$month.parquet && mc cp yellow_tripdata_$month.parquet minio/staging/taxi/yellow-tripdata/ && rm yellow_tripdata_$month.parquet; done && for month in 2020-09 2020-10 2020-11 2020-12 2021-01 2021-02 2021-03 2021-04 2021-05 2021-06 2021-07 2021-08 2021-09 2021-10 2021-11 2021-12 2022-01 2022-02 2022-03 2022-04 2022-05 2022-06; do curl -O https://repo.stackable.tech/repository/misc/ny-taxi-data/fhvhv_tripdata_$month.parquet && mc cp fhvhv_tripdata_$month.parquet minio/staging/taxi/fhvhv-tripdata/ && rm fhvhv_tripdata_$month.parquet; done"]
1414
volumeMounts:
1515
- name: minio-s3-credentials
1616
mountPath: /minio-s3-credentials

demos/data-lakehouse-iceberg-trino-spark/setup-superset.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ spec:
1313
volumeMounts:
1414
- name: script
1515
mountPath: /tmp/script
16-
- name: trino-credentials
17-
mountPath: /trino-credentials
16+
- name: trino-users
17+
mountPath: /trino-users
1818
- name: superset-credentials
1919
mountPath: /superset-credentials
2020
volumes:
@@ -24,9 +24,9 @@ spec:
2424
- name: superset-credentials
2525
secret:
2626
secretName: superset-credentials
27-
- name: trino-credentials
27+
- name: trino-users
2828
secret:
29-
secretName: trino-credentials
29+
secretName: trino-users
3030
restartPolicy: OnFailure
3131
backoffLimit: 50
3232
---
@@ -43,7 +43,7 @@ data:
4343
superset_username = open("/superset-credentials/adminUser.username").read()
4444
superset_password = open("/superset-credentials/adminUser.password").read()
4545
trino_username = "admin"
46-
trino_password = open("/trino-credentials/admin").read()
46+
trino_password = open("/trino-users/admin").read()
4747
4848
logging.basicConfig(level=logging.INFO)
4949
logging.info("Starting setup of Superset")

demos/logging/zookeeper.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
spec:
77
image:
88
productVersion: 3.8.0
9-
stackableVersion: "23.4"
9+
stackableVersion: "23.7"
1010
clusterConfig:
1111
logging:
1212
vectorAggregatorConfigMapName: vector-aggregator-discovery

demos/spark-k8s-anomaly-detection-taxi-data/setup-superset.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ spec:
1313
volumeMounts:
1414
- name: script
1515
mountPath: /tmp/script
16-
- name: trino-credentials
17-
mountPath: /trino-credentials
16+
- name: trino-users
17+
mountPath: /trino-users
1818
- name: superset-credentials
1919
mountPath: /superset-credentials
2020
volumes:
@@ -24,9 +24,9 @@ spec:
2424
- name: superset-credentials
2525
secret:
2626
secretName: superset-credentials
27-
- name: trino-credentials
27+
- name: trino-users
2828
secret:
29-
secretName: trino-credentials
29+
secretName: trino-users
3030
restartPolicy: OnFailure
3131
backoffLimit: 50
3232
---
@@ -43,7 +43,7 @@ data:
4343
superset_username = open("/superset-credentials/adminUser.username").read()
4444
superset_password = open("/superset-credentials/adminUser.password").read()
4545
trino_username = "admin"
46-
trino_password = open("/trino-credentials/admin").read()
46+
trino_password = open("/trino-users/admin").read()
4747
4848
logging.basicConfig(level=logging.INFO)
4949
logging.info("Starting setup of Superset")

demos/trino-taxi-data/create-table-in-trino.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ spec:
1313
volumeMounts:
1414
- name: script
1515
mountPath: /tmp/script
16-
- name: trino-credentials
17-
mountPath: /trino-credentials
16+
- name: trino-users
17+
mountPath: /trino-users
1818
volumes:
1919
- name: script
2020
configMap:
2121
name: create-ny-taxi-data-table-in-trino-script
22-
- name: trino-credentials
22+
- name: trino-users
2323
secret:
24-
secretName: trino-credentials
24+
secretName: trino-users
2525
restartPolicy: OnFailure
2626
backoffLimit: 50
2727
---
@@ -44,7 +44,7 @@ data:
4444
port=8443,
4545
user="admin",
4646
http_scheme='https',
47-
auth=trino.auth.BasicAuthentication("admin", open("/trino-credentials/admin").read()),
47+
auth=trino.auth.BasicAuthentication("admin", open("/trino-users/admin").read()),
4848
)
4949
connection._http_session.verify = False
5050
return connection

demos/trino-taxi-data/setup-superset.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ spec:
1313
volumeMounts:
1414
- name: script
1515
mountPath: /tmp/script
16-
- name: trino-credentials
17-
mountPath: /trino-credentials
16+
- name: trino-users
17+
mountPath: /trino-users
1818
- name: superset-credentials
1919
mountPath: /superset-credentials
2020
volumes:
@@ -24,9 +24,9 @@ spec:
2424
- name: superset-credentials
2525
secret:
2626
secretName: superset-credentials
27-
- name: trino-credentials
27+
- name: trino-users
2828
secret:
29-
secretName: trino-credentials
29+
secretName: trino-users
3030
restartPolicy: OnFailure
3131
backoffLimit: 50
3232
---
@@ -43,7 +43,7 @@ data:
4343
superset_username = open("/superset-credentials/adminUser.username").read()
4444
superset_password = open("/superset-credentials/adminUser.password").read()
4545
trino_username = "admin"
46-
trino_password = open("/trino-credentials/admin").read()
46+
trino_password = open("/trino-users/admin").read()
4747
4848
logging.basicConfig(level=logging.INFO)
4949
logging.info("Starting setup of Superset")

docs/modules/ROOT/pages/demos/trino-iceberg.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ java -jar ~/Downloads/trino-cli-396-executable.jar --user admin --insecure --pas
6565
----
6666

6767
Make sure to replace the server endpoint with the endpoint listed in the `stackablectl services list` output.
68+
When prompted enter the password `adminadmin`.
6869

6970
== Create testdata
7071
=== Create Schema

stacks/_templates/minio-distributed-small.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: minio
33
repo:
44
name: minio
55
url: https://charts.min.io/
6-
version: 5.0.8
6+
version: 5.0.13
77
options:
88
rootUser: admin
99
rootPassword: {{ minioAdminPassword }}

stacks/_templates/minio-distributed.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: minio
33
repo:
44
name: minio
55
url: https://charts.min.io/
6-
version: 5.0.8
6+
version: 5.0.13
77
options:
88
rootUser: admin
99
rootPassword: {{ minioAdminPassword }}

stacks/_templates/minio.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: minio
33
repo:
44
name: minio
55
url: https://charts.min.io/
6-
version: 5.0.8
6+
version: 5.0.13
77
options:
88
rootUser: admin
99
rootPassword: {{ minioAdminPassword }}

stacks/_templates/opensearch-dashboards.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: opensearch-dashboards
33
repo:
44
name: opensearch-dashboards
55
url: https://opensearch-project.github.io/helm-charts
6-
version: 2.9.2
6+
version: 2.11.1
77
options:
88
service:
99
type: NodePort

stacks/_templates/opensearch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: opensearch
33
repo:
44
name: opensearch
55
url: https://opensearch-project.github.io/helm-charts
6-
version: 2.11.3
6+
version: 2.13.3
77
options:
88
config:
99
opensearch.yml: |

stacks/_templates/postgresql-airflow.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,7 @@ name: postgresql
33
repo:
44
name: bitnami
55
url: https://charts.bitnami.com/bitnami/
6-
# helm search repo bitnami/postgresql --versions
7-
# bitnami/postgresql 12.2.8 15.2.0 PostgreSQL (Postgres) is an open source object-
8-
#
9-
# https://airflow.apache.org/docs/apache-airflow/2.4.1/howto/set-up-database.html
10-
# Airflow 2.4.1 supports PostgreSQL: 10, 11, 12, 13, seems to work anyway
11-
version: 12.2.8
6+
version: 12.6.6
127
options:
138
auth:
149
username: airflow

stacks/_templates/postgresql-druid.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ name: postgresql
33
repo:
44
name: bitnami
55
url: https://charts.bitnami.com/bitnami/
6-
# helm search repo bitnami/postgresql --versions
7-
# bitnami/postgresql 12.2.8 15.2.0 PostgreSQL (Postgres) is an open source object-
8-
version: 12.2.8
6+
version: 12.6.6
97
options:
108
auth:
119
username: druid

stacks/_templates/postgresql-hive-iceberg.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ name: postgresql
33
repo:
44
name: bitnami
55
url: https://charts.bitnami.com/bitnami/
6-
# helm search repo bitnami/postgresql --versions
7-
# bitnami/postgresql 12.2.8 15.2.0 PostgreSQL (Postgres) is an open source object-
8-
version: 12.2.8
6+
version: 12.6.6
97
options:
108
auth:
119
username: hive

stacks/_templates/postgresql-hive.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ name: postgresql
33
repo:
44
name: bitnami
55
url: https://charts.bitnami.com/bitnami/
6-
# helm search repo bitnami/postgresql --versions
7-
# bitnami/postgresql 12.2.8 15.2.0 PostgreSQL (Postgres) is an open source object-
8-
version: 12.2.8
6+
version: 12.6.6
97
options:
108
auth:
119
username: hive

stacks/_templates/postgresql-hivehdfs.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ name: postgresql
33
repo:
44
name: bitnami
55
url: https://charts.bitnami.com/bitnami/
6-
# helm search repo bitnami/postgresql --versions
7-
# bitnami/postgresql 12.2.8 15.2.0 PostgreSQL (Postgres) is an open source object-
8-
version: 12.2.8
6+
version: 12.6.6
97
options:
108
auth:
119
username: hive

stacks/_templates/postgresql-hives3.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ name: postgresql
33
repo:
44
name: bitnami
55
url: https://charts.bitnami.com/bitnami/
6-
# helm search repo bitnami/postgresql --versions
7-
# bitnami/postgresql 12.2.8 15.2.0 PostgreSQL (Postgres) is an open source object-
8-
version: 12.2.8
6+
version: 12.6.6
97
options:
108
auth:
119
username: hive

stacks/_templates/postgresql-superset.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ name: postgresql
33
repo:
44
name: bitnami
55
url: https://charts.bitnami.com/bitnami/
6-
# helm search repo bitnami/postgresql --versions
7-
# bitnami/postgresql 12.2.8 15.2.0 PostgreSQL (Postgres) is an open source object-
8-
version: 12.2.8
6+
version: 12.6.6
97
options:
108
auth:
119
username: superset

stacks/_templates/prometheus.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: kube-prometheus-stack
33
repo:
44
name: prometheus-community
55
url: https://prometheus-community.github.io/helm-charts
6-
version: 45.10.1
6+
version: 48.1.1
77
options:
88
prometheus:
99
prometheusSpec:

stacks/_templates/redis-airflow.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@ name: redis
33
repo:
44
name: bitnami
55
url: https://charts.bitnami.com/bitnami/
6-
# helm search repo bitnami/redis --versions
7-
# NAME CHART VERSION APP VERSION DESCRIPTION
8-
# bitnami/redis 17.9.5 7.0.11 Redis(R) is an open source, advanced key-value ...
9-
version: 17.9.5
6+
version: 17.13.2
107
options:
118
auth:
129
password: airflow

stacks/_templates/vector-aggregator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: vector
33
repo:
44
name: vector
55
url: https://helm.vector.dev
6-
version: 0.21.0
6+
version: 0.23.0
77
options:
88
role: Aggregator
99
customConfig:

stacks/airflow/airflow.yaml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,28 @@ metadata:
66
name: airflow
77
spec:
88
image:
9-
productVersion: 2.4.1
10-
stackableVersion: "23.4"
9+
productVersion: 2.6.1
10+
stackableVersion: "23.7"
1111
clusterConfig:
1212
listenerClass: external-unstable
13-
executor: CeleryExecutor
14-
loadExamples: false
15-
exposeConfig: false
16-
credentialsSecret: airflow-credentials
17-
volumes:
18-
- name: airflow-dags
19-
configMap:
20-
name: airflow-dags
21-
volumeMounts:
22-
- name: airflow-dags
23-
mountPath: /dags/date_demo.py
24-
subPath: date_demo.py
25-
- name: airflow-dags
26-
mountPath: /dags/pyspark_pi.py
27-
subPath: pyspark_pi.py
28-
- name: airflow-dags
29-
mountPath: /dags/pyspark_pi.yaml
30-
subPath: pyspark_pi.yaml
13+
executor: CeleryExecutor
14+
loadExamples: false
15+
exposeConfig: false
16+
credentialsSecret: airflow-credentials
17+
volumes:
18+
- name: airflow-dags
19+
configMap:
20+
name: airflow-dags
21+
volumeMounts:
22+
- name: airflow-dags
23+
mountPath: /dags/date_demo.py
24+
subPath: date_demo.py
25+
- name: airflow-dags
26+
mountPath: /dags/pyspark_pi.py
27+
subPath: pyspark_pi.py
28+
- name: airflow-dags
29+
mountPath: /dags/pyspark_pi.yaml
30+
subPath: pyspark_pi.yaml
3131
webservers:
3232
roleGroups:
3333
default:

0 commit comments

Comments
 (0)