Gitlab Private с доставкой приложений на облачной платформе Google - PullRequest
1 голос
/ 22 апреля 2020

GKE недавно выпустила диспетчер приложений / дополнения доставки для GKE. Приложение доставлено .

Но в настоящее время диспетчер приложений / доставка поддерживают только Github.com и Gitlab.com. Есть ли какой-либо план или выпуск канала для поддержки Gitlab Private? И есть ли обходные пути для этого в настоящее время?

Initialize an application with Anthos Application delivery framework.
APP_NAME should conform to definitions of label and subdomain in DNS (RFC 1123: https://tools.ietf.org/html/rfc1123)

Usage:
  appctl init APP_NAME --app-config-repo [--deployment-repo] [--config-path] [flags]

Examples:
  # Initialize an app from scratch and create a remote app repository.
  appctl init myapp --app-config-repo github.com/myorg/myapp

  # Initialize an app from an existing repository.
  appctl init myapp -app-config-repo github.com/myorg/myapp

  # Initialize an app and customize the configuration path (default is ./config).
  appctl init myapp --app-config-repo github.com/myorg/myapp --config-path myappconfig

  # Initialize an app and customize the deployment repo.
  appctl init myapp --app-config-repo github.com/myorg/myapp --deployment-repo github.com/myorg/myapp-env


Flags:
      --app-config-repo string        The url of the application configuration repository. It should be in the form of "[https://]<github|gitlab>.com/<ORG or USER>/<REPO>".

      --config-path string            The relative directory that contains the application's kubernetes resource configurations. Default to "./config".
      --deployment-repo appctl init   the url of the deployment repository. It should be in the form of "[https://]<github|gitlab>.com/<ORG or USER>/<REPO>".
                                      If not provided, appctl init will use a default url in the form of "[https://]<PLATFORM>.com/<ORG or USER>/<APP_NAME>-deployment" where PLATFORM and ORG/USER are from --app-config-repo.
  -h, --help                          help for init
...