Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion docs/iop.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,14 @@ Gateway certificates are configured per certificate source:

### Container Images

All IOP images default to `quay.io/iop/<service>:foreman-3.16`. Each role exposes `iop_<role>_container_image` and `iop_<role>_container_tag` variables to override.
All IOP images default to `quay.io/iop/<service>:foreman-3.18`. Each role exposes `iop_<role>_container_image` and `iop_<role>_container_tag` variables to override.

### Engine Rule Packages

The engine loads Python rule packages listed in `iop_engine_packages`. A separate `iop_engine_extra_packages` list (default: `[]`) is available for downstream deployments to add packages that are not present in the community images:

```yaml
iop_engine_extra_packages:
- "prodsec.rules"
- "telemetry.rules.plugins"
```
2 changes: 2 additions & 0 deletions src/roles/iop_engine/defaults/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ iop_engine_packages:
- "insights.specs.default"
- "insights.specs.insights_archive"
- "insights_kafka_service.rules"

iop_engine_extra_packages: []
2 changes: 1 addition & 1 deletion src/roles/iop_engine/templates/engine/config.yml.j2
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins:
default_component_enabled: true
packages:
{% for package in iop_engine_packages %}
{% for package in iop_engine_packages + iop_engine_extra_packages %}
- {{ package }}
{% endfor %}
configs: []
Expand Down
2 changes: 1 addition & 1 deletion src/roles/iop_kafka/templates/kafka/kraft.j2
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ controller.quorum.voters=1@iop-core-kafka:9093
# listeners = listener_name://host_name:port
# EXAMPLE:
# listeners = PLAINTEXT://your.host.name:9092
listeners=PLAINTEXT://iop-core-kafka:9092,CONTROLLER://iop-core-kafka:9093
listeners=PLAINTEXT://:9092,CONTROLLER://:9093

# Name of listener used for communication between brokers.
inter.broker.listener.name=PLAINTEXT
Expand Down