X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=mecm%2Fmepm%2Fapplcm%2Fresources%2Fdocker-compose.yaml;h=d64fa97331145aa01a94d0df2958a1f32fc7d0dd;hb=3de2bab9378d427f1bb43d9c517c898cdc936461;hp=300bef389f1f4776be10c69e81c3c3de5a5e153f;hpb=ee1dadbea3758d8312147eff711c4702b7bc42d5;p=ealt-edge.git diff --git a/mecm/mepm/applcm/resources/docker-compose.yaml b/mecm/mepm/applcm/resources/docker-compose.yaml index 300bef3..d64fa97 100644 --- a/mecm/mepm/applcm/resources/docker-compose.yaml +++ b/mecm/mepm/applcm/resources/docker-compose.yaml @@ -33,7 +33,7 @@ services: max-size: "30m" max-file: "5" ################################################################################# - applcm-brk: + applcm-broker: network_mode: bridge image: ealtedge/applcm-broker:latest depends_on: @@ -43,7 +43,7 @@ services: - db:dbhost - helm-plugin:helm.plugin restart: always - container_name: applcm-brk + container_name: applcm-broker environment: MYSQL_DATABASE: 'db' # So you don't have to use root, but you can if you like @@ -71,15 +71,23 @@ services: image: ealtedge/helmplugin:latest restart: always container_name: helmplugin + environment: + HELM_PLUGIN_PORT: '50051' + # Log file path, also to match dockerfile + LOGFILE_PATH: "/go/release/logfile" + LOGGER_LEVEL: "logrus.InfoLevel" + CERTIFICATE_PATH: "" + KEY_PATH: "" + # Temp chart file path, to be created in dockerfile + CHART_PATH: "/go/release/charts/" + # Kubeconfig based directory path, to be created in dockerfile, to hold kubeconfig of hosts with + KUBECONFIG_DIR_PATH: "/go/release/kubeconfig/" + # Presently all application to be deployed in same namespace, in future it can be an input while app creation + RELEASE_NAMESPACE: "default" ports: # : < Applcm helm plugin Port running inside container> - '50051:50051' expose: # Opens port 50051 on the container - - '8089' - logging: - driver: "json-file" - options: - max-size: "30m" - max-file: "5" + - '50051' # yamllint enable