forked from apache/airflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AIRFLOW-227] Show running config in config view
Right now the config page (when set to display) just loads the airflow.cfg and lists that. So any configuration values that are set via an environment variable are not shown. This patch makes all configuration values which are loaded via any means shown, only if expose_config is set to true. Closes apache#1597 from sekikn/AIRFLOW-227
- Loading branch information
Showing
3 changed files
with
80 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
{# | ||
Licensed to the Apache Software Foundation (ASF) under one or more | ||
contributor license agreements. See the NOTICE file distributed with | ||
this work for additional information regarding copyright ownership. | ||
The ASF licenses this file to You under the Apache License, Version 2.0 | ||
(the "License"); you may not use this file except in compliance with | ||
the License. You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
|
||
#} | ||
{% extends "airflow/master.html" %} | ||
|
||
{% block title %} | ||
{{ title }} | ||
{% endblock %} | ||
|
||
{% block body %} | ||
{{ super() }} | ||
<h2>{{ title }}</h2> | ||
|
||
{% if pre_subtitle %} | ||
<pre>{{ pre_subtitle }}</pre> | ||
{% endif %} | ||
|
||
{% if subtitle %} | ||
<h5>{{ subtitle }}</h5> | ||
{% endif %} | ||
|
||
{% if code %} | ||
<pre>{{ code }}</pre> | ||
{% endif %} | ||
|
||
{% if code_html %} | ||
{{ code_html|safe }} | ||
{% endif %} | ||
|
||
<hr> | ||
|
||
{% if table %} | ||
<br> | ||
<h3>Running Configuration</h3> | ||
<br> | ||
<div> | ||
<table class="table table-striped table-bordered"> | ||
<tr> | ||
<th>Section</th> | ||
<th>Key</th> | ||
<th>Value</th> | ||
<th>Source</th> | ||
</tr> | ||
{% for section, key, value, source in table %} | ||
<tr> | ||
<td>{{ section }}</td> | ||
<td>{{ key }}</td> | ||
<td class='code'>{{ value }}</td> | ||
<td>{{ source }}</td> | ||
</tr> | ||
{% endfor %} | ||
</table> | ||
</div> | ||
{% endif %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters