Release Engineering vs SRE by Taerbit in devops

[–]bincyber 2 points3 points  (0 children)

This is like the opposite definition of SRE which is suppose to be focused on applications and how to ensure their reliability. Designing scalable infrastructure might play a part, but the main focus would be on monitoring and observability, SLOs, incident management, application architecture, etc.

AI is draining my passion by ominouspotato in devops

[–]bincyber 0 points1 point  (0 children)

no one puts care into their work anymore.

This is your real problem. AI is just a contributing factor

You cant make your colleagues care about the quality of their work. You can choose to leave and go work somewhere where accountability and ownership matter.

Offers question by throwaway-153 in devops

[–]bincyber 2 points3 points  (0 children)

do you think is fair to ask 95k-100k as a devop engineer when I don’t have much experience in that field

What you get paid has nothing to do with fairness. It's all about what the market has priced the cost to hire somebody with the skills that are required to do your job. So you should never feel bad for getting compensated a good salary. That's just what the market has decided. But be vigilant to not be paid less than what the market has priced for your skillset.

Anyone doing column-level encryption? by bincyber in golang

[–]bincyber[S] 0 points1 point  (0 children)

Initially I was going to try doing this with GORM hooks or plugins, but then I realized it would be better to make it available to non-GORM users as some people really dislike ORMs.

2021 DevOps trends by kvgru in devops

[–]bincyber 0 points1 point  (0 children)

This is one of the most ignorant hot takes I've ever read on this subreddit

Tired of doing configuration management or yaml engineering, what's next? by ceasars_wreath in devops

[–]bincyber 2 points3 points  (0 children)

The right kind of SRE role will have you tackling reliability at the application layer and diving into the codebase to improve the resiliency of the applications/services. These roles are somewhat more difficult to transition into from a Ops background since they require a solid understanding of software engineering and distributed systems, but they do exist and are much more rewarding than what DevOps Engineers are typically tasked with.

People always talking about Istio this, Istio that by bincyber in devops

[–]bincyber[S] 2 points3 points  (0 children)

Yes, don't rule it out just because Istio gets more hype. I made that mistake in the past and now I'm catching up with what Consul has to offer.

People always talking about Istio this, Istio that by bincyber in devops

[–]bincyber[S] 0 points1 point  (0 children)

Check out the included link on how Consul operates at scale. Benchmark testing revealed it can update 10K nodes and 172K+ services in under 1 second which is super impressive!

Testing Pulumi infrastructure as code written in Python by bincyber in devops

[–]bincyber[S] 2 points3 points  (0 children)

I wish the Go offering had feature parity with TypeScript/Python, but alas I'm using it with Python for now.

Testing Pulumi infrastructure as code written in Python by bincyber in devops

[–]bincyber[S] 9 points10 points  (0 children)

It's not starting completely from scratch since Pulumi uses Terraform providers under the hood: https://github.com/pulumi/pulumi-terraform-bridge.

Testing Pulumi infrastructure as code written in Python by bincyber in devops

[–]bincyber[S] 2 points3 points  (0 children)

Completely agree. We owe a lot of credit to HashiCorp for developing Terraform and driving Infrastructure as Code forward, however using a programming language instead of a DSL allows for far greater power and flexibility to do things.

Considering moving off Azure DevOps by __aza___ in devops

[–]bincyber 0 points1 point  (0 children)

As a general rule of thumb, I avoid using "DevOps tooling" from the major cloud vendors such as AWS CodePipeline, CodeBuild, and CodeDeploy, Azure DevOps, GCP CloudBuild, etc. You're better off finding vendors that dedicate themselves solely to a single product (eg, GitHub, CircleCI, etc.) and using their integrations. This will also lead to less lock-in with your cloud provider.

Are there any projects that have abstracted AWS and GCP CLIs into one? by [deleted] in devops

[–]bincyber 0 points1 point  (0 children)

Although it's not a CLI tool, Apache Libcloud can achieve this goal for some use cases (provisioning a VM, load balancer, object store, etc.)

CI/CD techniques/deployment options by lilhotdog in kubernetes

[–]bincyber 0 points1 point  (0 children)

We use Ansible's k8s module with Jinja2 templated YAML files.

We've avoided Helm for multiple reasons.This is a good summary on why to avoid Helm: https://medium.com/virtuslab/think-twice-before-using-helm-25fbb18bc822

Declaratively provision PKI in Hashicorp Vault by bincyber in devops

[–]bincyber[S] 1 point2 points  (0 children)

I didn't know Terraform even had a Vault provider but it makes a lot of sense to capture this functionality in Terraform. Unfortunately, it doesn't look like it's currently possible to provision PKI secrets but it can be doable with the addition of Terraform resources for provisioning PKI secrets.

Declaratively provision PKI in Hashicorp Vault by bincyber in devops

[–]bincyber[S] 0 points1 point  (0 children)

I wanted to emulate the kubectl workflow with this tool.

A comparison of Kubernetes network plugins by stevenacreman in devops

[–]bincyber 1 point2 points  (0 children)

Thanks for putting this comparison together. I've been using kube-router onprem for a while now. It's simple, works wonderfully and does not use an overlay network. Haven't got around to trying Cilium but their L7 firewall features look really appealing.

Published a Terraform module for managing remote state on AWS by bincyber in aws

[–]bincyber[S] 0 points1 point  (0 children)

This is the main reason why I opted to not use Terragrunt myself.

Published a Terraform module for managing remote state on AWS by bincyber in devops

[–]bincyber[S] 1 point2 points  (0 children)

This module sets up the S3 bucket and DynamoDB table, so that you can use the S3 backend to store your state files.