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
If setting an upstream annotation like:
"consul.hashicorp.com/connect-service-upstreams": "static-server:1234:dc2"
The environment variables STATIC_SERVER_CONNECT_SERVICE_HOST=127.0.0.1, STATIC_SERVER_CONNECT_SERVICE_PORT=1234 aren't injected.
STATIC_SERVER_CONNECT_SERVICE_HOST=127.0.0.1
STATIC_SERVER_CONNECT_SERVICE_PORT=1234
This is due to the logic here: https://github.com/hashicorp/consul-k8s/blob/master/connect-inject/container_env.go#L18-L20 which doesn't account for the colon-separated datacenter.
The text was updated successfully, but these errors were encountered:
Fixed by #250
Sorry, something went wrong.
Merge pull request hashicorp#246 from hashicorp/acl-hook
223e904
Add server-acl-init-cleanup job
No branches or pull requests
If setting an upstream annotation like:
The environment variables
STATIC_SERVER_CONNECT_SERVICE_HOST=127.0.0.1
,STATIC_SERVER_CONNECT_SERVICE_PORT=1234
aren't injected.This is due to the logic here: https://github.com/hashicorp/consul-k8s/blob/master/connect-inject/container_env.go#L18-L20 which doesn't account for the colon-separated datacenter.
The text was updated successfully, but these errors were encountered: