Coder Social home page Coder Social logo

middleware-day-may-2021's Introduction

Middleware Day 14/05/2021 : Serverless on AWS + some Knative

  • Overview of Serverless/Lambda
  • Creating function via the console
  • function via SAM (and invoking locally)
  • lambda - BYO container
  • function via Serverless + Serverless Examples
  • AWS API Gateway -> Lambda -> DynamoDB -> DynamoDB Streams -> Knative pod on Openshift

BYO Container...

Doc in the directory

Knative / Pods on Openshift

See the sample-helm-chart here, and the code is as nodejs-mongodb-crud-api

#login to your cluster
oc new-project serverless-demo
helm install tutorial1 ./sample-helm-chart/tutorial-crud-api
#later...
oc create -f ./nodejs-mongodb-crud-api/knative-service.yaml

Note that the IP address / service name is no longer injected into the container (strange!). So we need to ensure:

...
      containers:
        - image: quay.io/swinches/tutorial-crud-api:latest
          env:
          - name: DATABASE_SERVICE_NAME
            value: tutorial1-tutorial-crud-api-mongo
          - name: TUTORIAL1_TUTORIAL_CRUD_API_MONGO_SERVICE_HOST
            value: 172.30.242.244
          - name: MONGODB_USER
            valueFrom:
              secretKeyRef:
...

Nice Links:

middleware-day-may-2021's People

Watchers

Stuart Winchester avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.