AWS transit gateway
Hub and spoke networking with AWS transit gateway
This message, related to the development of the theme, only displays on the
localhost
homepage to notify you of any important theme changes.
Below are the following changes that could be breaking changes for your site. For more details on any change, please refer to PR #154.
The major breaking change is:
images
(backwards compatibility for featured
and associated parameters still remains) will need to adjust from [images]="SRC"
to the new format.[[images]]
src = "" // Link to image
alt = "" // Alt text for image
stretch = // Optional: See screenshots for referenced values and outcomes
If you utilize any of the following, there might be a breaking:
While I realize this is inconvenient, I hope that it is worth it to you in the long run. Thanks for using the theme, and feel free to submit issues as needed.
Tech | Insights | Inspiration
Hub and spoke networking with AWS transit gateway
An open source networking and network security solution for containers
One of the requirements of the k8s networking model is that all pods running in a host are able to communicate with each other. This flat networking model posses some security challenges in clusters that are multi-tenanted. So for an MSP running multiple customer applications on a single cluster; this can lead to customers accessing each other’s service. Even in a setup where multiple business units share a common cluster having a network security policy is needed from a goverance and…
Understanding how kubernetes implements networking
EKS and GKE make k8s networking some what transparent. You bring up a cluster and nodes, then create a deployment and by magic your pods have IP addresses and even a load balancer. Obviously this is assuming your VPCs and subnets are already in place, but the main point is that you never typically get to worry about the inner working on how networking is implemented within your k8s clusters. In this post, I will be studying how this networking magic happens behind the scenes.