Oleksandr Shmyrko

Results 12 comments of Oleksandr Shmyrko

See [the comment here](https://github.com/webmin/webmin/issues/744#issuecomment-386294075) in issues #744.

It's a pity that this plugin has been deprecated, since it is still widely used, and Jenkins Pipeline cannot cover all the features and needs that this plugin does. I'm...

They don't want to add one line into configuration file to simplify image usage for hundreds of people, people won't use their image. I personally prefer to use mysql, and...

@tomasmota, nice solution. I've shortened it to this one: ```terraform # Convert camelCase or PascalCase to kebab-case lower(replace("myCamelCaseString", "/([a-z0-9])([A-Z])/", "$1-$2")) ```

@jadn123, try this: ```terraform lower(replace("myCamelCaseString", "/([a-z0-9])([A-Z])/", "$${1}_$${2}")) ``` Seems that underscore after `$1` is perceived as a continuation of the variable name. Source https://github.com/hashicorp/terraform/issues/19970.

It seems there are no easy and elegant solutions. You will probably need to create multiple statements in trust policy for each cluster: ```json { "Version": "2012-10-17", "Statement": [ {...

@vikaskoppineedi, I would also rename this issue to something like "1 role for multiple namespaces and multiple clusters" to better understand the context.

@belimawr, all my filestream inputs have unique IDs (you can see them below), and I've just reproduced this issue with Filebeat `8.11.3`: ```yaml # cat /etc/filebeat/inputs.d/app-log.yml - type: filestream id:...

@belimawr, just want to add some details. I was able to reproduce this on the system with a high number of log messages per second. Also, I had to wait...

@belimawr, thank you for the effort you spent on this testing to reproduce the issue. If you want, I can try to collect more logs and details for this issue...