분류 전체보기
[SQL 배우기] Section 2. SQL Statement Fundamentals
The Complete SQL Bootcamp for the Manipulation and Analysis of Data | Udemy SELECT: most common statement used to retrieve information from a table SELECT column_name FROM table_name using * instead of the column name retrieves all the columns separate column names by a comma for multiple columns using capital letters for SQL keywords helps with visualization SELECT DISTINCT: used to return dist..
[SQL 배우기] Section 1. Course Introduction
The Complete SQL Bootcamp for the Manipulation and Analysis of Data | Udemy Database: systems that allow users to store and organize large amounts of data made up of tables that consist of columns and rows SQL(Structured Query Language): programming language used to communicate with the database pgAdmin: a Query Tool can be used to perform queries on the database
![[Kubernetes 배우기] Section 9. Kubernetes on Cloud](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FT6YRf%2FbtsDhxyASpn%2FTpXnaIdljzKoIkKHmz4ha0%2Fimg.png)
[Kubernetes 배우기] Section 9. Kubernetes on Cloud
Kubernetes for the Absolute Beginners - Hands-on | Udemy The hosted cloud solution allows for the maintenance of VMs, which makes it easy to scale and manage. Microsoft Azure Amazon AWS Google Cloud Google Kubernetes Engine (GKE) The cluster can be created easily by configuring it in the Google Cloud console The load balancer is configured automatically by using Google’s load balancer. Amazon El..
[Kubernetes 배우기] Section 8. Microservices Architecture
Kubernetes for the Absolute Beginners - Hands-on | Udemy Each stack of the applications can be separated into different containers to be individual microservices. docker run --links: connects the docker containers by name Service is created to connect between pods for microservices. (Use NodePort and ClusterIP) service is not needed for ports that do not require exposed port
[Kubernetes 배우기] Section 7. Services
Kubernetes for the Absolute Beginners - Hands-on | Udemy Services enable loose coupling between microservice Kubernetes setups. It forwards requests to a port to another port Types of services: NodePort: internal port accessible to external port ClusterIP: virtual IP inside a cluster to connect applications LoadBalancer: distribute work among different pods NodePort NodePort consists of 3 ports ..