-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1299 menas configuration: secure schema registry
- Loading branch information
Showing
4 changed files
with
72 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
- name: menas.schemaRegistryBaseUrl | ||
options: | ||
- name: string with URL | ||
description: 'Base Url to (secure) schema registry. E.g.: | ||
<code>https://localhost:8081</code>' | ||
- name: javax.net.ssl.trustStore | ||
options: | ||
- name: string path to JKS file | ||
description: 'TrustStore file containing records of trusted certificates to connect to a secure schema registry. | ||
E.g.: <code>/path/to/truststore.jks</code>' | ||
- name: javax.net.ssl.trustStorePassword | ||
options: | ||
- name: string | ||
description: 'Password for the file referenced in <code>javax.net.ssl.trustStore</code>. E.g.: | ||
<code>password123</code>' | ||
- name: javax.net.ssl.keyStore | ||
options: | ||
- name: string path to JKS file | ||
description: 'KeyStore file containing records of private keys to connect to a secure schema registry. | ||
E.g.: <code>/path/to/keystore.jks</code>' | ||
- name: javax.net.ssl.keyStorePassword | ||
options: | ||
- name: string | ||
description: 'Password for the file referenced in <code>javax.net.ssl.keyStore</code>. E.g.: | ||
<code>password1234</code>' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
layout: docs | ||
title: Usage - Menas Configuration | ||
version: '2.0.0' | ||
categories: | ||
- '2.0.0' | ||
- usage | ||
--- | ||
## Table Of Contents | ||
<!-- toc --> | ||
- [Table Of Contents](#table-of-contents) | ||
- [Intro](#intro) | ||
- [General options](#general-options) | ||
<!-- tocstop --> | ||
|
||
## Intro | ||
|
||
This page describes the usage of configuration of _Menas_. | ||
This page describes the configuration values stored in `menas`'s `application.properties` (or its | ||
[template][app-props-template]). | ||
|
||
## General options | ||
|
||
{% include config_options.html file="menas-configuration_2_0_0" %} | ||
|
||
Note, that | ||
- `menas.schemaRegistryBaseUrl` may not be present (in that case, the option to load schema from a schema registry | ||
by subject name will disappear in the Menas UI) | ||
- specifying `javax.net.ssl.{trustStore|keyStore}` (and the passwords) is usually both necessary to successfully load | ||
a schema file from a secure schema registry, but this setting will be used by the by-URL loading as well | ||
(if supported by webserver reached) | ||
|
||
|
||
[readme]: https://github.com/AbsaOSS/enceladus/blob/master/README.md | ||
[app-props-template]: https://github.com/AbsaOSS/enceladus/blob/master/menas/src/main/resources/application.properties.template |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
layout: redirect | ||
title: Usage - Menas Configuration | ||
permalink: /docs/usage/menas-config | ||
--- |