provider-sql icon indicating copy to clipboard operation
provider-sql copied to clipboard

An SQL provider for @crossplane

Results 50 provider-sql issues
Sort by recently updated
recently updated
newest added

Grant deletion never occurs, and this warning repeats endlessly: ``` Warning CannotObserveExternalResource managed/grant.mysql.sql.crossplane.io cannot show current grants: Error 1141: There is no such grant defined for user 'test-app' on host...

bug

### What problem are you facing? On [AWS Provider](https://doc.crds.dev/github.com/crossplane/provider-aws/database.aws.crossplane.io/RDSInstance/[email protected]) we can find that connection secrets are exposed by two ways: - `writeConnectionSecretToRef` - documentation says that this field is planned...

enhancement

### Description of your changes Based on work by @jastang in another repo. Updates the build machinery to build bundled provider packages, as well as publish to crossplane-contrib OCI repos...

### What problem are you facing? When creating a mysql database, I'm missing a feature to specify the CHARACTER SET and the COLLATION of the database (See https://dev.mysql.com/doc/refman/8.0/en/create-database.html). When I...

enhancement

### What happened? Multiple `User` objects enter into `ReconcileError` state with the following error: ``` observe failed: cannot select user: Error 1615: Prepared statement needs to be re-prepared ``` The...

bug

### What problem are you facing? I am using FluxCD to reconcile my crossplane resources in my k8s cluster. I provision a database on AWS RDS with ``` apiVersion: v1...

enhancement

### What problem are you facing? Secret is empty when Crossplane is taking control over existing role in the database. Expected it to be propagated with values, like when creating...

enhancement

### What problem are you facing? I would like to grant permission for Postgresql database From my understard , if we only grant permission to the database without DefaultPrivileges new...

enhancement

### What happened? It might happen that a race-condition in crossplane might lead to a reconcileError, because the secret has already been deleted. This can easily be observed by looking...

bug

### What problem are you facing? Currently, `MySQLConnectionSecret` expects a `Secret` object as per: ``` kubectl create secret generic db-conn \ --from-literal=username=admin \ --from-literal=password='t0ps3cr3t' \ --from-literal=endpoint=my.sql-server.com \ --from-literal=port=3306 ``` This...

enhancement