Stephane Maarek

Results 53 issues of Stephane Maarek

Please update Dockerfile to 1.3.3.0 and push image to Docker hub? See https://github.com/yahoo/kafka-manager/commit/0690519ae3afee433c1072d89971dfd4dd129f2d

Just wondering if you have anything against it. Should be really quick, I can do a PR if you like

thoughts about supporting basic_auth ? Basically I'm thinking of `VIRTUAL_BASIC_AUTH=admin:hashedpassword` by leveraging apache2-utils. Each container could optionally have that variable which would allow us to generate the htpassword dynamically at...

It seems that docker-gen as of 0.4.0 supports placing some variables in labels instead of environment variables, which is a bit cleaner. https://github.com/jwilder/nginx-proxy/issues/172#issuecomment-107810833 Thoughts on implementing this? I could try...

Don't know if helpful, but to redirect http to https, I used this code: https://stackoverflow.com/a/35097290/3019499 ``` server { listen 81; return 301 https://$host$request_uri; } ``` Then the ELB listens on...

If you run your tasks without specifying the host port mapping, they get a random port assigned. Should you run say the same task on 3 machines, but the ecs...

Overall, I would be overly cautious about that kafka-ready script, and would love to have an environment variable to disable it. It causes a lot of issue on our end...

The schema registry accepts a schema change from: ``` { "type": "record", "namespace": "com.example", "name": "CustomerV1", "fields": [ { "name": "first_name", "type": "string", "doc": "First Name of Customer" } ]...