我有一个Elastic Beanstalk应用程序和环境已经设置。我刚刚下载了Windows上的开发工具CLI/eb,并希望使用eb推送到所说的环境。如果我使用eb init,我必须创建一个新的EB应用程序和环境。如何将git repo初始化为一个已有的EB应用和环境?
eb
eb init
omhiaaxx1#
我最后做这件事的方式是:1)从http://aws.amazon.com/developertools/AWS-Elastic-Beanstalk/6752709412171743下载AWSDevTools2)在CLI上移动到您的git存储库3)运行/下载/弹性梁-cli/AWSDevTools/[Linux or Windows]/AWSDevTools-RepositorySetup.sh编辑:3a)git aws.config4)输入AWS访问密钥、AWS密钥、AWS区域,然后输入AWS应用程序和AWS环境的现有名称。5)现在你可以像往常一样使用git add,git commit,并使用git aws.push推送到你的EB环境中7)您可以按照上面的步骤添加其他环境,例如,如果您有生产环境和过渡环境,然后使用git aws.push --environment使用相同的repo推送到两个环境。如果您在Windows上遇到错误The specified module 'AWSDevTools' was not loaded,很可能是因为AWSDevTools模块不在C:\Users`USER`\Documents\WindowsPowerShell\AWSDevTools\AWSDevTools.ps1中。
[Linux or Windows]
git aws.config
The specified module 'AWSDevTools' was not loaded
uz75evzq2#
1.安装开发工具1.运行资料档案库设置
iaqfqrcu3#
如果随brew install aws-elasticbeanstalk一起安装,则可以在/usr/local/Cellar/aws-elasticbeanstalk/2.5.1/libexec/AWSDevTools/Linux/AWSDevTools-RepositorySetup.sh中找到该脚本。在运行它之后,您需要运行git aws.config。
brew install aws-elasticbeanstalk
/usr/local/Cellar/aws-elasticbeanstalk/2.5.1/libexec/AWSDevTools/Linux/AWSDevTools-RepositorySetup.sh
shstlldc4#
安装EB CLI版本3或更高版本:http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-install.html那就跑
CLI版本3允许您通过init将git repo附加到现有环境。
4条答案
按热度按时间omhiaaxx1#
我最后做这件事的方式是:
1)从http://aws.amazon.com/developertools/AWS-Elastic-Beanstalk/6752709412171743下载AWSDevTools
2)在CLI上移动到您的git存储库
3)运行/下载/弹性梁-cli/AWSDevTools/
[Linux or Windows]
/AWSDevTools-RepositorySetup.sh编辑:3a)
git aws.config
4)输入AWS访问密钥、AWS密钥、AWS区域,然后输入AWS应用程序和AWS环境的现有名称。
5)现在你可以像往常一样使用git add,git commit,并使用git aws.push推送到你的EB环境中
7)您可以按照上面的步骤添加其他环境,例如,如果您有生产环境和过渡环境,然后使用git aws.push --environment使用相同的repo推送到两个环境。
如果您在Windows上遇到错误
The specified module 'AWSDevTools' was not loaded
,很可能是因为AWSDevTools模块不在C:\Users`USER`\Documents\WindowsPowerShell\AWSDevTools\AWSDevTools.ps1中。uz75evzq2#
1.安装开发工具
1.运行资料档案库设置
iaqfqrcu3#
如果随
brew install aws-elasticbeanstalk
一起安装,则可以在/usr/local/Cellar/aws-elasticbeanstalk/2.5.1/libexec/AWSDevTools/Linux/AWSDevTools-RepositorySetup.sh
中找到该脚本。在运行它之后,您需要运行
git aws.config
。shstlldc4#
安装EB CLI版本3或更高版本:
http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-install.html
那就跑
CLI版本3允许您通过init将git repo附加到现有环境。