Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Master Microservices with Java, Spring, Docker, Kubernetes, а также все другие курсы, прямо сейчас!
Премиум
  • Урок 1. 00:05:33
    Introduction to the course & Agenda
  • Урок 2. 00:07:09
    Details of Source Code, PDF Content & other instructions for the course
  • Урок 3. 00:07:56
    Evolution of Microservices architecture
  • Урок 4. 00:10:08
    Deepdive of Monolithic architecture
  • Урок 5. 00:06:35
    Deepdive of SOA architecture
  • Урок 6. 00:11:01
    Deepdive of Microservices architecture
  • Урок 7. 00:07:37
    Comparisons between Monolithic, SOA & Microservices architecture
  • Урок 8. 00:03:08
    Definition of Microservices
  • Урок 9. 00:05:17
    Why Spring is the best framework for building microservices
  • Урок 10. 00:07:48
    Using Spring Boot for microservices development
  • Урок 11. 00:10:28
    Creating a Hello World service using Spring Boot
  • Урок 12. 00:09:53
    Using Spring Cloud for microservices development
  • Урок 13. 00:09:52
    Approaches to identify boundaries & right sizing for building microservices
  • Урок 14. 00:05:26
    Sizing & identifying boundaries with a Bank App use case
  • Урок 15. 00:06:58
    Sizing & identifying boundaries with a Ecommerce migration use case
  • Урок 16. 00:01:40
    Introduction to the microservices that we are going to build
  • Урок 17. 00:17:04
    Creating Bank Accounts Microservices using SpringBoot
  • Урок 18. 00:05:46
    Creating Bank Loans Microservices using SpringBoot
  • Урок 19. 00:05:55
    Creating Bank Cards Microservices using SpringBoot
  • Урок 20. 00:04:40
    Introduction to challenges while building, deploying microservices
  • Урок 21. 00:08:36
    What is Containerization technology?
  • Урок 22. 00:05:51
    Definition of containers
  • Урок 23. 00:08:12
    Introduction to Docker & its architecture
  • Урок 24. 00:05:47
    Understanding Docker Hub & Installing Docker
  • Урок 25. 00:09:55
    Creating Docker image definition using a Dockerfile
  • Урок 26. 00:04:52
    Create Accounts microservice Docker image from the Dockerfile
  • Урок 27. 00:06:39
    Start and deploy Accounts microservice using Docker image & containers
  • Урок 28. 00:10:31
    Deep dive of important Docker commands
  • Урок 29. 00:04:34
    Introduction to Buildpacks
  • Урок 30. 00:06:03
    Creating docker image of Loans microservice using Buildpacks
  • Урок 31. 00:06:46
    Creating docker image of Cards microservice using Buildpacks
  • Урок 32. 00:06:11
    Pushing Docker images from your local to remote Docker hub repository
  • Урок 33. 00:14:07
    Deep dive on docker-compose
  • Урок 34. 00:05:51
    Tips & Tricks around Docker Desktop Dashboard & Logs explorer
  • Урок 35. 00:08:03
    Introduction to Cloud-native applications
  • Урок 36. 00:06:58
    Differences between cloud-native Apps & Traditional enterprise Apps
  • Урок 37. 00:08:14
    Twelve factor App Deepdive 1
  • Урок 38. 00:06:56
    Twelve factor App Deepdive 2
  • Урок 39. 00:08:39
    Twelve factor App Deepdive 3
  • Урок 40. 00:04:51
    Introduction to Configurations Management challenges inside microservices
  • Урок 41. 00:06:53
    Configuration Management architecture inside microservices
  • Урок 42. 00:06:16
    Deep dive of Spring Cloud Config for Configuration management
  • Урок 43. 00:16:01
    Building Config Server service and load all the configurations from classpath
  • Урок 44. 00:04:00
    Reading configurations from a file system location
  • Урок 45. 00:04:42
    Reading configurations from a GitHub repository
  • Урок 46. 00:12:21
    Updating Accounts Microservice to read properties from Config Server
  • Урок 47. 00:03:49
    Updating Loans Microservice to read properties from Config Server
  • Урок 48. 00:04:25
    Updating Cards Microservice to read properties from Config Server
  • Урок 49. 00:07:22
    Generating Docker images after Config Server changes
  • Урок 50. 00:04:28
    Pushing all the latest Docker images with Config server changes to DockerHub
  • Урок 51. 00:16:11
    Updating Docker Compose file to adapt Config Server changes
  • Урок 52. 00:13:13
    Starting all the microservices using docker compose files based on the env
  • Урок 53. 00:12:34
    Refreshing properties with @RefreshScope
  • Урок 54. 00:07:54
    Encryption & Decryption of your properties inside Config server
  • Урок 55. 00:08:20
    Introduction to the Service Discovery & Registration inside microservices
  • Урок 56. 00:08:33
    Why not traditional load balancers for Microservices
  • Урок 57. 00:12:51
    Architecture of Service Discovery inside microservices
  • Урок 58. 00:06:23
    Client Side load balancing between microservices
  • Урок 59. 00:04:26
    Spring Cloud support for Service Discovery & Registration
  • Урок 60. 00:09:37
    Setup Service Discovery agent using Eureka server
  • Урок 61. 00:07:16
    Make changes for Accounts microservice to connect Eureka Server
  • Урок 62. 00:07:40
    Make changes for Loans & Cards microservice to connect Eureka Server
  • Урок 63. 00:04:43
    Degistration from Eureka server when microservices shutdown
  • Урок 64. 00:02:29
    Demo of heartbeats mechanism to Eureka server from clients
  • Урок 65. 00:12:13
    Feign Client to invoke other microservices
  • Урок 66. 00:05:02
    Generating Docker images after Service Discovery changes
  • Урок 67. 00:02:22
    Pushing all the latest Docker images with Eureka changes to Docker Hub
  • Урок 68. 00:04:19
    Updating Docker Compose file to adapt Service Discovery changes
  • Урок 69. 00:04:29
    Starting all the microservices using docker compose file
  • Урок 70. 00:05:26
    Running docker compose with 2 instances of Accounts microservice
  • Урок 71. 00:12:40
    Eureka Self-Preservation mode to avoid network trap issues
  • Урок 72. 00:10:03
    Introduction to the need of Resiliency inside microservices
  • Урок 73. 00:07:05
    Typical use case or scenario for the need of Resiliency
  • Урок 74. 00:13:32
    Deep dive on Circuit Breaker pattern in microservices
  • Урок 75. 00:07:30
    Implementing Circuit Breaker pattern - Part 1
  • Урок 76. 00:07:16
    Implementing Circuit Breaker pattern - Part 2
  • Урок 77. 00:05:29
    Implementing Circuit Breaker pattern - Part 3
  • Урок 78. 00:03:30
    Deep dive on Retry pattern in microservices
  • Урок 79. 00:06:57
    Implementing Retry Pattern in microservices
  • Урок 80. 00:03:17
    Deep dive on Rate Limiter pattern in microservices
  • Урок 81. 00:03:33
    Implementing Rate Limiter Pattern in microservices
  • Урок 82. 00:07:23
    Deep dive on Bulk head pattern in microservices
  • Урок 83. 00:05:14
    Introduction to the challenges with Routing & Cross cutting concerns
  • Урок 84. 00:11:03
    Introduction to Spring Cloud Gateway
  • Урок 85. 00:06:19
    Deep dive on Spring Cloud Gateway internal architecture
  • Урок 86. 00:15:26
    Building Spring Cloud Gateway service
  • Урок 87. 00:10:08
    Implementing Custom Routing using Spring Cloud Gateway
  • Урок 88. 00:15:24
    Implementing Cross cutting concern Tracing & Logging using Gateway Server
  • Урок 89. 00:08:42
    Generating and pushing Docker images with Spring Cloud Gateway changes
  • Урок 90. 00:07:32
    Updating Docker Compose file to adapt Spring Cloud Gateway changes
  • Урок 91. 00:08:42
    Introduction to the challenges related to Distributed tracing & Log aggregation
  • Урок 92. 00:04:32
    Introduction to Spring Cloud Sleuth & Zipkin
  • Урок 93. 00:07:06
    Deep dive on Spring Cloud Sleuth & it's tracing format
  • Урок 94. 00:07:27
    Deep dive on Zipkin internal architecture
  • Урок 95. 00:10:05
    Implementing Distributed tracing with Spring Cloud Sleuth
  • Урок 96. 00:14:28
    Implementing Log aggregation with Zipkin Server
  • Урок 97. 00:10:25
    Pushing Sleuth message into RabbitMQ
  • Урок 98. 00:12:51
    Generate, Push Docker images with Sleuth & Zipkin changes
  • Урок 99. 00:02:52
    Introduction to the challenges related to monitoring microservices
  • Урок 100. 00:10:27
    Different approaches to monitor microservices
  • Урок 101. 00:10:19
    Setup of micrometer inside microservices
  • Урок 102. 00:15:31
    Setup of Prometheus to monitor microservices
  • Урок 103. 00:10:07
    Setup of Grafana to monitor microservices with inbuilt dashboards
  • Урок 104. 00:05:44
    Building custom dashboards inside Grafana
  • Урок 105. 00:08:46
    Sending alerts using Grafana when service is down
  • Урок 106. 00:05:28
    Introduction to the challenges related to container orchestration
  • Урок 107. 00:08:22
    Introduction to Kubernetes
  • Урок 108. 00:17:10
    Dee dive of Kubernetes internal architecture
  • Урок 109. 00:07:40
    Cloud providers support for Kubernetes
  • Урок 110. 00:04:46
    GCP Account Setup and creating a K8s cluster
  • Урок 111. 00:11:26
    Exploring K8S cluster and establish connection with it
  • Урок 112. 00:09:03
    Deep dive on Kubernetes YAML configurations
  • Урок 113. 00:13:18
    Kubernetes YAML configurations for applicable microservices
  • Урок 114. 00:09:17
    Create environment variables inside K8S cluster using ConfigMap
  • Урок 115. 00:12:14
    Deploying our microservices to Kubernetes cluster
  • Урок 116. 00:04:08
    Validating our microservices deployed into K8s cluster
  • Урок 117. 00:06:34
    Automatic Self healing inside Kubernetes cluster
  • Урок 118. 00:10:50
    Automatic Rollout & Rollback inside Kubernetes cluster
  • Урок 119. 00:05:12
    Logging & Monitoring inside Kubernetes cluster
  • Урок 120. 00:04:06
    Autoscaling inside Kubernetes cluster using HPA
  • Урок 121. 00:01:27
    Deleting Kubernetes cluster inside GCP
  • Урок 122. 00:05:13
    Deploying all the microservices into K8s cluster - Theory
  • Урок 123. 00:10:23
    Creating the K8s yaml config files for all microservices
  • Урок 124. 00:05:41
    How Deployment and Service are tied together inside K8s
  • Урок 125. 00:08:05
    Deploying all the microservices into K8s cluster
  • Урок 126. 00:03:18
    Validating microservices deployed into K8s cluster
  • Урок 127. 00:07:41
    Problems with manually created Kubernetes manifest files
  • Урок 128. 00:05:50
    Introduction to Helm
  • Урок 129. 00:09:24
    Problems that Helm solves
  • Урок 130. 00:06:18
    Installing Helm
  • Урок 131. 00:06:16
    Creating our first Helm Chart
  • Урок 132. 00:14:48
    Installing the Default Helm chart into K8s cluster
  • Урок 133. 00:09:12
    Exploring the default Helm chart content
  • Урок 134. 00:15:47
    Creating our own Helm template files
  • Урок 135. 00:11:12
    Creating Helm chart for Accounts microservice
  • Урок 136. 00:13:07
    Creating Helm chart for other microservice
  • Урок 137. 00:13:06
    Creating Helm chart for Dev and Prod environment
  • Урок 138. 00:06:01
    Demo of helm template command
  • Урок 139. 00:11:44
    Installing Helm charts into K8s cluster
  • Урок 140. 00:06:03
    Demo of helm upgrade command
  • Урок 141. 00:03:41
    Demo of helm history and rollback commands
  • Урок 142. 00:02:33
    Demo of helm uninstall command
  • Урок 143. 00:06:50
    Revision of important helm commands
  • Урок 144. 00:05:02
    Problem with Kubernetes LoadBalancer Service
  • Урок 145. 00:05:33
    Problem with Kubernetes LoadBalancer Service-Demo
  • Урок 146. 00:04:21
    Introduction to types of K8s Services
  • Урок 147. 00:04:27
    Deep dive on ClusterIP Service - Theory
  • Урок 148. 00:11:43
    Deep dive on ClusterIP Service - Demo
  • Урок 149. 00:04:38
    Deep dive on NodePort Service - Theory
  • Урок 150. 00:12:04
    Deep dive on NodePort Service - Demo
  • Урок 151. 00:04:28
    Deep dive on LoadBalancer Service - Theory
  • Урок 152. 00:07:06
    Deep dive on LoadBalancer Service - Demo
  • Урок 153. 00:02:59
    Introduction to securing Spring Cloud Gateway with OAuth2
  • Урок 154. 00:11:04
    Quick intro to OAuth2 framework
  • Урок 155. 00:10:42
    Deep dive on OAuth2 Client Credentials grant flow
  • Урок 156. 00:07:55
    KeyCloak Auth Server installation and setup using Docker command
  • Урок 157. 00:05:24
    Register Client details inside KeyCloak Auth server
  • Урок 158. 00:08:32
    Getting Access token from Auth Server using Client details
  • Урок 159. 00:13:10
    Making code changes inside Spring Cloud Gateway to secure the APIs
  • Урок 160. 00:09:03
    Demo of Spring Cloud Gateway security inside local system
  • Урок 161. 00:03:11
    Generating and Pushing latest docker image of Gateway into Docker Hub
  • Урок 162. 00:12:43
    Installation of KeyCloak into K8s cluster using Helm chart
  • Урок 163. 00:07:46
    Updating Helm charts of microservices
  • Урок 164. 00:05:53
    Deploying all microservices into K8s and validating security changes
  • Урок 165. 00:04:38
    Introduction to Authorization
  • Урок 166. 00:10:42
    Demo of Authorization changes using Spring Security - Part 1
  • Урок 167. 00:06:36
    Demo of Authorization changes using Spring Security - Part 2
  • Урок 168. 00:06:02
    Introduction to OAuth2 Authorization code grant flow
  • Урок 169. 00:07:36
    Deep dive of OAuth2 Authorization code grant flow
  • Урок 170. 00:12:25
    Making code changes inside Accounts microservice to secure the APIs
  • Урок 171. 00:05:57
    Register Client details inside KeyCloak Auth server for Spring Cloud Gateway
  • Урок 172. 00:12:42
    Making code changes inside Spring Cloud Gateway
  • Урок 173. 00:11:37
    Demo of OAuth2 Authorization code grant flow inside local system
  • Урок 174. 00:14:03
    Updating Helm charts of microservices
  • Урок 175. 00:13:15
    Deploy all microservices into K8s cluster and demo of Authorization code flow
  • Урок 176. 00:09:51
    Introduction to Kubernetes Ingress
  • Урок 177. 00:07:03
    Introduction to Service mesh
  • Урок 178. 00:10:52
    Deep dive on Service mesh and Istio
  • Урок 179. 00:01:58
    Thank You & Congratulations