Pieter Vogelaar
Pieter Vogelaar
For images in my private repository, some requests to registry.hub.docker.com. I pushed the public image https://hub.docker.com/r/richarvey/nginx-php-fpm/ to my private repo. And I got the errors below when I clicked it...
I discovered that when a rule, trigger, action or workflow is removed from a git repository and is no longer on the disk of a stackstorm server, the command sudo...
`Could not retrieve catalog from remote server: Error 500 on SERVER: Server Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Virtual Query, Could...
I would like to search for all servers that are not production. According to the documentation (https://docs.uchiwa.io/guides/search-queries/) this should be: ``` environment:^((?!production).)*$ ``` But nothing is found. Am I doing...
The initial converge on CentOS 7, causes chef-client to fail because of this error: ``` [2015-07-05T18:19:04+00:00] ERROR: logstash_service[default] (common::logstash line 9) had an error: Mixlib::ShellOut::ShellCommandFailed: runit_service[logstash_default] (/tmp/kitchen/cache/cookbooks/logstash/providers/service.rb line 226) had...
Is it possible to disable history for certain actions? Or keep only the newest 10 executions?
``` --- version: "2.0" my_application.deploy: description: "Workflow to deploy an application" type: direct input: - repo_url - server_application - server_role - server_environment output: stdout: tasks: get_hosts: action: my_core.get_hosts input: application:...
**/opt/stackstorm/packs/my_application/actions/deploy.yaml** ``` --- name: 'deploy' description: 'Workflow to deploy an application' runner_type: 'mistral-v2' entry_point: 'workflows/deploy.yaml' enabled: true parameters: repo_url: description: The repository URL of the (compiled) application required: true position:...
At the moment you can only define `hiera_writer_files` at one place. For example if you configure this key top scope as `provisioner` parameter and in a suite, only the one...
It would be nice to support multi stage rendering as described at https://stackoverflow.com/a/53134416/948378. ```python from jinja2 import Environment, BaseLoader,DebugUndefined rtemplate =Environment(loader=BaseLoader,undefined=DebugUndefined) \ .from_string("{{ a }} is defined, but {{ b}}...