Skip to content
Closed
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
2 changes: 1 addition & 1 deletion horizon/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.1.17
version: 1.1.18

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
5 changes: 5 additions & 0 deletions horizon/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,11 @@ kubectl create configmap -n $instance $configmap --from-file=lots-of-zeros.zip
| core.configuration.timeSeriesStrategy | string | `"rrd"` | |
| core.configuration.tolerations | string | `nil` | |
| core.configuration.webBaseUrlScheme | string | `"https"` | |
| core.configuration.opennms_log_console_startup_output | string | `"ConsolePlain"` | |
| core.configuration.opennms_log_console_daemon_output | string | `"ConsolePlain"` | |
| core.configuration.opennms_log_distribution | string | `"horizon"` | |
| core.configuration.opennms_enviroment | string | `"unspecified"` | |
| core.configuration.opennms_instance_id | string | `"OpenNMS"` | |
| core.image.pullPolicy | string | `"IfNotPresent"` | |
| core.image.repository | string | `"opennms/horizon"` | |
| core.image.tag | string | `""` | |
Expand Down
4 changes: 4 additions & 0 deletions horizon/templates/app-settings.configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ data:
OPENNMS_DATABASE_CONNECTION_MINPOOL: {{ .Values.core.configuration.database.minPool | default "25" | quote }}
OPENNMS_DATABASE_CONNECTION_MAXPOOL: {{ .Values.core.configuration.database.maxPool | default "50" | quote }}
OPENNMS_WEB_BASEURL_SCHEME: {{ .Values.core.configuration.webBaseUrlScheme | quote }}
OPENNMS_LOG_CONSOLE_STARTUP_OUTPUT: {{ .Values.core.configuration.opennms_log_console_startup_output | quote }}
OPENNMS_LOG_CONSOLE_DAEMON_OUTPUT: {{ .Values.core.configuration.opennms_log_console_daemon_output | quote }}
OPENNMS_LOG_DISTRIBUTION: {{ .Values.core.configuration.opennms_log_distribution | quote }}
OPENNMS_ENVIRONMENT: {{ .Values.core.configuration.opennms_environment | quote }}
ENABLE_ALEC: {{ ((.Values.core).configuration).enableAlec | default "false" | quote }}
ENABLE_ACLS: {{ ((.Values.core).configuration).enableAcls | default "false" | quote }}
CORE_SERVICE_ALARMD_ENABLED: {{ .Values.core.configuration.services.alarmd.enabled | quote }}
Expand Down
22 changes: 22 additions & 0 deletions horizon/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,28 @@
"enum": ["http", "https"],
"default": "https"
},
"opennms_log_console_startup_output": {
"type": "string",
"enum": ["ConsolePlain", "ConsoleJson", "ConsoleNull"],
"default": "ConsolePlain"
},
"opennms_log_console_daemon_output": {
"type": "string",
"enum": ["ConsolePlain", "ConsoleJson", "ConsoleNull"],
"default": "ConsolePlain"
},
"opennms_log_distribution": {
"type": "string",
"default": "horizon"
},
"opennms_environment": {
"type": "string",
"default": ""
},
"opennms_instance_id": {
"type": "string",
"default": "OpenNMS"
},
"services": {
"type": "object",
"title": "Services",
Expand Down
5 changes: 5 additions & 0 deletions horizon/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,11 @@ core:
enableTssDualWrite: false
enableAcls: false
webBaseUrlScheme: https
opennms_log_console_startup_output: ConsolePlain
opennms_log_console_daemon_output: ConsolePlain
opennms_log_distribution: horizon
opennms_enviroment: ''
opennms_instance_id: OpenNMS
services:
alarmd:
enabled: true
Expand Down
Loading