DevOps & SRE notes – Telegram
DevOps & SRE notes
12K subscribers
40 photos
19 files
2.5K links
Helpful articles and tools for DevOps&SRE

WhatsApp: https://whatsapp.com/channel/0029Vb79nmmHVvTUnc4tfp2F

For paid consultation (RU/EN), contact: @tutunak


All ways to support https://telegra.ph/How-support-the-channel-02-19
Download Telegram
The blog post "Cybersecurity Isn't Special" challenges the notion that cybersecurity is a uniquely complex field. It critiques the idea that cybersecurity problems are more esoteric and difficult than those faced by other teams like SRE or platform engineering. The post argues for integrating cybersecurity into broader software resilience strategies rather than treating it as a separate, special area. It suggests practical steps for cybersecurity teams to collaborate more effectively with other engineering teams and to focus on building resilience into software systems.


https://kellyshortridge.com/blog/posts/cybersecurity-isnt-special/
👍3
The blog post "Speed Up Container Image Builds in Tekton Pipelines," outlines techniques for accelerating container image construction in Tekton Pipelines. It focuses on the utilization of Kaniko caching capabilities to enhance build speeds in a Tekton Pipeline environment, especially when dealing with non-persistent containers in Kubernetes. The article provides a comprehensive guide, including examples and instructions, for effectively implementing these techniques to optimize container image building processes.
https://cd.foundation/blog/2023/10/12/speed-up-container-image-builds-tekton-pipelines/
❤‍🔥2👍2
ControlPlane, a leader in Kubernetes and cloud-native consulting, has announced its support for the CNCF Flux Project by hiring key maintainers. This move underscores the firm's commitment to the open-source project's sustainability and growth following WeaveWorks' closure. By integrating Flux maintainers Stefan Prodan and Soule Ba into its team, ControlPlane aims to bolster the project's development and enhance GitOps security practices. This support includes funding, infrastructure for testing, community engagement, and the release of resources like Hardening Guides and Policy Packs, reinforcing the mutual success of Flux CD technology and its users.
https://control-plane.io/posts/controlplane-backs-the-cncf-flux-project-by-employing-maintainers
👍4🎉32
The blog post "Architects & Tech Leads" explores the distinct roles of software architects and tech leads in product development teams. It discusses how these roles interact and work with product managers and engineering managers. The post delves into the challenges of defining these roles and the potential areas of conflict, emphasizing the importance of flexibility and collaboration in modern software development. It advocates for a synergistic approach, where each role complements the other, contributing to the overall success of the team.
https://mikefisher.substack.com/p/architects-and-tech-leads
👍4
The blog post "Bootstrap an Air Gapped Cluster With Kubeadm" provides a comprehensive guide on setting up a Kubernetes cluster in an air-gapped environment using Kubeadm. It covers the challenges of deploying in a network-isolated environment and offers detailed steps and strategies to effectively overcome these obstacles. The guide is particularly useful for those looking to deploy Kubernetes in secure, restricted-access environments.
https://kubernetes.io/blog/2023/10/12/bootstrap-an-air-gapped-cluster-with-kubeadm/
👍2
The blog post details a case study on migrating Kubernetes clusters between AWS accounts using Velero. It covers the migration process, including the transfer of both Kubernetes and non-Kubernetes resources, and outlines specific steps and strategies adopted for this task. The post also shares lessons learned and insights gained during the migration, making it a useful resource for those looking to undertake similar projects.
https://devopsdirective.com/posts/2023/11/velero-aws-account-migration/index.html
👍4
This post provides a comprehensive overview of Cloudflare's logging pipeline, detailing the various components and processes involved in managing, improving, and maintaining the internal logging systems. It covers the journey of logs from their inception to their storage, explaining the role of different technologies and methods used in this process. The article highlights Cloudflare's focus on scalability, high availability, and meeting service level objectives while handling immense volumes of log data.
https://blog.cloudflare.com/an-overview-of-cloudflares-logging-pipeline/
👍4
Diagram as code
from diagrams import Cluster, Diagram
from diagrams.aws.compute import ECS, EKS, Lambda
from diagrams.aws.database import Redshift
from diagrams.aws.integration import SQS
from diagrams.aws.storage import S3

with Diagram("Event Processing", show=False):
source = EKS("k8s source")

with Cluster("Event Flows"):
with Cluster("Event Workers"):
workers = [ECS("worker1"),
ECS("worker2"),
ECS("worker3")]

queue = SQS("event queue")

with Cluster("Processing"):
handlers = [Lambda("proc1"),
Lambda("proc2"),
Lambda("proc3")]

store = S3("events store")
dw = Redshift("analytics")

source >> workers >> queue >> handlers
handlers >> store
handlers >> dw


https://diagrams.mingrammer.com/docs/getting-started/examples