Thank you!
Sri Ramakrishna Math, Lucknow is a monastic organisation created by Sri Ramakrishna Paramhansa (1836–1886).The motto of the organisation is: "For one's own salvation, and for the welfare of the world". It contains idols of Ramakrishna, Swami Vivekananda & Holy Mother Sarada Devi.
AWS SAM is built on top of AWS CloudFormation.
Two Parts of Serverless Application Model :-
SAM Template:
Using shorthand syntax to express resources and event source mapping, It provide infrastructure as Code [IaC] for serverless application.
SAM CLI :
Provide tooling for local development, debugging , build, packaging and deployment for serverless application.
![]() |
| source: internet |
What SAM Template is comprised of can be found on GIT repo :
https://github.com/aws/serverless-application-model/blob/master/versions/2016-10-31.md
![]() |
| source:internet |
SAM resources :
AWS::Serverless::Function
AWS::Serverless::Api
AWS::Serverless::HttpApi
AWS::Serverless::SimpleTable
AWS::Serverless::LayerVersion
AWS::Serverless:: Application
AWS::Serverless:: StateMachine
few more.....
Thank you!
Kubernetes: The whole orchestration system. It also referred as short form as Kube.
Kubectl: It is Kube/Cube control. CLI to configure kubernetes and manage apps.
Node: Single server in Kubernetes cluster.
Kubelet: Kubernetes agent running on nodes.
Control Plane: Set of Container that manages the cluster.
Basics System terminology - How its fits in real time.
Thank you!
Released by Google in 2015 , now maintained by large community.
Kubernetes is popular container orchestration.
Container orchestration - make many server acts like one.
It run on top of docker (usually) as a set of APIs in containers.
It provides API/CLI to manage containers across servers.
Many clouds provide it for you.
Not Every solution requires orchestration.
For more refer: https://kubernetes.io/partners/#conformance
Thank you!