Skip to content

Instantly share code, notes, and snippets.

@Ammar-64
Last active January 4, 2022 16:21
Show Gist options
  • Save Ammar-64/d960e44f09bbfc80d3dd3bef3e1d11f9 to your computer and use it in GitHub Desktop.
Save Ammar-64/d960e44f09bbfc80d3dd3bef3e1d11f9 to your computer and use it in GitHub Desktop.

Cloud Computing discussion

  • What are some use cases of cloud computing?
  • Mention some of the advantages of cloud computing.
  • What are the most popular cloud providers?
  • What are cloud functions? mention at least 2 use cases.
  • What are CI and CD? and how are they helpful
  • What is serverless architecture?
  • What is Kubernetes?
@ZuluNovember
Copy link

  • What are some use cases of cloud computing?

1- Infrastructure-as-a-Service (IaaS) and Platform-as-a-Service (PaaS)
2- Hybrid cloud and multicloud
3- Test and development
4- Big data analytics
5- Cloud storage
6- Disaster recovery
7- Data backup

  • Mention some of the advantages of cloud computing.

1- Back-up and restore data
2- Improved collaboration
3- Low maintenance cost
4- IServices in the pay-per-use model
5- Mobility
6- Data security

  • What are the most popular cloud providers?

1-Google
2-AWS
3- Microsoft Azure
4- Heroku
5- Netlify
6- IBM Cloud
7- Yandex Cloud
8- Oracle Cloud
9- Alibaba Cloud

  • What are cloud functions? mention at least 2 use cases.

Cloud functions is a serverless platform for building event-base microservices.
Ex: configuring software, updating frameworks

  • What are CI and CD? and how are they helpful

The main concepts attributed to CI/CD are continuous integration, continuous delivery, and continuous deployment. CI/CD is a solution to the problems integrating new code can cause for development and operations teams. Specifically, CI/CD introduces ongoing automation and continuous monitoring throughout the lifecycle of apps, from integration and testing phases to delivery and deployment.

  • What is serverless architecture?

Serverless architecture is an approach to software design that allows developers to build and run services without having to manage the underlying infrastructure. Developers can write and deploy code, while a cloud provider provisions servers to run their applications, databases, and storage systems at any scale.

What is Kubernetes?

Kubernetes is an open-source container orchestration platform that enables the operation of an elastic web server framework for cloud applications.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment