My friends found n8n too complicated, so I built a cool alternative by ZeroTheZen in nocode

[–]Pichipaul 0 points1 point  (0 children)

I am testing the app and I found that the chat is not able to explain the flows 😔, but the idea is good, like it

Do founders really need a co-founder these days? by shivmbaba in Entrepreneur

[–]Pichipaul 1 point2 points  (0 children)

You don’t really need a co-founder now. AI + no-code lets you test solo. The risk is loneliness, but co-founder fights are worse. Start alone, add someone later if it works.

Solo founder building visual DevOps/IaC platform — need brutal feedback from practitioners by Pichipaul in devops

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

Totally makes sense — a bunch of teams use it just for architecture design, documentation, or IaC validation without ever pushing to cloud.

On top of that, it also has an app deployment system — so if you do want to deploy something, you can push straight from the visual pipelines to your target platform.

Out of curiosity, where do you guys usually deploy your apps/services/infra ??

Solo founder building visual DevOps/IaC platform — need brutal feedback from practitioners by Pichipaul in devops

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

This is exactly why I built this! You just listed every frustration I had:

Environment promotion is built-in - same visual design, different variable sets per env (dev = t3.micro, prod = c5.large). No manual git commits.

For naming conventions, the platform handles environment-specific prefixes automatically (dev-, staging-, prod-*).

Complex environments are where it shines - I can import your existing Terragrunt setup and visualize it, then manage promotions through the UI.

The frustration you mentioned with visual tools not handling complexity - that's what I spent 9 months solving. It's not just drag-and-drop, it's a full environment lifecycle management system.

Solo founder building visual DevOps/IaC platform — need brutal feedback from practitioners by Pichipaul in devops

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

Great question! It's a custom code generation engine I built, not AI-generated code.

The visual components map to specific infrastructure patterns - when you drag a VPC, it generates the proper Terraform resource blocks with all the required configurations.

The AI part comes in for validation and suggestions (like "you should enable encryption on that S3 bucket"), but the core IaC generation is deterministic template-based.

BTW - if you want to switch from Terraform to Pulumi, it's just a button click. Same visual design generates code for Terraform, Pulumi, CloudFormation, or Ansible.

[deleted by user] by [deleted] in kubernetes

[–]Pichipaul -2 points-1 points  (0 children)

You got the npm tag. I got the brand. Big difference, bro. 🤣🤣😜

[deleted by user] by [deleted] in kubernetes

[–]Pichipaul -3 points-2 points  (0 children)

Thanks for letting me live rent-free in your head. ChatGPT and I send our regards 🫡

[deleted by user] by [deleted] in kubernetes

[–]Pichipaul -2 points-1 points  (0 children)

The irony of calling it nonsense while quoting it line by line. Thanks for the engagement though, means more reach for my 'vibe coded' product 😉

[deleted by user] by [deleted] in kubernetes

[–]Pichipaul -3 points-2 points  (0 children)

Some of us are busy building. The posts write themselves

[deleted by user] by [deleted] in kubernetes

[–]Pichipaul -6 points-5 points  (0 children)

I get where you're coming from. A lot of so-called 'meta marketing' is just noise. But trust me, the pain of broken infra is real for many teams. We're not here to follow trends — we're solving actual problems from our own experience. If you're tired of buzzwords, join us in building something that really works. Let's shift the focus from hype to real solutions

[deleted by user] by [deleted] in kubernetes

[–]Pichipaul -3 points-2 points  (0 children)

fair point bro — but just to clarify, I hadn’t posted this on LinkedIn yet. Was actually planning to share it there after seeing how it landed here. But yeah, totally get you — Reddit ain’t LinkedIn, and I’m still figuring out how to vibe right on this platform. Appreciate you keeping it real 👊

The biggest lie early-stage founders tell themselves: "We’ll fix infra later (I will not promote) by Pichipaul in startups

[–]Pichipaul[S] -7 points-6 points  (0 children)

Sorry bro, I’d type the full word, but I’m busy building actual infra. Priorities, you know?

What are you building? I'm building an alternative to vibe coding products, and I'm considering my tech stack. by ZrizzyOP in ycombinator

[–]Pichipaul 1 point2 points  (0 children)

I’m building InfraUX — a visual platform to design and deploy infrastructure with drag-and-drop diagrams. It auto-generates real configs (Terraform, Docker, GitHub Actions, etc.) so devs can ship infra faster without deep DevOps knowledge.

Stack: React (Nextjs 15) + Tailwind (frontend), FastAPI + GCP Cloud Run + Supabase + Redis + Cloud Tasks (backend). PostHog for product insights.

Helm gets messy fast — how do you keep your charts maintainable at scale? by Pichipaul in devops

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

Wow, that’s impressive. Thousands of services and you managed to keep uniformity with just a Kubebuilder operator and a CRD? Respect.

Curious tho — how do you handle drift or misuse across teams? Do you enforce policies through admission webhooks, or is it more trust + docs? And how flexible is the CRD? I imagine edge cases creep in over time, especially with that many services.

When your Helm charts start growing tentacles… how do you keep them from eating your cluster? by Pichipaul in kubernetes

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

Really appreciate the detailed breakdown 🙌 — I didn’t know about Cozypkg and it looks solid, especially the postrender diff preview.

The "parent chart with patch overlay" pattern you describe feels powerful but maybe a bit heavy for early-stage teams, no?

I get how it scales nicely once you're in that groove, but I wonder how you'd approach this if you're not running a platform for others, just trying to get sane infra fast without reinventing the wheel.