functions icon indicating copy to clipboard operation
functions copied to clipboard

Question about enabling event notification using kafka after installing with helm

Open mram0509 opened this issue 6 years ago • 0 comments

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

  1. Check all the configurable values in the Minio chart using helm inspect values stable/minio.
  2. Override the minio_server_config settings in a YAML formatted file, and then pass that file like this helm 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?

mram0509 avatar Aug 25 '19 23:08 mram0509