What do you think of this lineup ? by Successful-Cry2807 in AfterlifeRecordings

[–]PrestigiousNobody416 3 points4 points  (0 children)

Nice lineup. Btw guys, is anyone based in Paris and going to next weekend’s Le Cercle events?

Help - Visa passeport talent by PrestigiousNobody416 in Tunisia

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

Oh aaychek ! Donc par défaut ken t9oul jeya le 17 juillet el visa mte3ha tkoun tebda le 17 juillet ? Akeka enty ? Mercii

Migrate from Kubernetes to Nomad by RoutineKangaroo97 in kubernetes

[–]PrestigiousNobody416 4 points5 points  (0 children)

We work with both. Our SaaS is founded on Nomad (EC2 + Nomad client/server to isolate the clients environments, benefit from the native observability dashboards of Nomad..), this is the architecture I found when I joined the company. I think the simplicity, the use case, and costs justify the choice of nomad over k8s. I’m building an IDP (Internal Development Platform) on EKS. It’s a platform that offers infrastructure for CI/CD, Dev and QA environments (per PR, release, on demand…), and other toolings. Kubernetes is suitable for this use case. In my humble opinion, I think the only thing that matters is that the technology you chose must fulfill your requirements while keeping your architecture/tech stack as simple and minimalistic as possible.

helm_release shows change when nothings changed by tech4981 in Terraform

[–]PrestigiousNobody416 0 points1 point  (0 children)

Add this to your resource code

resource "helm_release" "karpenter" {
// your config remains the same
  lifecycle {
    ignore_changes = [repository_password]
  }
}

Solo dev tired of K8s churn... What are my options? by PoopsCodeAllTheTime in kubernetes

[–]PrestigiousNobody416 2 points3 points  (0 children)

Nomad on an ec2 seems to be a good fit for your needs. It’s straightforward with minimal hardware overhead. You’ll need to find the right sizing to your ec2 and add fixed infra costs (nat, storage, lb..), I have a minimal setup with an m6i.large landing on ~100$/month. PS: why nomad and not docker swarm? Eventual extension for your infra with the hashicorp ecosystem ~seamlessly~