Skip to content

aerie-workspace Healthcheck command typo #1754

@leemachine

Description

@leemachine

Checked for duplicates

Yes - I've already checked

Is this a regression?

No - This is a new bug

Version

v3.7.1

Describe the bug

The Docker Healthcheck for Aerie Workspace has an extra hyphen in the curl command. This results in the healthcheck never returning healthy.

CMD curl --sf http://localhost/:$PORT/health || exit 1

Should be:
CMD curl -sf http://localhost/:$PORT/health || exit 1

Reproduction

As executed in the container

root@e8097cd81aac:/usr/src/app# curl --sf localhost:28000/health ; echo $?
curl: option --sf: is unknown
curl: try 'curl --help' or 'curl --manual' for more information
2

When omitting the extra hyphen

root@e8097cd81aac:/usr/src/app# curl -sf localhost:28000/health ; echo $?
0

Logs

System Info

Chrome, RHEL8.10

Severity

Minor

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    Status

    Todo

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions