Julien Vey
Julien Vey
**Is your feature request related to a problem? Please describe.** It is not currently possible to declare `KafkaUser` in other namespaces than the one where the user-operator is deployed. For...
Spec reference: https://tools.ietf.org/html/rfc8216#section-4.3.5.2 According to the spec, TIME-OFFSET is a `signed-decimal-floating-point number of seconds`, so allowed values can be positive or negative, and can also be 0. (They have different...
``` ruby os.stacks = [{ name: 'mystack', template: '/path/to/my/template.yml', parameters: { router_id: '1234' } }] ```
currently, there are only few places where we handle correctly if vagrant command has been interrupted
Instead of adding username, password, tenant_name and auth url in vagrantfile, we could try to look up the standard environment variables used by openstack CLI, OS_USERNAME, OS_PASSWORD... We would do...
Currently, it only works with a yaml file, but the template could be a json file ``` ruby os.stacks = [{ name: 'mystack', template: '/path/to/my/template.json', }] ```
``` ruby os.stacks = [{ name: 'mystack', template: '/path/to/my/template.yml', environment_url: 'http://environment.heat', }] ``` `environment` and `environment_url` shouldn't be specified at the same time See #176
``` ruby os.stacks = [{ name: 'mystack', template_url: 'http://test.heat', }] ``` It should be forbidden to set `template` and `template_url` at the same time
``` ruby os.stacks = [{ name: 'mystack', template: '/path/to/my/template.yml', environment: '/path/to/my/environment.yml', }] ```