-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[bitnami/kibana] remove unsable function kibana_set_key_value
function and move to kibana_conf_set
#76759
base: main
Are you sure you want to change the base?
Conversation
…n and move to kibana_conf_set in containers/bitnami/kibana/8/debian-12/rootfs/opt/bitnami/scripts/libkibana.sh Signed-off-by: CHOCOLATTE <[email protected]>
Hi @chocolattej , Thanks for contributing. Have you tried to fix the typo by only changing the code below?:
with
If that fixed the reported issue, I consider it a better option. |
Hi @dgomezleon , along with this function kibana_set_key_value() {
local key="${1:?missing key}"
local value="${2:?missing value}"
debug "Storing key: ${key}"
kibana-keystore add --stdin --force "$key" <<<"$value"
} this is mannual re-produce the set_key_value_function in this line I have no name!@kibana-6c5bf7568c-fszkp:/$ kibana-keystore add --stdin --force "server.ssl.keystore.password" <<<"$SERVER_KEY_PASSWORD"
Kibana is currently running with legacy OpenSSL providers enabled! For details and instructions on how to disable see https://www.elastic.co/guide/en/kibana/8.17/production.html#openssl-legacy-provider
ERROR: Kibana keystore not found. Use 'create' command to create one. and here is the log in starting container that show before container error and tried to restart
the another solution that could be possible is find the way to import key file that |
Hi @chocolattej , Thanks for the detailed explanation.
Could you give these a try and let me know if this solution work for you? |
Description of the change
remove unsable function
kibana_set_key_value
function and move tokibana_conf_set
incontainers/bitnami/kibana/8/debian-12/rootfs/opt/bitnami/scripts/libkibana.sh
Possible drawbacks
keystore-password
in kibana.yaml might expose security concern or somethings related.Applicable issues
Additional information
and no Error logs exist on starting container process