You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Helm Diff shows an error in Airflow Helm with .Values.config.logging.remote_logging because it expects a string instead of bool
Error
Error: Failed to render chart: exit status 1: Error: template: airflow/templates/NOTES.txt:135:73: executing "airflow/templates/NOTES.txt" at <.Values.config.logging.remote_logging>: wrong type for value; expected string; got bool
My config is:
config:
core:
hostname_callable: airflow.utils.net.get_host_ip_addresscelery:
flower_url_prefix: ''# Default value "/" was making it does not workworker_concurrency: 5logging:
remote_base_log_folder: s3://XXXXXremote_log_conn_id: aws_defaultencrypt_s3_logs: falseremote_logging: true
remote_logging only is rendered if I put "true" or "True" (string) instead of bool
The text was updated successfully, but these errors were encountered:
Summary
Helm Diff shows an error in Airflow Helm with
.Values.config.logging.remote_logging
because it expects a string instead of boolError
Error: Failed to render chart: exit status 1: Error: template: airflow/templates/NOTES.txt:135:73: executing "airflow/templates/NOTES.txt" at <.Values.config.logging.remote_logging>: wrong type for value; expected string; got bool
My config is:
remote_logging
only is rendered if I put "true" or "True" (string) instead of boolThe text was updated successfully, but these errors were encountered: