De Cero a Kubernetes Parte 5: Dos Frontends + Stack Completo
The article discusses the final part of a tutorial series on deploying applications using Kubernetes. It focuses on setting up two frontends, an administrative dashboard using React and a public app using Vue 3, both consuming the same API. The deployment process includes using Docker, nginx, and TLS for secure access.
- ▪The tutorial series culminates in deploying two independent frontends that utilize the same backend API.
- ▪The administrative dashboard is built with React and Vite, while the public app is developed using Vue 3.
- ▪Both applications are packaged with Docker and served using nginx, with TLS enabled for security.
DEV.to (Top) files mainly under programming. We currently carry 4,877 of its stories.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 2251991) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } jesus manrique Posted on May 20 • Originally published at guayoyo.tech De Cero a Kubernetes Parte 5: Dos Frontends + Stack Completo #terraform #kubernetes #tutorial #devops Serie: De Cero a Kubernetes — Parte 1 · Parte 2 · Parte 3 · Parte 4 · Parte 5 Llegaste a la última parte. Ya tienes un cluster Kubernetes real, TLS automático, GitOps con ArgoCD, PostgreSQL y un backend FastAPI corriendo con 2 réplicas. Solo falta lo que tus usuarios realmente ven: los frontends.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).