繁体   English   中英

使用 Node.js SDK 构建 Elastic Beanstalk

[英]Building Elastic Beanstalk with Node.js SDK

有没有人用 AWS javascript sdk 创建过弹性 beanstalk 应用程序? 我已经能够使用 grunt 更新现有的应用程序,效果非常好。 但是作为持续集成/持续部署项目的一部分,我们还希望在应用程序不存在时创建它。 我发现文档令人困惑,并且以 AWS 的惯常方式,缺乏任何类型的有凝聚力的示例,比如“做这个,然后这个”。 如果有人这样做并且可以为我指明正确的方向,那将是一个很大的帮助。 目前,我不确定这是单步还是多步过程。

所以,这里有一个基本的节点包来构建一个应用程序。 我已经上传了一个基本的 API 应用程序作为一个 zip 文件,它没有什么。 这个想法是,一旦它被创建,我就可以使用 grunt 脚本更新它——一旦它被创建,有几个非常好的 grunt 模块可以做到这一点。 但最初的创作却不见了。 现在也很容易添加更多参数。

 var applicationName = process.argv[2];
 var environmentName = process.argv[3];
 var regionName = process.argv[4];

 var AWS = require('aws-sdk');
 AWS.config.update({region: regionName});

 var applicationParams = {
   ApplicationName: applicationName
 };

 var environmentParams =
 {
     ApplicationName: applicationName, /* required */
     EnvironmentName: environmentName, /* required */
     VersionLabel: 'initial',
     SolutionStackName: "64bit Amazon Linux 2015.03 v1.4.4 running     Node.js",
     CNAMEPrefix: applicationName,
     Tier:
     {
         Version: " ",
         Type: "Standard",
         Name: "WebServer"
     },
     OptionSettings:
     [
         {
             Namespace: 'aws:elasticbeanstalk:environment',
             OptionName: 'EnvironmentType',
             Value: 'SingleInstance'
         },
         {
             Namespace: 'aws:autoscaling:launchconfiguration',
             OptionName: 'EC2KeyName',
             Value: 'MyPemFile'
         },
         {
             Namespace: 'aws:autoscaling:launchconfiguration',
             OptionName: 'IamInstanceProfile',
             Value: 'aws-elasticbeanstalk-ec2-role'
         },
         {
             Namespace: 'aws:autoscaling:launchconfiguration',
             OptionName: 'InstanceType',
             Value: 't1.micro'
         }
     ],
  };

 var versionParams =
 {
     ApplicationName: applicationName, /* required */
     VersionLabel: 'initial', /* required */
     AutoCreateApplication: true,
     SourceBundle:
     {
         S3Bucket: 'beanstalk-test-ff',
         S3Key: 'test-app.zip'
     }
 };

 var elasticbeanstalk = new AWS.ElasticBeanstalk();

 elasticbeanstalk.createApplication(applicationParams, function(err, data)
 {
     console.log('Creating application');
     console.log(data);
     if (err)
     {
         if (err.message.indexOf("already exists") > -1)
         {
             console.log('Application already exists, continuing on');
         }
         else
         {
             console.log(err,err.stack); // an error occurred
         }
     }
     else
     {
         elasticbeanstalk.createApplicationVersion(versionParams, function(err, data)
         {
             console.log('Creating application version....');
             console.log(data);

             if (err) console.log(err, err.stack); // an error occurred

             else
             {
                 elasticbeanstalk.createEnvironment(environmentParams, function(err, data)
                 {
                     console.log('Creating application environment....');
                     console.log(data);
                     if (err) console.log(err, err.stack); // an error occurred

                 });
             }
         });
     }
 });

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM