Use env in service manifests for PORT (#212)

* fix shipping service ports

* fix product catalog servicde ports

* fix paymentservice ports

* fix currenservice ports

* fix checkoutservice ports

* fix emailservice ports

* fix frontend app ports

* fix recommendationservice ports

* fix indentation in service yaml files
This commit is contained in:
Abhilash Gnan 2019-05-09 04:39:14 +02:00 committed by Ahmet Alp Balkan
parent 876d4f966f
commit 55f5061532
12 changed files with 33 additions and 9 deletions

View file

@ -36,7 +36,7 @@ const protoLoader = require('@grpc/proto-loader');
const MAIN_PROTO_PATH = path.join(__dirname, './proto/demo.proto');
const HEALTH_PROTO_PATH = path.join(__dirname, './proto/grpc/health/v1/health.proto');
const PORT = 7000;
const PORT = process.env.PORT;
const shopProto = _loadProto(MAIN_PROTO_PATH).hipstershop;
const healthProto = _loadProto(HEALTH_PROTO_PATH).grpc.health.v1;

View file

@ -27,7 +27,7 @@ const logger = pino({
});
class HipsterShopServer {
constructor (protoRoot, port = HipsterShopServer.DEFAULT_PORT) {
constructor (protoRoot, port = HipsterShopServer.PORT) {
this.port = port;
this.packages = {
@ -99,6 +99,6 @@ class HipsterShopServer {
}
}
HipsterShopServer.DEFAULT_PORT = 50051;
HipsterShopServer.PORT = process.env.PORT;
module.exports = HipsterShopServer;

View file

@ -50,7 +50,7 @@ var (
log *logrus.Logger
extraLatency time.Duration
port = flag.Int("port", 3550, "port to listen at")
port = "3550"
reloadCatalog bool
)
@ -106,13 +106,16 @@ func main() {
}
}()
log.Infof("starting grpc server at :%d", *port)
run(*port)
if os.Getenv("PORT") != "" {
port = os.Getenv("PORT")
}
log.Infof("starting grpc server at :%s", port)
run(port)
select {}
}
func run(port int) string {
l, err := net.Listen("tcp", fmt.Sprintf(":%d", port))
func run(port string) string {
l, err := net.Listen("tcp", fmt.Sprintf(":%s", port))
if err != nil {
log.Fatal(err)
}

View file

@ -60,7 +60,7 @@ func main() {
go initProfiling("shippingservice", "1.0.0")
port := defaultPort
if value, ok := os.LookupEnv("APP_PORT"); ok {
if value, ok := os.LookupEnv("PORT"); ok {
port = value
}
port = fmt.Sprintf(":%s", port)