What should be the host name in nestjs hybrid microservice when deployed on Kubernetes – Nginx
Tech stack - nestjs - 2 microservice kubernetes - AWS EKS Ingress - nginx Hybrid const app = await NestFactory.create(AppModule); const microservice = app.connectMicroservice<MicroserviceOptions>( { transport: Transport.TCP, options: { host: process.env.TCP_HOST, port: parseInt(process.env.TCP_EVALUATION_PORT), }, }, { inheritAppConfig: true }, );…