Cloud Foundry的 - 如何让安装在应用程序中的神器版本?

问题描述 投票:0回答:1

我们推artifactory的下面命令应用程序:

在这个例子中:cf push app-name1 -p target/api-0.0.1-SNAPSHOT.jar我们正在api-0.0.1-SNAPSHOT.jar推动app-name1

所以,我需要知道这个版本(0.0.1)

maifest.yml有artifactory的版本进行部署


如何获得安装任何应用程序的版本artifactory的(详细信息)?

cloudfoundry pivotal-cloud-foundry
1个回答
1
投票

不知道如果这正是你想要的东西,但你可以看到各种环境配置设置通过执行以下操作您的应用程序:

  1. 登录到您的Cloud Foundry环境并填写以下提示: cf login
  2. 键入cf env <app>其中<app>是你的清单文件中指定的应用程序的名称。这将显示各种环境配置,诸如:APPLICATION_ID,APPLICATION_NAME,application_uris,空间相关的信息,版本等... cf env <app>的示例输出如下: Getting env variables for app <app> in org <org> / space dev as <user...OK System-Provided: { "VCAP_APPLICATION": { "application_id": "<id>", "application_name": "<app_name>", "application_uris": [ "<url>" ], "application_version": "<version>", "cf_api": "<cf_api>", "limits": { "disk": 1024, "fds": 16384, "mem": 1024 }, "name": "<name>", "space_id": "<space_id>", "space_name": "dev", "uris": [ "<uri1>" ], "users": null, "version": "<version>" } } No user-defined env variables have been set No running env variables have been set Staging Environment Variable Groups: REPOSITORY_ROOT: <url> REPOSITORY_ROOT_S3: <url>

但愿这就是你要找的人!

© www.soinside.com 2019 - 2024. All rights reserved.