functions
functions copied to clipboard
minio-resize on minikube
I'm trying to deploy minio-resize on minikube (v0.28.0). I installed kubeless (v0.6.0) and deployed the kafka-zookeeper.yaml of the same version. I installed Minio as recommended here. I enabled kafka on .minio/config.json (I'm not sure if this file is gonna be used because I installed minio for linux before following the tutorial for minikube)
"kafka": {
"1": {
"enable": true,
"brokers": ["localhost:9092"],
"topic": "minio_new_object"
}
},
The bucket creation is fine. However when I add the event I get the following issue:
$ mc events add localminio/foobar arn:minio:sqs:us-east-1:1:kafka --events put
mc: <ERROR> Cannot enable notification on the specified bucket. A specified destination ARN does not exist or is not well-formed. Verify the destination ARN.
It has something to deal with the kafka configuration but I can't find the right documentation.