We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have followed this guide on how to setup a role with minimal permissions for KES. https://github.com/minio/kes-docs/blob/main/content/integrations/google-cloud-secret-manager.md
During testing, the Minio tenant pod went into a crashloop with the following logs:
logs:
level=ERROR msg="gcp: failed to read 'my-minio-key': rpc error: code = PermissionDenied desc = Permission 'secretmanager.versions.access' denied for resource 'projects/############/secrets/my-minio-key/versions/1'
and
``failed to create 'my-minio-key': rpc error: code = PermissionDenied desc = Permission 'secretmanager.versions.add' denied for resource 'projects/############/secrets/my-minio-key'
After adding secretmanager.versions.access and secretmanager.versions.add permissions, it worked.
secretmanager.versions.access
secretmanager.versions.add
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have followed this guide on how to setup a role with minimal permissions for KES.
https://github.com/minio/kes-docs/blob/main/content/integrations/google-cloud-secret-manager.md
During testing, the Minio tenant pod went into a crashloop with the following
logs:
level=ERROR msg="gcp: failed to read 'my-minio-key': rpc error: code = PermissionDenied desc = Permission 'secretmanager.versions.access' denied for resource 'projects/############/secrets/my-minio-key/versions/1'
and
``failed to create 'my-minio-key': rpc error: code = PermissionDenied desc = Permission 'secretmanager.versions.add' denied for resource 'projects/############/secrets/my-minio-key'
After adding
secretmanager.versions.access
andsecretmanager.versions.add
permissions, it worked.The text was updated successfully, but these errors were encountered: