Closed zzxwill closed 3 years ago
@zzxwill I am going to move this over to the provider-alibaba
repo :+1:
By editing CustomResourceDefinition postgresqlinstances.database.crossplane.io
and adding engineversion
9.4
, I could deployed a PostgreSqlinstance successfully.
engineVersion:
description: 'EngineVersion specifies the desired PostgreSQL engine
version. Allowed Versions: 9.6 and 11.'
enum:
- "9.6"
- "11"
- "9.4"
type: string
The RDS doc said The database engine and engine version that the RDS instance is running. Select PostgreSQL. Supported PostgreSQL versions are 9.4, 10, 11, and 12.
So I plan to modify the lines near https://github.com/crossplane/crossplane/blob/master/cluster/charts/crossplane-types/crds/database.crossplane.io_postgresqlinstances.yaml#L147 by creating an PR.
@zzxwill I am going to move this over to the
provider-alibaba
repo 👍
Okay, thanks. I am hesitated to decide which repo should I open this issue, crossplane
or provider-alibaba
. By investigation above, the root cause might locate in this repo, so I created it here. But I think you are right with the transfer. Thanks.
Moreover, the English version of RDS creation specification is wrong, those allowed engine version should among 9.4/10.0/11.0/12.0
per the Chinese version which I also verified myself.
Implemented by the linked PR.
What happened?
Followed provider-alibaba README to
make demo
for the PoC, I hit an issue.How can we reproduce it?
Followed provider-alibaba README