Skip to content

Commit

Permalink
add JIKKOU_output_format and JIKKOU_logger_level
Browse files Browse the repository at this point in the history
  • Loading branch information
gschmutz committed Apr 15, 2024
1 parent 44709ce commit 799fffb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions documentation/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,8 @@ For each service there might be some other settings, such as controlling the num
| `JIKKOU_include_resources_regexp` | `` | 1.14.0 | Use `include` option specify a regex patterns to use for including resources, when running the Jikkou tool. | | |
| `JIKKOU_set_labels` | `` | 1.14.0 | A comma separated list of `key=value` pairs, one for each label to set. | | |
| `JIKKOU_set_values` | `` | 1.14.0 | A comma separated list of `key=value` pairs, one for each value to set. | | |
| `JIKKOU_output_format` | `` | 1.18.0 | the output format to use, allowed values are `text`, `compact`, `json`, `yaml`. | | |
| `JIKKOU_logger_level` | `` | 1.18.0 | Specify the log level verbosity to be used while running a command. Valid level values are: `TRACE`, `DEBUG`, `INFO`, `WARN`, `ERROR`. | | |
| `JIKKOU_kafka_brokers_wait_for_enabled` | `true` | 1.16.0 | Wait for kafka brokers to be available. | | |
| `JIKKOU_kafka_brokers_wait_for_min_available_enabled` | `true` | 1.17.0 | Wait for the total number of Kafka brokers (value of `KAFKA_broker_nodes`) to be available. | | |
| `JIKKOU_kafka_brokers_wait_for_retry_backoff_ms` | `10000` | 1.17.0 | The amount of time to wait before verifying that brokers are available. | | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3366,7 +3366,7 @@ services:
{% if JIKKOU_use_dryrun | default(false) %}
- "--dry-run"
{% endif -%} {# JIKKOU_use_verbose_option #}
{% if JIKKOU_logger_level is defined JIKKOU_logger_level and JIKKOU_logger_level | length default(false) %}
{% if JIKKOU_logger_level is defined and JIKKOU_logger_level and JIKKOU_logger_level | length default(false) %}
- "--logger-level"
- "{{JIKKOU_logger_level | upper}}"
{% endif -%} {# JIKKOU_logger_level #}
Expand Down

0 comments on commit 799fffb

Please sign in to comment.