Open yanivpaz opened 5 years ago
Seems that its related to https://github.com/awslabs/aws-service-operator/issues/155 --bucket is missing when creating the operator
I solved it by adding the --bucket flag: in configs/aws-service-operator.yaml args:
it seems that this bucket flag is mandatory in specific regions
The bucket
argument needs to be mandatory.
"Bucket names must be unique across all existing bucket names in Amazon S3"
https://docs.aws.amazon.com/AmazonS3/latest/dev/BucketRestrictions.html
This means the bucket argument cannot have the default argument value of aws-operator
https://github.com/awslabs/aws-service-operator/blob/76312848693937324f5920d771cde1abe2f51fdd/cmd/aws-service-operator/main.go#L57
Even generating a different default value of the s3 bucket name, using e.g. cluster-name
+ -aws-service-operator
(see https://github.com/awslabs/aws-service-operator/issues/196) may result in a bucket name that is not globally unique.
Hi There is no proper documentation on how to use