108 lines
3.9 KiB
Python
108 lines
3.9 KiB
Python
# -*- coding: utf-8 -*- #
|
|
# Copyright 2022 Google LLC. All Rights Reserved.
|
|
#
|
|
# Licensed 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.
|
|
"""Set up flags for creating or updating a GitLab config."""
|
|
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import unicode_literals
|
|
|
|
from googlecloudsdk.calliope import arg_parsers
|
|
|
|
|
|
def AddGitLabConfigArgs(parser, update=False):
|
|
"""Set up all the argparse flags for creating or updating a GitLab config.
|
|
|
|
Args:
|
|
parser: An argparse.ArgumentParser-like object.
|
|
update: If true, use the version of the flags for updating a config.
|
|
Otherwise, use the version for creating a config.
|
|
|
|
Returns:
|
|
The parser argument with GitLab config flags added in.
|
|
"""
|
|
parser.add_argument(
|
|
'--host-uri',
|
|
required=not update,
|
|
help='The host uri of the GitLab Enterprise instance.')
|
|
parser.add_argument(
|
|
'--user-name',
|
|
required=not update,
|
|
help='The GitLab user name that should be associated with this config.')
|
|
parser.add_argument(
|
|
'--api-key-secret-version',
|
|
required=not update,
|
|
help='Secret Manager resource containing the Cloud Build API key that should be associated with this config. The secret is specified in resource URL format projects/{secret_project}/secrets/{secret_name}/versions/{secret_version}.'
|
|
)
|
|
parser.add_argument(
|
|
'--api-access-token-secret-version',
|
|
required=not update,
|
|
help='Secret Manager resource containing the API access token. The secret is specified in resource URL format projects/{secret_project}/secrets/{secret_name}/versions/{secret_version}.'
|
|
)
|
|
parser.add_argument(
|
|
'--read-access-token-secret-version',
|
|
required=not update,
|
|
help='Secret Manager resource containing the read access token. The secret is specified in resource URL format projects/{secret_project}/secrets/{secret_name}/versions/{secret_version}.'
|
|
)
|
|
parser.add_argument(
|
|
'--webhook-secret-secret-version',
|
|
required=not update,
|
|
help='Secret Manager resource containing the webhook secret. The secret is specified in resource URL format projects/{secret_project}/secrets/{secret_name}/versions/{secret_version}.'
|
|
)
|
|
parser.add_argument(
|
|
'--ssl-ca-file',
|
|
type=arg_parsers.FileContents(),
|
|
help='Path to a local file that contains SSL certificate to use for requests to GitLab Enterprise. The certificate should be in PEM format.'
|
|
)
|
|
parser.add_argument(
|
|
'--service-directory-service',
|
|
help="""\
|
|
Service Directory service that should be used when making calls to the GitLab Enterprise instance.
|
|
|
|
If not specified, calls will be made over the public internet.
|
|
""")
|
|
if not update:
|
|
parser.add_argument(
|
|
'--name', required=True, help='The name of the GitLab config.')
|
|
parser.add_argument(
|
|
'--region',
|
|
required=True,
|
|
help='The Cloud location of the GitLab config.')
|
|
|
|
return parser
|
|
|
|
|
|
def AddGitLabConfigCreateArgs(parser):
|
|
"""Set up all the argparse flags for creating a GitLab config.
|
|
|
|
Args:
|
|
parser: An argparse.ArgumentParser-like object.
|
|
|
|
Returns:
|
|
The parser argument with GitLab config flags added in.
|
|
"""
|
|
return AddGitLabConfigArgs(parser, update=False)
|
|
|
|
|
|
def AddGitLabConfigUpdateArgs(parser):
|
|
"""Set up all the argparse flags for updating a GitLab config.
|
|
|
|
Args:
|
|
parser: An argparse.ArgumentParser-like object.
|
|
|
|
Returns:
|
|
The parser argument with GitLab config flags added in.
|
|
"""
|
|
return AddGitLabConfigArgs(parser, update=True)
|