Skip to content

Commit 65e9da5

Browse files
author
Jonathan Chauncey
committed
fix(logger): Update the port that workflow uses to find logger
1 parent 47d7619 commit 65e9da5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

client/controller/models/apps/apps.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ func Logs(c *client.Client, appID string, lines int) (string, error) {
104104
2) If you just installed the logger components via the chart, please make sure you restarted the workflow pod.
105105
3) The application is writing logs to the logger component.
106106
You can verify that logs are appearing in the logger component by issuing the following command:
107-
curl http://<log service ip>:8088/logs/%s on a kubernetes host.
107+
curl http://<log service ip>:80/logs/%s on a kubernetes host.
108108
To get the service ip you can do the following: kubectl get svc deis-logger --namespace=deis`, appID)
109109
}
110110

rootfs/deis/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@
270270

271271
# logger settings
272272
LOGGER_HOST = os.environ.get('DEIS_LOGGER_SERVICE_HOST', '127.0.0.1')
273-
LOGGER_PORT = os.environ.get('DEIS_LOGGER_PORT_8088_TCP_PORT', 8088)
273+
LOGGER_PORT = os.environ.get('DEIS_LOGGER_SERVICE_PORT_HTTP', 80)
274274

275275
# check if we can register users with `deis register`
276276
REGISTRATION_ENABLED = True

0 commit comments

Comments
 (0)