We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Additional environment details (Operating System, Cloud provider, etc): Kubernetes
Steps to reproduce the issue:
Describe the results you received:
/entrypoint.sh: 66: [: .: unexpected operator
Describe the results you expected:
Additional information you deem important (e.g. issue happens only occasionally):
This appears to happen as the entrypoint script does not quote values when checking if they are set (see: https://github.com/DataDog/docker-dd-agent/blob/master/entrypoint.sh#L58)
As a temporary workaround, I replaced .* with .+, which does solve the issue as + is not evaluated by the shell.
.*
.+
+
The text was updated successfully, but these errors were encountered:
Hit this as well but used a different workaround of double quoted single quotes.
Sorry, something went wrong.
No branches or pull requests
Additional environment details (Operating System, Cloud provider, etc):
Kubernetes
Steps to reproduce the issue:
Describe the results you received:
/entrypoint.sh: 66: [: .: unexpected operator
in logsDescribe the results you expected:
Additional information you deem important (e.g. issue happens only occasionally):
This appears to happen as the entrypoint script does not quote values when checking if they are set (see: https://github.com/DataDog/docker-dd-agent/blob/master/entrypoint.sh#L58)
As a temporary workaround, I replaced
.*
with.+
, which does solve the issue as+
is not evaluated by the shell.The text was updated successfully, but these errors were encountered: