0

I am following this guide: Aliyun Function Compute Serverless Plugin to try to create a new service with a new Node.js serverless function under the Alibaba Cloud Function Compute using the Serverless Framework as well as the Aliyun Function Compute Serverless Plugin.

However, after I have done with the serverless deploy command, I can only see a new service without any function created in the Alibaba Cloud Function Compute console, which is not what I expect.

I do not see any error during the deployment process.

Does anyone have any experience and solution on this? Thanks very much!

The serverless.yml is as shown below:

service: aliyun-nodejs

    provider:
      name: aliyun
      runtime: nodejs8
      credentials: <private>

    plugins:
      - serverless-aliyun-function-compute
    package:
      exclude:
        - package-lock.json
        - .gitignore
        - .git/**

    functions:
      hello:
        handler: index.hello
        events:
          - http:
              path: /foo
              method: get
juvchan
  • 5,555
  • 2
  • 20
  • 32

1 Answers1

0

Have you tried running serverless config before serverless deploy and see if that works? Under the issues section of Aliyun plugin's repo you can find this thread: https://github.com/aliyun/serverless-aliyun-function-compute/issues/3

Deepak Kamat
  • 1,536
  • 3
  • 16
  • 35