Question about enabling event notification using kafka after installing with helm
I am also trying to enable kafka notification for buckets.
https://github.com/helm/charts/pull/534/commits/3c06eb4cf5c59d7084bcb3a46f917f3b31e9bdda# - says
To update your Minio server configuration while it is deployed in a release, you need to
- Check all the configurable values in the Minio chart using
helm inspect values stable/minio. - Override the
minio_server_configsettings in a YAML formatted file, and then pass that file like thishelm upgrade -f config.yaml stable/minio.
Git comments also say:
minio_server_config: config.json: | { "region": "us-east-1", "browser": "on", "logger": { "console": { "enable": true }, "file": { "enable": false, "filename": "" } }, "notify": { "kafka": { "1": { "enable": true, "brokers": ["kafka:9092"], "topic": "minio-topic" } } } }
I have upgrade the helm release with the above added to the YAML. But I don't see the SQS ARN being created when I check the logs of the pod. The minio service is working - but the SQS ARN does not seem to be created.
Is there a sample on how to do this?