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