airflow registry 源码

  • 2022-10-20
  • 浏览 (268)

airflow registry 代码

文件路径:/dev/breeze/src/airflow_breeze/utils/registry.py

# 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.
from __future__ import annotations

import os

from airflow_breeze.params.common_build_params import CommonBuildParams
from airflow_breeze.utils.console import Output, get_console
from airflow_breeze.utils.run_utils import run_command


def login_to_github_docker_registry(
    image_params: CommonBuildParams, output: Output | None, dry_run: bool, verbose: bool
) -> tuple[int, str]:
    """
    In case of CI environment, we need to login to GitHub Registry.

    :param image_params: parameters to use for Building prod image
    :param output: Output to redirect to
    :param dry_run: whether we are in dry_run mode
    :param verbose: whether to show commands.
    """
    if os.environ.get("CI"):
        if len(image_params.github_token) == 0:
            get_console(output=output).print(
                "\n[info]Skip logging in to GitHub Registry. No Token available!"
            )
        elif len(image_params.github_token) > 0:
            run_command(
                ['docker', 'logout', 'ghcr.io'],
                dry_run=dry_run,
                verbose=verbose,
                output=output,
                text=False,
                check=False,
            )
            command_result = run_command(
                [
                    'docker',
                    'login',
                    '--username',
                    image_params.github_username,
                    '--password-stdin',
                    'ghcr.io',
                ],
                verbose=verbose,
                output=output,
                text=True,
                input=image_params.github_token,
                check=False,
            )
            return command_result.returncode, "Docker login"
        else:
            get_console().print('\n[info]Skip Login to GitHub Container Registry as token is missing')
    return 0, "Docker login skipped"

相关信息

airflow 源码目录

相关文章

airflow init 源码

airflow cache 源码

airflow ci_group 源码

airflow click_utils 源码

airflow common_options 源码

airflow confirm 源码

airflow console 源码

airflow custom_param_types 源码

airflow docker_command_utils 源码

airflow find_newer_dependencies 源码

0  赞