bump to v1.8.1
This commit is contained in:
parent
a77d5df158
commit
64c2d7d847
|
|
@ -1,7 +1,7 @@
|
|||
apiVersion: v1
|
||||
apiVersion: v2
|
||||
name: postgres-operator-ui
|
||||
version: 1.8.0
|
||||
appVersion: 1.8.0
|
||||
version: 1.8.1
|
||||
appVersion: 1.8.1
|
||||
home: https://github.com/zalando/postgres-operator
|
||||
description: Postgres Operator UI provides a graphical interface for a convenient database-as-a-service user experience
|
||||
keywords:
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
apiVersion: v1
|
||||
apiVersion: v2
|
||||
name: postgres-operator
|
||||
version: 1.8.0
|
||||
appVersion: 1.8.0
|
||||
version: 1.8.1
|
||||
appVersion: 1.8.1
|
||||
home: https://github.com/zalando/postgres-operator
|
||||
description: Postgres Operator creates and manages PostgreSQL clusters running in Kubernetes
|
||||
keywords:
|
||||
|
|
|
|||
|
|
@ -238,6 +238,7 @@ type ConnectionPooler struct {
|
|||
*Resources `json:"resources,omitempty"`
|
||||
}
|
||||
|
||||
// Stream defines properties for creating FabricEventStream resources
|
||||
type Stream struct {
|
||||
ApplicationId string `json:"applicationId"`
|
||||
Database string `json:"database"`
|
||||
|
|
@ -246,6 +247,7 @@ type Stream struct {
|
|||
BatchSize *uint32 `json:"batchSize,omitempty"`
|
||||
}
|
||||
|
||||
// StreamTable defines properties of outbox tables for FabricEventStreams
|
||||
type StreamTable struct {
|
||||
EventType string `json:"eventType"`
|
||||
IdColumn *string `json:"idColumn,omitempty"`
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ const (
|
|||
alterRoleSetSQL = `ALTER ROLE "%s" SET %s TO %s`
|
||||
dropUserSQL = `SET LOCAL synchronous_commit = 'local'; DROP ROLE "%s";`
|
||||
grantToUserSQL = `GRANT %s TO "%s"`
|
||||
revokeFromUserSQL = `REVOKE %s FROM %s`
|
||||
revokeFromUserSQL = `REVOKE "%s" FROM "%s"`
|
||||
doBlockStmt = `SET LOCAL synchronous_commit = 'local'; DO $$ BEGIN %s; END;$$;`
|
||||
passwordTemplate = "ENCRYPTED PASSWORD '%s'"
|
||||
inRoleTemplate = `IN ROLE %s`
|
||||
|
|
|
|||
Loading…
Reference in New Issue