Olivier Bourdon

Results 58 comments of Olivier Bourdon

@westwin @drhuh, guys from what you are respectively writing, it seems to me that you are contradicting each another. Doing more tests on my side showed that @drhuh is right...

@michalgardela not sure if this will fix your issue but you have 2 occurrences of entry `command` in the openldap section of your docker compose file (`--copy-service` and `--loglevel debug`)....

@ajeecai Can you also post the contents of your docker-compose.yml file please ? By experience, `similar` is not something we can rely on to do proper debugging and help you...

@mathieudevos not sure I fully understand what you are asking here. Do you already have a running instance of osixia/openldap for which you want to change configuration and add .schema...

@jmazzitelli my take is that you need to add a line like `args: ["--loglevel", "debug"]` to your YAML deployment file like explained [here](https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/) or [here](https://docs.openshift.com/enterprise/3.2/dev_guide/deployments.html#executing-commands-inside-a-container-deployments)

@jmazzitelli would you like sharing your YAML file here please ? What is strange is that because of the lines `*** CONTAINER_LOG_LEVEL = 5 (trace)` and `*** CONTAINER_LOG_LEVEL = 4...

@jmazzitelli did you also look at the pod logs ? You are only referring to the output here. I guess this should be something like: ``` oc logs ```

@jmazzitelli as you can see in your previous post: `*** CONTAINER_LOG_LEVEL = 3 (info)` this is the default behaviour without much traces. There is no = between --loglevel and debug...

@divramod may be [this link](https://stackoverflow.com/questions/26152088/access-a-map-value-using-a-variable-key-in-a-go-template) could help you (at least it did for me). In my case I wrote something for a map of K/V (Tags) like: ``` --- excerpt...

even better so that everything is on different lines for real: ``` public name: {{ .PublicName }} {{ if index .Tags "Project" }}project: {{ index .Tags "Project" }} {{ end...