Eugen

Results 145 comments of Eugen

When the StackStorm rpm package is installed on the box, it relies on `python3-devel` package as a dependency. In other words, we install dependency that exists in the OS system....

Thanks for more info @yypptest! `python38-devel.x86_64` is looking like a suitable package and it's available in CentOS 8 as well. ``` [vagrant@centos8 ~]$ repoquery -i python38-devel CentOS Linux 8 -...

@yypptest You need to modify the rpm packaging process to rely on the new `python38-devel` python package as a requirement and build your own st2 packages. The starting point is:...

FYI we're building RHEL8-compatible packages in a [CentOS8 environment](https://github.com/StackStorm/st2packaging-dockerfiles/blob/master/packagingbuild/centos8/Dockerfile). Based on @StackStorm/tsc maintainers meeting today https://github.com/StackStorm/community/issues/96#issuecomment-1005180964 and https://github.com/StackStorm/community/issues/88 plan as CentOS8 has reached its EOL in December 2021, we'll be...

@stevemuskiewicz Thanks! The main discussion is happening in the https://github.com/StackStorm/community/issues/88

¯\_(ツ)_/¯ Indeed, different topics, but tightly coupled. @amanda11 I guess, it makes little sense to release Rocky st2.rpm with the python3.6 as a dependency which came EOL at the same...

Yeah, sounds like a good feature request. I remember we got several reports like that before and I believe we have to put everything together and reconsider, keeping in mind...

There is some explanation in: https://github.com/StackStorm/st2/issues/3143#issuecomment-270478910. I think that statement was made from the point that possible pack content could be added via APIs, that's not present on the file...

Creating a new execution via `POST` https://api.stackstorm.com/api/v1/executions/#/action_executions_controller.post will return the execution ID for later polling so you can construct an URL, as you want. We don't want to hint or...

This would duplicate the existing API operations and might bring confusion as a result. First, you need to create an execution: * `POST http://127.0.0.1:9101/v1/executionProcessing` -> request the execution. Will return...