incubator-airflow/airflow/__main__.py

45 строки
1.3 KiB
Python
Исходник Обычный вид История

2014-10-13 02:31:26 +04:00
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK
#
# 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.
2020-03-23 00:01:06 +03:00
"""Main executable module"""
import os
2019-08-29 05:31:56 +03:00
import argcomplete
2020-03-23 00:01:06 +03:00
from airflow.cli import cli_parser
2019-08-29 05:31:56 +03:00
from airflow.configuration import conf
2014-11-06 09:44:19 +03:00
2020-03-23 00:01:06 +03:00
def main():
"""Main executable function"""
if conf.get("core", "security") == 'kerberos':
os.environ['KRB5CCNAME'] = conf.get('kerberos', 'ccache')
os.environ['KRB5_KTNAME'] = conf.get('kerberos', 'keytab')
2020-03-23 00:01:06 +03:00
parser = cli_parser.get_parser()
argcomplete.autocomplete(parser)
2014-10-13 02:31:26 +04:00
args = parser.parse_args()
args.func(args)
2020-03-23 00:01:06 +03:00
if __name__ == '__main__':
main()