Skip to content
New issue

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

feat: Update crunchy postgres-operator CRDs to latest v1beta1 #273

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions postgres-operator.crunchydata.com/pgupgrade_v1beta1.json
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@
},
"fromPostgresVersion": {
"description": "The major version of PostgreSQL before the upgrade.",
"maximum": 15,
"maximum": 16,
"minimum": 10,
"type": "integer"
},
Expand Down Expand Up @@ -802,7 +802,7 @@
},
"toPostgresVersion": {
"description": "The major version of PostgreSQL to be upgraded to.",
"maximum": 15,
"maximum": 16,
"minimum": 10,
"type": "integer"
},
Expand Down
16 changes: 15 additions & 1 deletion postgres-operator.crunchydata.com/postgrescluster_v1beta1.json
Original file line number Diff line number Diff line change
Expand Up @@ -8611,7 +8611,7 @@
},
"postgresVersion": {
"description": "The major version of PostgreSQL installed in the PostgreSQL image",
"maximum": 15,
"maximum": 16,
"minimum": 10,
"type": "integer"
},
Expand Down Expand Up @@ -12888,6 +12888,16 @@
"type": "object",
"additionalProperties": false
},
"registrationRequired": {
"description": "Version information for installations with a registration requirement.",
"properties": {
"pgoVersion": {
"type": "string"
}
},
"type": "object",
"additionalProperties": false
},
"startupInstance": {
"description": "The instance that should be started first when bootstrapping and/or starting a PostgresCluster.",
"type": "string"
Expand All @@ -12896,6 +12906,10 @@
"description": "The instance set associated with the startupInstance",
"type": "string"
},
"tokenRequired": {
"description": "Signals the need for a token to be applied when registration is required.",
"type": "string"
},
"userInterface": {
"description": "Current state of the PostgreSQL user interface.",
"properties": {
Expand Down