diff --git a/charts/postgres-operator/crds/operatorconfigurations.yaml b/charts/postgres-operator/crds/operatorconfigurations.yaml index 603004caa..1670e756a 100644 --- a/charts/postgres-operator/crds/operatorconfigurations.yaml +++ b/charts/postgres-operator/crds/operatorconfigurations.yaml @@ -128,6 +128,9 @@ spec: password_rotation_interval: type: integer default: 90 + password_rotation_user_retention: + type: integer + default: 180 replication_username: type: string default: standby diff --git a/docs/administrator.md b/docs/administrator.md index 551ee5523..00922fd48 100644 --- a/docs/administrator.md +++ b/docs/administrator.md @@ -293,6 +293,62 @@ that are aggregated into the K8s [default roles](https://kubernetes.io/docs/refe For Helm deployments setting `rbac.createAggregateClusterRoles: true` adds these clusterroles to the deployment. +## Password rotation in K8s secrets + +The operator regularly updates credentials in the K8s secrets if the +`enable_password_rotation` option is set to `true` in the configuration. +It happens only for LOGIN roles with an associated secret (manifest roles, +default user from `preparedDatabases`, system users). Furthermore, there +the following roles are excluded: + +1. Infrastructure role secrets since rotation should happen by the infrastructure. +2. Team API roles that connect via OAuth2 and JWT token. Rotation should be provided by the infrastructure + there is even no secret for these roles +3. Database owners and members of owners, since ownership can not be inherited. + +The interval of days can be set with `password_rotation_interval` (default +`90` = 90 days, minimum 1). On each rotation the user name and password values +are replaced in the secret. They belong to a newly created user named after +the original role plus rotation date in YYMMDD format. All priviliges are +inherited meaning that migration scripts continue to apply grants/revokes +against the original role. The timestamp of the next rotation is written to +the secret as well. + +Pods still using the previous secret values in memory continue to connect to +the database since the password of the corresponding user is not replaced. +However, a retention policy can be configured for created roles by password +rotation with `password_rotation_user_retention`. The operator will ensure +that this period is at least twice as long as the configured rotation +interval, hence the default of `180` = 180 days. + +### Password rotation for single roles + +From the configuration, password rotation is enabled for all secrets with the +mentioned exceptions. If you wish to first test rotation for a single user (or +just have it enabled only for a few secrets) you can specify it in the cluster +manifest. The rotation and retention intervals can only be configured globally. + +``` +spec: + usersWithSecretRotation: "foo_user,bar_reader_user" +``` + +### Password replacement without extra roles + +For some use cases where the secret is only used rarely - think of a `flyway` +user running a migration script on pod start - we do not need to create extra +database roles but can replace only the password in the K8s secret. This type +of rotation cannot be configured globally but specified in the cluster +manifest: + +``` +spec: + usersWithInPlaceSecretRotation: "flyway,bar_owner_user" +``` + +This would be the recommended option to enable rotation in secrets of database +owners, But only if they are not used as application users for regular read +and write operation. + ## Use taints and tolerations for dedicated PostgreSQL nodes To ensure Postgres pods are running on nodes without any other application pods, diff --git a/docs/reference/operator_parameters.md b/docs/reference/operator_parameters.md index 6efae773d..4a67ace09 100644 --- a/docs/reference/operator_parameters.md +++ b/docs/reference/operator_parameters.md @@ -174,6 +174,28 @@ under the `users` key. Postgres username used for replication between instances. The default is `standby`. +* **enable_password_rotation** + For all LOGIN roles that are not database owners the Operator can rotate + credentials in the corresponding K8s secrets by replacing the username and + password. This means, new users will be added on each rotation inheriting + all priviliges from the original roles. The rotation date in the YYMMDD is + appended to the new user names. The timestamp of the next rotation is + written to the secret. The default is `false`. + +* **password_rotation_interval** + If password rotation is enabled (either from config or cluster manifest) the + interval can be configured with this parameter. The measure is in days which + means daily rotation (`1`) is the most frequent interval possible. + Default is `90`. + +* **password_rotation_user_retention** + To avoid an ever growing amount of new users due to password rotation the + operator will remove the created users again after a certain amount of days + has passed. The number can be configured with this parameter. However, the + operator will check that the retention policy is at least twice as long as + the rotation interval and update to this minimum in case it is not. + Default is `180`. + ## Major version upgrades Parameters configuring automatic major version upgrades. In a diff --git a/manifests/complete-postgres-manifest.yaml b/manifests/complete-postgres-manifest.yaml index 46e79ba21..c150b616d 100644 --- a/manifests/complete-postgres-manifest.yaml +++ b/manifests/complete-postgres-manifest.yaml @@ -16,6 +16,9 @@ spec: zalando: - superuser - createdb + foo_user: [] +# usersWithSecretRotation: "foo_user" +# usersWithInPlaceSecretRotation: "flyway,bar_owner_user" enableMasterLoadBalancer: false enableReplicaLoadBalancer: false enableConnectionPooler: false # enable/disable connection pooler deployment diff --git a/manifests/configmap.yaml b/manifests/configmap.yaml index 6bfe537da..d88a006de 100644 --- a/manifests/configmap.yaml +++ b/manifests/configmap.yaml @@ -93,6 +93,7 @@ data: # https://info.example.com/oauth2/tokeninfo?access_token= uid realm=/employees # pam_role_name: zalandos # password_rotation_interval: "90" + # password_rotation_user_retention: "180" pdb_name_format: "postgres-{cluster}-pdb" # pod_antiaffinity_topology_key: "kubernetes.io/hostname" pod_deletion_wait_timeout: 10m diff --git a/manifests/operatorconfiguration.crd.yaml b/manifests/operatorconfiguration.crd.yaml index caa06dd26..db0c9fedc 100644 --- a/manifests/operatorconfiguration.crd.yaml +++ b/manifests/operatorconfiguration.crd.yaml @@ -126,6 +126,9 @@ spec: password_rotation_interval: type: integer default: 90 + password_rotation_user_retention: + type: integer + default: 180 replication_username: type: string default: standby diff --git a/manifests/postgresql-operator-default-configuration.yaml b/manifests/postgresql-operator-default-configuration.yaml index f5144477b..337e460c8 100644 --- a/manifests/postgresql-operator-default-configuration.yaml +++ b/manifests/postgresql-operator-default-configuration.yaml @@ -27,6 +27,7 @@ configuration: users: enable_password_rotation: false password_rotation_interval: 90 + password_rotation_user_retention: 180 replication_username: standby super_username: postgres major_version_upgrade: diff --git a/pkg/apis/acid.zalan.do/v1/operator_configuration_type.go b/pkg/apis/acid.zalan.do/v1/operator_configuration_type.go index 3c2f20fe8..4731e25de 100644 --- a/pkg/apis/acid.zalan.do/v1/operator_configuration_type.go +++ b/pkg/apis/acid.zalan.do/v1/operator_configuration_type.go @@ -37,10 +37,11 @@ type OperatorConfigurationList struct { // PostgresUsersConfiguration defines the system users of Postgres. type PostgresUsersConfiguration struct { - SuperUsername string `json:"super_username,omitempty"` - ReplicationUsername string `json:"replication_username,omitempty"` - EnablePasswordRotation bool `json:"enable_password_rotation,omitempty"` - PasswordRotationInterval uint32 `json:"password_rotation_interval,omitempty"` + SuperUsername string `json:"super_username,omitempty"` + ReplicationUsername string `json:"replication_username,omitempty"` + EnablePasswordRotation bool `json:"enable_password_rotation,omitempty"` + PasswordRotationInterval uint32 `json:"password_rotation_interval,omitempty"` + PasswordRotationUserRetention uint32 `json:"password_rotation_user_retention,omitempty"` } // MajorVersionUpgradeConfiguration defines how to execute major version upgrades of Postgres. diff --git a/pkg/apis/acid.zalan.do/v1/postgresql_type.go b/pkg/apis/acid.zalan.do/v1/postgresql_type.go index 57f9ae04a..45f139383 100644 --- a/pkg/apis/acid.zalan.do/v1/postgresql_type.go +++ b/pkg/apis/acid.zalan.do/v1/postgresql_type.go @@ -53,8 +53,11 @@ type PostgresSpec struct { // load balancers' source ranges are the same for master and replica services AllowedSourceRanges []string `json:"allowedSourceRanges"` + Users map[string]UserFlags `json:"users,omitempty"` + UsersWithSecretRotation []string `json:"usersWithSecretRotation,omitempty"` + UsersWithInPlaceSecretRotation []string `json:"usersWithInPlaceSecretRotation,omitempty"` + NumberOfInstances int32 `json:"numberOfInstances"` - Users map[string]UserFlags `json:"users,omitempty"` MaintenanceWindows []MaintenanceWindow `json:"maintenanceWindows,omitempty"` Clone *CloneDescription `json:"clone,omitempty"` ClusterName string `json:"-"` diff --git a/pkg/apis/acid.zalan.do/v1/zz_generated.deepcopy.go b/pkg/apis/acid.zalan.do/v1/zz_generated.deepcopy.go index e9ab46382..cfa315358 100644 --- a/pkg/apis/acid.zalan.do/v1/zz_generated.deepcopy.go +++ b/pkg/apis/acid.zalan.do/v1/zz_generated.deepcopy.go @@ -641,6 +641,16 @@ func (in *PostgresSpec) DeepCopyInto(out *PostgresSpec) { (*out)[key] = outVal } } + if in.UsersWithSecretRotation != nil { + in, out := &in.UsersWithSecretRotation, &out.UsersWithSecretRotation + *out = make([]string, len(*in)) + copy(*out, *in) + } + if in.UsersWithInPlaceSecretRotation != nil { + in, out := &in.UsersWithInPlaceSecretRotation, &out.UsersWithInPlaceSecretRotation + *out = make([]string, len(*in)) + copy(*out, *in) + } if in.MaintenanceWindows != nil { in, out := &in.MaintenanceWindows, &out.MaintenanceWindows *out = make([]MaintenanceWindow, len(*in)) diff --git a/pkg/cluster/cluster.go b/pkg/cluster/cluster.go index 02c749a95..d484a3869 100644 --- a/pkg/cluster/cluster.go +++ b/pkg/cluster/cluster.go @@ -1001,6 +1001,7 @@ func (c *Cluster) initSystemUsers() { Origin: spec.RoleOriginSystem, Name: c.OpConfig.ReplicationUsername, Namespace: c.Namespace, + Flags: []string{constants.RoleFlagLogin}, Password: util.RandomPassword(constants.PasswordLength), } diff --git a/pkg/cluster/database.go b/pkg/cluster/database.go index 6c538776d..24b9940a3 100644 --- a/pkg/cluster/database.go +++ b/pkg/cluster/database.go @@ -14,34 +14,11 @@ import ( "github.com/zalando/postgres-operator/pkg/spec" "github.com/zalando/postgres-operator/pkg/util/constants" "github.com/zalando/postgres-operator/pkg/util/retryutil" + "github.com/zalando/postgres-operator/pkg/util/users" ) const ( - getUserSQL = `WITH dbowners AS ( - SELECT DISTINCT pg_catalog.pg_get_userbyid(datdba) AS owner - FROM pg_database - WHERE datname NOT IN ('postgres', 'template0', 'template1') - ), roles AS ( - SELECT a.rolname, COALESCE(a.rolpassword, '') AS rolpassword, a.rolsuper, a.rolinherit, - a.rolcreaterole, a.rolcreatedb, a.rolcanlogin, s.setconfig, - ARRAY(SELECT b.rolname - FROM pg_catalog.pg_auth_members m - JOIN pg_catalog.pg_authid b ON (m.roleid = b.oid) - WHERE m.member = a.oid) as memberof - FROM pg_catalog.pg_authid a - LEFT JOIN pg_catalog.pg_db_role_setting s ON (a.oid = s.setrole AND s.setdatabase = 0::oid) - WHERE a.rolname = ANY($1) - ORDER BY 1 - ) - SELECT r.rolname, r.rolpassword, r.rolsuper, r.rolinherit, - r.rolcreaterole, r.rolcreatedb, r.rolcanlogin, r.setconfig, - r.memberof, - o.owner IS NOT NULL OR r.rolname LIKE '%_owner' AS is_owner - FROM roles r - LEFT JOIN dbowners o ON o.owner = r.rolname OR o.owner = ANY (r.memberof) - ORDER BY 1;` - - /*`SELECT a.rolname, COALESCE(a.rolpassword, ''), a.rolsuper, a.rolinherit, + getUserSQL = `SELECT a.rolname, COALESCE(a.rolpassword, ''), a.rolsuper, a.rolinherit, a.rolcreaterole, a.rolcreatedb, a.rolcanlogin, s.setconfig, ARRAY(SELECT b.rolname FROM pg_catalog.pg_auth_members m @@ -49,7 +26,13 @@ const ( WHERE m.member = a.oid) as memberof FROM pg_catalog.pg_authid a LEFT JOIN pg_db_role_setting s ON (a.oid = s.setrole AND s.setdatabase = 0::oid) WHERE a.rolname = ANY($1) - ORDER BY 1;`*/ + ORDER BY 1;` + + getUsersForRetention = `SELECT r.rolname, right(r.rolname, 6) AS roldatesuffix + FROM pg_roles r + JOIN unnest($1::text[]) AS u(name) ON r.rolname LIKE u.name || '%' + AND right(r.rolname, 6) ~ '^[0-9\.]+$' + ORDER BY 1;` getDatabasesSQL = `SELECT datname, pg_get_userbyid(datdba) AS owner FROM pg_database;` getSchemasSQL = `SELECT n.nspname AS dbschema FROM pg_catalog.pg_namespace n @@ -222,10 +205,10 @@ func (c *Cluster) readPgUsersFromDatabase(userNames []string) (users spec.PgUser rolname, rolpassword string rolsuper, rolinherit, rolcreaterole, rolcreatedb, rolcanlogin bool roloptions, memberof []string - rolowner, roldeleted bool + roldeleted bool ) err := rows.Scan(&rolname, &rolpassword, &rolsuper, &rolinherit, - &rolcreaterole, &rolcreatedb, &rolcanlogin, pq.Array(&roloptions), pq.Array(&memberof), &rolowner) + &rolcreaterole, &rolcreatedb, &rolcanlogin, pq.Array(&roloptions), pq.Array(&memberof)) if err != nil { return nil, fmt.Errorf("error when processing user rows: %v", err) } @@ -245,12 +228,70 @@ func (c *Cluster) readPgUsersFromDatabase(userNames []string) (users spec.PgUser roldeleted = true } - users[rolname] = spec.PgUser{Name: rolname, Password: rolpassword, Flags: flags, MemberOf: memberof, Parameters: parameters, IsDbOwner: rolowner, Deleted: roldeleted} + users[rolname] = spec.PgUser{Name: rolname, Password: rolpassword, Flags: flags, MemberOf: memberof, Parameters: parameters, Deleted: roldeleted} } return users, nil } +func findUsersFromRotation(rotatedUsers []string, db *sql.DB) (map[string]string, error) { + extraUsers := make(map[string]string, 0) + rows, err := db.Query(getUsersForRetention, pq.Array(rotatedUsers)) + if err != nil { + return nil, fmt.Errorf("query failed: %v", err) + } + defer func() { + if err2 := rows.Close(); err2 != nil { + err = fmt.Errorf("error when closing query cursor: %v", err2) + } + }() + + for rows.Next() { + var ( + rolname, roldatesuffix string + ) + err := rows.Scan(&rolname, &roldatesuffix) + if err != nil { + return nil, fmt.Errorf("error when processing rows of deprecated users: %v", err) + } + extraUsers[rolname] = roldatesuffix + } + + return extraUsers, nil +} + +func (c *Cluster) cleanupRotatedUsers(rotatedUsers []string, db *sql.DB) error { + c.setProcessName("checking for rotated users to remove from the database due to configured retention") + extraUsers, err := findUsersFromRotation(rotatedUsers, db) + if err != nil { + return fmt.Errorf("error when querying for deprecated users from password rotation: %v", err) + } + + for rotatedUser, dateSuffix := range extraUsers { + // make sure user retention policy aligns with rotation interval + retenionDays := c.OpConfig.PasswordRotationUserRetention + if retenionDays < 2*c.OpConfig.PasswordRotationInterval { + retenionDays = 2 * c.OpConfig.PasswordRotationInterval + c.logger.Warnf("user retention days too few compared to rotation interval %d - setting it to %d", c.OpConfig.PasswordRotationInterval, retenionDays) + } + retentionDate := time.Now().AddDate(0, 0, int(retenionDays)*-1) + userCreationDate, err := time.Parse("060102", dateSuffix) + if err != nil { + c.logger.Errorf("could not parse creation date suffix of user %q: %v", rotatedUser, err) + continue + } + if retentionDate.After(userCreationDate) { + c.logger.Infof("dropping user %q due to configured days in password_rotation_user_retention", rotatedUser) + if err = users.DropPgUser(rotatedUser, db); err != nil { + c.logger.Errorf("could not drop role %q: %v", rotatedUser, err) + continue + } + } + } + + return nil +} + // getDatabases returns the map of current databases with owners // The caller is responsible for opening and closing the database connection func (c *Cluster) getDatabases() (dbs map[string]string, err error) { diff --git a/pkg/cluster/sync.go b/pkg/cluster/sync.go index 7015740ff..c9fb575ae 100644 --- a/pkg/cluster/sync.go +++ b/pkg/cluster/sync.go @@ -627,6 +627,7 @@ func (c *Cluster) syncSecrets() error { c.setProcessName("syncing secrets") secrets := c.generateUserSecrets() rotationUsers := make(spec.PgUserMap) + retentionUsers := make([]string, 0) for secretUsername, secretSpec := range secrets { if secret, err = c.KubeClient.Secrets(secretSpec.Namespace).Create(context.TODO(), secretSpec, metav1.CreateOptions{}); err == nil { @@ -672,7 +673,8 @@ func (c *Cluster) syncSecrets() error { } // if password rotation is enabled update password and username if rotation interval has been passed - if c.OpConfig.EnablePasswordRotation && pwdUser.Origin != spec.RoleOriginInfrastructure && !pwdUser.IsDbOwner { // || c.Spec.InPlacePasswordRotation[secretUsername] { + if (c.OpConfig.EnablePasswordRotation && pwdUser.Origin != spec.RoleOriginInfrastructure && !pwdUser.IsDbOwner) || + util.SliceContains(c.Spec.UsersWithSecretRotation, secretUsername) || util.SliceContains(c.Spec.UsersWithInPlaceSecretRotation, secretUsername) { currentTime := time.Now() // initialize password rotation setting first rotation date @@ -688,13 +690,14 @@ func (c *Cluster) syncSecrets() error { } if currentTime.After(nextRotationDate) { - //if !c.Spec.InPlacePasswordRotation[secretUsername] { - newRotationUsername := pwdUser.Name + "_" + currentTime.Format("060102") - pwdUser.MemberOf = []string{pwdUser.Name} - pwdUser.Name = newRotationUsername - rotationUsers[newRotationUsername] = pwdUser - secret.Data["username"] = []byte(newRotationUsername) - //} + if !util.SliceContains(c.Spec.UsersWithInPlaceSecretRotation, secretUsername) { + retentionUsers = append(retentionUsers, pwdUser.Name) + newRotationUsername := pwdUser.Name + currentTime.Format("060102") + pwdUser.MemberOf = []string{pwdUser.Name} + pwdUser.Name = newRotationUsername + rotationUsers[newRotationUsername] = pwdUser + secret.Data["username"] = []byte(newRotationUsername) + } secret.Data["password"] = []byte(util.RandomPassword(constants.PasswordLength)) _, nextRotationDateStr = c.getNextRotationDate(nextRotationDate) @@ -722,14 +725,13 @@ func (c *Cluster) syncSecrets() error { } pgSyncRequests := c.userSyncStrategy.ProduceSyncRequests(spec.PgUserMap{}, rotationUsers) if err = c.userSyncStrategy.ExecuteSyncRequests(pgSyncRequests, c.pgDb); err != nil { - return fmt.Errorf("error executing sync statements: %v", err) + return fmt.Errorf("error creating database roles for password rotation: %v", err) } - if err2 := c.closeDbConn(); err2 != nil { - if err == nil { - return fmt.Errorf("could not close database connection: %v", err2) - } else { - return fmt.Errorf("could not close database connection: %v (prior error: %v)", err2, err) - } + if err = c.cleanupRotatedUsers(retentionUsers, c.pgDb); err != nil { + return fmt.Errorf("error creating database roles for password rotation: %v", err) + } + if err := c.closeDbConn(); err != nil { + c.logger.Errorf("could not close database connection during secret rotation: %v", err) } } diff --git a/pkg/util/config/config.go b/pkg/util/config/config.go index c685389c5..79febf310 100644 --- a/pkg/util/config/config.go +++ b/pkg/util/config/config.go @@ -101,6 +101,7 @@ type Auth struct { ReplicationUsername string `name:"replication_username" default:"standby"` EnablePasswordRotation bool `name:"enable_password_rotation" default:"false"` PasswordRotationInterval uint32 `name:"password_rotation_interval" default:"90"` + PasswordRotationUserRetention uint32 `name:"password_rotation_user_retention" default:"180"` } // Scalyr holds the configuration for the Scalyr Agent sidecar for log shipping: diff --git a/pkg/util/users/users.go b/pkg/util/users/users.go index 821350bb7..6bc31f6da 100644 --- a/pkg/util/users/users.go +++ b/pkg/util/users/users.go @@ -18,6 +18,7 @@ const ( alterUserRenameSQL = `ALTER ROLE "%s" RENAME TO "%s%s"` alterRoleResetAllSQL = `ALTER ROLE "%s" RESET ALL` alterRoleSetSQL = `ALTER ROLE "%s" SET %s TO %s` + dropUserSQL = `SET LOCAL synchronous_commit = 'local'; DROP ROLE "%s";` grantToUserSQL = `GRANT %s TO "%s"` doBlockStmt = `SET LOCAL synchronous_commit = 'local'; DO $$ BEGIN %s; END;$$;` passwordTemplate = "ENCRYPTED PASSWORD '%s'" @@ -288,3 +289,13 @@ func quoteParameterValue(name, val string) string { } return fmt.Sprintf(`'%s'`, strings.Trim(val, " ")) } + +// DropPgUser to remove user created by the operator e.g. for password rotation +func DropPgUser(user string, db *sql.DB) error { + query := fmt.Sprintf(dropUserSQL, user) + if _, err := db.Exec(query); err != nil { // TODO: Try several times + return err + } + + return nil +} diff --git a/setting b/setting new file mode 100644 index 000000000..307cb4640 --- /dev/null +++ b/setting @@ -0,0 +1,3902 @@ +time="2022-01-18T16:22:49Z" level=info msg="Spilo operator v1.7.1-18-g73cb87c8-dirty\n" +time="2022-01-18T16:22:49Z" level=info msg="Fully qualified configmap name: default/postgres-operator" +time="2022-01-18T16:22:49Z" level=info msg="Parse role bindings" pkg=controller +time="2022-01-18T16:22:49Z" level=info msg="successfully parsed" pkg=controller +time="2022-01-18T16:22:49Z" level=info msg="Listening to all namespaces" pkg=controller +time="2022-01-18T16:22:49Z" level=info msg="customResourceDefinition \"postgresqls.acid.zalan.do\" is already registered and will only be updated" pkg=controller +time="2022-01-18T16:22:53Z" level=info msg="{" pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ReadyWaitInterval\": 3000000000," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ReadyWaitTimeout\": 30000000000," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ResyncPeriod\": 300000000000," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"RepairPeriod\": 300000000000," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnableCRDRegistration\": true," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnableCRDValidation\": true," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ResourceCheckInterval\": 3000000000," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ResourceCheckTimeout\": 600000000000," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"PodLabelWaitTimeout\": 600000000000," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"PodDeletionWaitTimeout\": 600000000000," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"SpiloRunAsUser\": null," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"SpiloRunAsGroup\": null," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"SpiloFSGroup\": null," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"PodPriorityClassName\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ClusterDomain\": \"cluster.local\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"SpiloPrivileged\": false," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"SpiloAllowPrivilegeEscalation\": true," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"AdditionalPodCapabilities\": null," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ClusterLabels\": {" pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"application\": \"spilo\"" pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" }," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"InheritedLabels\": null," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"InheritedAnnotations\": null," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"DownscalerAnnotations\": null," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ClusterNameLabel\": \"cluster-name\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"DeleteAnnotationDateKey\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"DeleteAnnotationNameKey\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"PodRoleLabel\": \"spilo-role\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"PodToleration\": null," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"DefaultCPURequest\": \"100m\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"DefaultMemoryRequest\": \"100Mi\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"DefaultCPULimit\": \"1\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"DefaultMemoryLimit\": \"500Mi\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"MinCPULimit\": \"250m\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"MinMemoryLimit\": \"250Mi\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"PodEnvironmentConfigMap\": \"/\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"PodEnvironmentSecret\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"NodeReadinessLabel\": null," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"MaxInstances\": -1," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"MinInstances\": -1," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ShmVolume\": true," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"SecretNameTemplate\": \"{username}.{cluster}.credentials.{tprkind}.{tprgroup}\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"PamRoleName\": \"zalandos\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"PamConfiguration\": \"https://info.example.com/oauth2/tokeninfo?access_token= uid realm=/employees\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"TeamsAPIUrl\": \"https://teams.example.com/api/\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"OAuthTokenSecretName\": \"default/postgresql-operator\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"InfrastructureRolesSecretName\": \"/\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"InfrastructureRoles\": null," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"InfrastructureRolesDefs\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"SuperUsername\": \"postgres\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ReplicationUsername\": \"standby\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnablePasswordRotation\": true," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"PasswordRotationInterval\": 1," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ScalyrAPIKey\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ScalyrImage\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ScalyrServerURL\": \"https://upload.eu.scalyr.com\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ScalyrCPURequest\": \"100m\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ScalyrMemoryRequest\": \"50Mi\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ScalyrCPULimit\": \"1\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ScalyrMemoryLimit\": \"500Mi\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"LogicalBackupSchedule\": \"30 00 * * *\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"LogicalBackupDockerImage\": \"registry.opensource.zalan.do/acid/logical-backup:v1.7.1\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"LogicalBackupProvider\": \"s3\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"LogicalBackupS3Bucket\": \"my-bucket-url\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"LogicalBackupS3Region\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"LogicalBackupS3Endpoint\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"LogicalBackupS3AccessKeyID\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"LogicalBackupS3SecretAccessKey\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"LogicalBackupS3SSE\": \"AES256\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"LogicalBackupGoogleApplicationCredentials\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"LogicalBackupJobPrefix\": \"logical-backup-\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"NumberOfInstances\": 2," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"Schema\": \"pooler\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"User\": \"pooler\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"Image\": \"registry.opensource.zalan.do/acid/pgbouncer:master-19\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"Mode\": \"transaction\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"MaxDBConnections\": 60," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ConnectionPoolerDefaultCPURequest\": \"500m\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ConnectionPoolerDefaultMemoryRequest\": \"100Mi\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ConnectionPoolerDefaultCPULimit\": \"1\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ConnectionPoolerDefaultMemoryLimit\": \"100Mi\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"WatchedNamespace\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"KubernetesUseConfigMaps\": false," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EtcdHost\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"DockerImage\": \"registry.opensource.zalan.do/acid/spilo-14:2.1-p3\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"SidecarImages\": null," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"SidecarContainers\": null," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"PodServiceAccountName\": \"postgres-pod\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"PodServiceAccountDefinition\": \"{\\\"apiVersion\\\":\\\"v1\\\",\\\"kind\\\":\\\"ServiceAccount\\\",\\\"metadata\\\":{\\\"name\\\":\\\"postgres-pod\\\"}}\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"PodServiceAccountRoleBindingDefinition\": \"{\\\"apiVersion\\\":\\\"rbac.authorization.k8s.io/v1\\\",\\\"kind\\\":\\\"RoleBinding\\\",\\\"metadata\\\":{\\\"name\\\":\\\"postgres-pod\\\"},\\\"roleRef\\\":{\\\"apiGroup\\\":\\\"rbac.authorization.k8s.io\\\",\\\"kind\\\":\\\"ClusterRole\\\",\\\"name\\\":\\\"postgres-pod\\\"},\\\"subjects\\\":[{\\\"kind\\\":\\\"ServiceAccount\\\",\\\"name\\\":\\\"postgres-pod\\\"}]}\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"MasterPodMoveTimeout\": 1200000000000," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"DbHostedZone\": \"db.example.com\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"AWSRegion\": \"eu-central-1\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"WALES3Bucket\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"LogS3Bucket\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"KubeIAMRole\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"WALGSBucket\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"GCPCredentials\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"WALAZStorageAccount\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"AdditionalSecretMount\": \"\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"AdditionalSecretMountPath\": \"/meta/credentials\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnableEBSGp3Migration\": false," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnableEBSGp3MigrationMaxSize\": 1000," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"DebugLogging\": true," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnableDBAccess\": true," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnableTeamsAPI\": false," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnableTeamSuperuser\": false," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"TeamAdminRole\": \"admin\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"RoleDeletionSuffix\": \"_deleted\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnableTeamMemberDeprecation\": false," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnableAdminRoleForUsers\": true," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnablePostgresTeamCRD\": false," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnablePostgresTeamCRDSuperusers\": false," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnableMasterLoadBalancer\": false," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnableReplicaLoadBalancer\": false," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"CustomServiceAnnotations\": null," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"CustomPodAnnotations\": null," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnablePodAntiAffinity\": false," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"PodAntiAffinityTopologyKey\": \"kubernetes.io/hostname\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"StorageResizeMode\": \"pvc\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnableLoadBalancer\": null," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ExternalTrafficPolicy\": \"Cluster\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"MasterDNSNameFormat\": \"{cluster}.{team}.{hostedzone}\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ReplicaDNSNameFormat\": \"{cluster}-repl.{team}.{hostedzone}\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"PDBNameFormat\": \"postgres-{cluster}-pdb\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnablePodDisruptionBudget\": true," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnableInitContainers\": true," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnableSidecars\": true," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"Workers\": 8," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"APIPort\": 8080," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"RingLogLines\": 100," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ClusterHistoryEntries\": 1000," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"TeamAPIRoleConfiguration\": {" pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"log_statement\": \"all\"" pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" }," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"PodTerminateGracePeriod\": 300000000000," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"PodManagementPolicy\": \"ordered_ready\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"ProtectedRoles\": [" pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"admin\"" pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" ]," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"PostgresSuperuserTeams\": null," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"SetMemoryRequestToLimit\": false," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnableLazySpiloUpgrade\": false," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnableCrossNamespaceSecret\": false," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnablePgVersionEnvVar\": true," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"EnableSpiloWalPathCompat\": true," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"MajorVersionUpgradeMode\": \"manual\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"MajorVersionUpgradeTeamAllowList\": null," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"MinimalMajorVersion\": \"9.6\"," pkg=controller +time="2022-01-18T16:22:53Z" level=info msg=" \"TargetMajorVersion\": \"14\"" pkg=controller +time="2022-01-18T16:22:53Z" level=info msg="}" pkg=controller +time="2022-01-18T16:22:53Z" level=debug msg="acquiring initial list of clusters" pkg=controller +time="2022-01-18T16:22:53Z" level=debug msg="added new cluster: \"default/acid-minimal-cluster\"" pkg=controller +time="2022-01-18T16:22:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:22:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T16:22:53Z" level=info msg="started working in background" pkg=controller +time="2022-01-18T16:22:53Z" level=info msg="listening on :8080" pkg=apiserver +time="2022-01-18T16:22:53Z" level=info msg="ADD event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:22:53Z" level=debug msg="new node has been added: /minikube ()" pkg=controller +time="2022-01-18T16:22:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:22:53Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:22:53Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:22:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:22:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:22:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:22:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:22:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:22:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:22:55Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:22:55Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:22:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:22:56Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:22:56Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:22:56Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:22:56Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:22:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:23:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:23:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:23:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:23:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:23:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:23:12Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:23:13Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:23:13Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:23:14Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:23:15Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:23:15Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:23:15Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:23:15Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:23:15Z" level=info msg="healthy cluster ready to upgrade, current: 140000 desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:23:15Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:23:15Z" level=info msg="recieved add event for already existing Postgres cluster" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:27:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:27:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T16:27:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:27:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:27:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:27:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:27:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:27:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:27:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:27:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:27:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:27:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:27:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:27:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:27:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:27:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:27:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:27:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:27:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:28:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:28:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:28:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:28:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:28:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:28:11Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:28:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:28:12Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:28:12Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:28:13Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:28:13Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:28:13Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:28:13Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:32:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:32:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T16:32:54Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:32:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:32:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:32:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:32:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:32:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:32:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:32:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:32:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:32:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:32:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:32:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:32:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:32:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:32:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:32:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:32:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:33:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:33:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:33:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:33:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:33:10Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:33:10Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:33:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:33:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:33:11Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:33:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:33:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:33:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:33:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:37:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:37:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T16:37:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:37:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:37:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:37:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:37:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:37:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:37:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:37:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:37:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:37:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:37:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:37:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:37:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:37:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:37:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:37:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:37:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:38:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:38:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:38:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:38:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:38:10Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:38:10Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:38:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:38:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:38:11Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:38:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:38:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:38:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:38:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:42:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:42:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T16:42:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:42:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:42:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:42:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:42:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:42:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:42:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:42:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:42:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:42:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:42:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:42:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:42:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:42:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:42:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:42:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:42:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:43:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:43:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:43:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:43:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:43:10Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:43:10Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:43:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:43:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:43:11Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:43:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:43:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:43:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:43:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:47:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:47:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T16:47:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:47:53Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:47:53Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:47:53Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:47:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:47:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:47:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:47:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:47:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:47:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:47:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:47:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:47:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:47:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:47:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:47:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:47:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:48:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:48:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:48:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:48:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:48:10Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:48:10Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:48:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:48:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:48:11Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:48:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:48:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:48:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:48:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:52:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:52:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T16:52:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:52:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:52:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:52:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:52:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:52:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:52:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:52:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:52:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:52:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:52:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:52:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:52:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:52:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:52:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:52:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:52:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:53:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:53:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:53:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:53:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:53:10Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:53:10Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:53:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:53:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:53:11Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:53:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:53:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:53:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:53:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:57:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:57:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T16:57:54Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T16:57:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:57:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:57:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:57:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:57:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:57:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:57:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:57:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:57:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:57:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:57:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:57:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:57:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:57:56Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:57:56Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:57:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:58:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:58:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:58:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:58:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:58:10Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:58:10Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:58:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:58:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:58:12Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:58:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:58:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:58:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T16:58:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:02:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:02:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T17:02:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:02:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:02:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:02:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:02:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:02:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:02:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:02:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:02:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:02:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:02:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:02:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:02:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:02:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:02:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:02:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:02:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:03:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:03:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:03:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:03:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:03:10Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:03:10Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:03:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:03:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:03:11Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:03:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:03:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:03:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:03:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:07:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:07:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T17:07:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:07:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:07:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:07:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:07:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:07:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:07:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:07:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:07:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:07:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:07:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:07:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:07:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:07:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:07:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:07:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:07:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:08:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:08:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:08:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:08:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:08:10Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:08:10Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:08:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:08:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:08:11Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:08:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:08:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:08:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:08:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:12:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:12:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T17:12:54Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:12:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:12:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:12:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:12:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:12:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:12:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:12:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:12:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:12:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:12:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:12:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:12:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:12:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:12:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:12:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:12:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:13:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:13:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:13:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:13:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:13:10Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:13:10Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:13:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:13:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:13:11Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:13:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:13:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:13:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:13:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:17:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:17:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T17:17:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:17:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:17:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:17:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:17:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:17:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:17:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:17:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:17:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:17:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:17:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:17:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:17:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:17:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:17:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:17:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:17:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:18:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:18:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:18:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:18:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:18:10Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:18:10Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:18:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:18:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:18:11Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:18:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:18:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:18:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:18:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:22:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:22:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T17:22:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:22:53Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:22:53Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:22:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:22:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:22:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:22:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:22:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:22:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:22:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:22:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:22:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:22:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:22:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:22:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:22:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:22:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:23:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:23:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:23:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:23:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:23:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:23:11Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:23:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:23:12Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:23:12Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:23:13Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:23:13Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:23:13Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:23:13Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:27:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:27:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T17:27:54Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:27:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:27:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:27:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:27:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:27:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:27:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:27:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:27:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:27:55Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:27:55Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:27:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:27:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:27:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:27:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:27:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:27:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:28:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:28:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:28:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:28:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:28:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:28:12Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:28:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:28:12Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:28:13Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:28:13Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:28:13Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:28:13Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:28:13Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:32:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:32:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T17:32:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:32:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:32:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:32:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:32:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:32:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:32:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:32:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:32:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:32:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:32:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:32:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:32:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:32:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:32:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:32:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:32:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:33:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:33:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:33:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:33:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:33:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:33:11Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:33:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:33:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:33:11Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:33:13Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:33:13Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:33:13Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:33:13Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:37:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:37:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T17:37:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:37:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:37:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:37:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:37:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:37:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:37:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:37:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:37:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:37:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:37:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:37:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:37:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:37:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:37:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:37:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:37:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:38:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:38:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:38:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:38:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:38:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:38:12Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:38:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:38:12Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:38:13Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:38:13Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:38:13Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:38:13Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:38:13Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:42:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:42:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T17:42:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:42:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:42:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:42:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:42:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:42:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:42:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:42:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:42:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:42:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:42:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:42:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:42:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:42:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:42:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:42:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:42:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:43:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:43:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:43:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:43:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:43:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:43:11Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:43:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:43:12Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:43:12Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:43:13Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:43:13Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:43:13Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:43:13Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:47:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:47:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T17:47:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:47:53Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:47:53Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:47:53Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:47:53Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:47:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:47:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:47:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:47:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:47:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:47:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:47:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:47:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:47:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:47:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:47:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:47:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:48:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:48:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:48:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:48:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:48:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:48:12Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:48:13Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:48:13Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:48:13Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:48:13Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:48:13Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:48:13Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:48:13Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:52:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:52:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T17:52:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:52:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:52:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:52:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:52:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:52:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:52:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:52:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:52:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:52:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:52:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:52:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:52:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:52:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:52:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:52:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:52:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:53:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:53:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:53:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:53:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:53:10Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:53:10Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:53:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:53:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:53:11Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:53:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:53:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:53:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:53:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:57:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:57:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T17:57:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T17:57:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:57:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:57:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:57:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:57:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:57:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:57:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:57:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:57:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:57:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:57:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:57:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:57:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:57:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:57:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:57:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:58:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:58:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:58:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:58:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:58:10Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:58:10Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:58:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:58:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:58:11Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:58:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:58:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:58:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T17:58:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:02:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:02:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T18:02:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:02:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:02:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:02:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:02:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:02:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:02:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:02:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:02:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:02:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:02:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:02:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:02:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:02:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:02:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:02:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:02:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:03:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:03:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:03:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:03:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:03:10Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:03:10Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:03:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:03:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:03:11Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:03:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:03:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:03:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:03:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:07:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:07:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T18:07:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:07:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:07:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:07:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:07:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:07:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:07:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:07:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:07:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:07:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:07:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:07:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:07:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:07:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:07:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:07:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:07:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:08:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:08:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:08:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:08:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:08:10Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:08:10Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:08:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:08:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:08:11Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:08:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:08:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:08:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:08:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:12:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:12:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T18:12:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:12:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:12:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:12:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:12:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:12:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:12:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:12:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:12:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:12:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:12:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:12:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:12:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:12:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:12:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:12:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:12:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:13:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:13:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:13:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:13:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:13:10Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:13:10Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:13:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:13:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:13:11Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:13:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:13:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:13:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:13:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:17:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:17:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T18:17:54Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:17:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:17:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:17:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:17:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:17:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:17:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:17:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:17:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:17:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:17:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:17:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:17:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:17:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:17:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:17:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:17:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:18:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:18:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:18:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:18:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:18:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:18:11Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:18:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:18:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:18:11Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:18:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:18:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:18:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:18:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:22:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:22:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T18:22:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:22:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:22:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:22:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:22:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:22:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:22:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:22:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:22:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:22:55Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:22:55Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:22:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:22:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:22:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:22:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:22:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:22:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:23:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:23:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:23:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:23:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:23:10Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:23:10Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:23:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:23:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:23:11Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:23:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:23:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:23:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:23:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:27:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:27:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T18:27:54Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:27:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:27:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:27:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:27:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:27:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:27:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:27:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:27:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:27:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:27:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:27:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:27:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:27:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:27:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:27:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:27:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:28:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:28:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:28:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:28:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:28:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:28:11Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:28:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:28:12Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:28:12Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:28:13Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:28:13Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:28:13Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:28:13Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:32:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:32:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T18:32:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:32:53Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:32:53Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:32:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:32:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:32:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:32:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:32:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:32:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:32:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:32:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:32:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:32:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:32:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:32:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:32:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:32:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:33:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:33:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:33:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:33:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:33:10Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:33:10Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:33:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:33:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:33:12Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:33:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:33:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:33:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:33:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:37:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:37:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T18:37:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:37:53Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:37:53Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:37:53Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:37:53Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:37:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:37:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:37:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:37:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:37:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:37:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:37:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:37:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:37:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:37:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:37:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:37:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:38:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:38:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:38:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:38:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:38:16Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:38:16Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:38:18Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:38:18Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:38:20Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:38:21Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:38:21Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:38:21Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:38:21Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:42:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:42:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T18:42:54Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:42:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:42:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:42:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:42:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:42:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:42:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:42:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:42:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:42:55Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:42:55Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:42:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:42:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:42:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:42:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:42:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:42:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:43:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:43:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:43:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:43:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:43:10Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:43:10Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:43:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:43:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:43:12Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:43:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:43:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:43:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:43:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:47:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:47:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T18:47:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:47:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:47:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:47:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:47:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:47:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:47:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:47:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:47:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:47:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:47:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:47:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:47:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:47:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:47:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:47:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:47:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:48:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:48:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:48:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:48:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:48:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:48:11Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:48:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:48:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:48:12Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:48:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:48:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:48:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:48:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:52:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:52:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T18:52:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:52:53Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:52:53Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:52:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:52:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:52:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:52:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:52:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:52:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:52:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:52:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:52:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:52:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:52:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:52:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:52:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:52:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:53:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:53:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:53:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:53:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:53:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:53:11Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:53:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:53:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:53:11Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:53:13Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:53:13Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:53:13Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:53:13Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:57:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:57:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T18:57:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T18:57:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:57:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:57:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:57:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:57:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:57:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:57:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:57:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:57:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:57:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:57:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:57:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:57:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:57:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:57:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:57:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:58:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:58:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:58:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:58:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:58:10Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:58:10Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:58:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:58:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:58:11Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:58:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:58:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:58:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T18:58:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T19:02:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T19:02:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T19:02:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T19:02:53Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:02:53Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:02:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:02:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:02:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:02:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:02:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:02:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:02:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:02:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:02:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:02:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:02:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:02:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:02:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:02:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:03:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:03:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:03:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:03:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:03:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:03:11Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:03:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:03:12Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:03:12Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:03:13Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:03:13Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:03:13Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:03:13Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T19:07:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T19:07:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T19:07:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T19:07:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:07:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:07:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:07:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:07:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:07:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:07:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:07:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:07:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:07:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:07:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:07:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:07:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:07:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:07:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:07:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:08:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:08:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:08:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:08:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:08:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:08:11Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:08:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:08:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:08:12Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:08:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:08:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:08:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:08:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T19:12:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T19:12:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T19:12:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T19:12:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:12:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:12:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:12:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:12:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:12:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:12:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:12:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:12:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:12:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:12:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:12:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:12:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:12:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:12:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:12:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:13:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:13:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:13:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:13:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:13:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:13:11Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:13:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:13:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:13:12Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:13:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:13:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:13:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:13:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T19:17:53Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T19:17:53Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-18T19:17:53Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-18T19:17:54Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:17:54Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:17:54Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:17:54Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:17:54Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:17:54Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:17:54Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:17:54Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:17:54Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:17:54Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:17:55Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:17:55Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:17:55Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:17:55Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:17:55Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:17:56Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:18:08Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:18:08Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:18:08Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:18:08Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:18:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:18:11Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:18:11Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:18:11Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:18:12Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:18:12Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:18:12Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:18:12Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-18T19:18:12Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:23:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:23:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T08:23:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:23:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:23:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:23:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:23:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:23:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:23:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:23:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:23:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:23:40Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:23:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:23:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:23:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:23:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:23:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:23:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:23:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:23:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:23:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:23:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:23:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:24:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:24:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:24:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:24:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:25:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:25:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:25:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:25:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:25:53Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:25:53Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:28:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:28:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T08:28:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:28:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:28:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:28:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:28:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:28:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:28:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:28:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:28:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:28:40Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:28:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:28:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:28:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:28:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:28:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:28:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:28:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:28:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:28:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:28:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:28:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:29:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:29:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:29:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:29:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:30:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:30:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:30:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:30:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:30:53Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:30:53Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:33:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:33:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T08:33:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:33:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:33:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:33:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:33:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:33:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:33:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:33:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:33:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:33:40Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:33:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:33:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:33:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:33:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:33:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:33:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:33:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:33:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:33:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:33:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:33:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:34:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:34:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:34:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:34:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:35:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:35:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:35:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:35:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:35:53Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:35:53Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:38:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:38:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T08:38:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:38:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:38:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:38:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:38:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:38:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:38:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:38:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:38:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:38:40Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:38:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:38:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:38:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:38:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:38:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:38:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:38:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:38:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:38:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:38:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:38:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:39:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:39:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:39:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:39:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:40:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:40:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:40:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:40:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:40:53Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:40:53Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:43:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:43:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T08:43:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:43:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:43:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:43:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:43:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:43:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:43:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:43:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:43:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:43:40Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:43:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:43:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:43:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:43:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:43:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:43:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:43:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:43:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:43:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:43:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:43:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:44:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:44:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:44:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:44:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:45:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:45:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:45:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:45:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:45:53Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:45:53Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:48:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:48:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T08:48:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:48:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:48:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:48:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:48:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:48:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:48:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:48:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:48:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:48:40Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:48:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:48:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:48:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:48:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:48:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:48:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:48:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:48:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:48:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:48:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:48:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:49:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:49:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:49:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:49:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:50:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:50:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:50:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:50:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:50:53Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:50:53Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:53:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:53:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T08:53:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:53:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:53:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:53:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:53:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:53:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:53:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:53:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:53:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:53:40Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:53:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:53:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:53:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:53:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:53:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:53:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:53:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:53:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:53:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:53:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:53:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:54:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:54:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:54:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:54:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:55:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:55:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:55:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:55:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:55:53Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:55:53Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:58:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:58:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T08:58:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T08:58:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:58:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:58:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:58:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:58:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:58:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:58:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:58:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:58:40Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:58:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:58:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:58:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:58:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:58:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:58:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:58:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:58:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:58:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:58:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:58:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:59:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:59:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:59:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T08:59:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:00:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:00:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:00:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:00:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:00:53Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:00:53Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:03:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:03:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T09:03:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:03:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:03:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:03:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:03:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:03:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:03:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:03:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:03:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:03:40Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:03:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:03:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:03:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:03:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:03:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:03:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:03:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:03:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:03:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:03:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:03:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:04:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:04:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:04:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:04:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:05:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:05:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:05:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:05:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:05:53Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:05:53Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:08:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:08:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T09:08:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:08:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:08:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:08:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:08:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:08:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:08:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:08:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:08:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:08:40Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:08:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:08:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:08:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:08:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:08:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:08:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:08:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:08:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:08:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:08:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:08:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:09:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:09:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:09:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:09:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:10:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:10:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:10:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:10:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:10:53Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:10:53Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:13:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:13:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T09:13:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:13:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:13:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:13:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:13:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:13:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:13:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:13:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:13:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:13:40Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:13:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:13:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:13:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:13:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:13:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:13:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:13:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:13:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:13:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:13:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:13:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:14:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:14:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:14:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:14:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:15:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:15:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:15:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:15:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:15:53Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:15:53Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:18:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:18:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T09:18:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:18:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:18:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:18:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:18:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:18:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:18:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:18:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:18:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:18:40Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:18:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:18:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:18:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:18:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:18:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:18:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:18:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:18:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:18:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:18:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:18:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:19:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:19:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:19:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:19:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:20:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:20:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:20:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:20:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:20:53Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:20:53Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:23:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:23:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T09:23:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:23:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:23:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:23:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:23:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:23:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:23:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:23:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:23:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:23:40Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:23:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:23:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:23:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:23:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:23:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:23:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:23:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:23:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:23:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:23:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:23:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:24:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:24:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:24:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:24:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:25:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:25:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:25:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:25:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:25:53Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:25:53Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:28:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:28:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T09:28:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:28:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:28:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:28:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:28:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:28:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:28:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:28:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:28:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:28:40Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:28:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:28:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:28:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:28:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:28:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:28:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:28:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:28:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:28:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:28:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:28:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:29:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:29:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:29:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:29:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:30:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:30:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:30:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:30:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:30:53Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:30:53Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:33:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:33:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T09:33:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:33:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:33:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:33:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:33:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:33:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:33:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:33:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:33:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:33:40Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:33:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:33:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:33:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:33:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:33:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:33:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:33:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:33:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:33:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:33:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:33:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:34:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:34:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:34:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:34:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:35:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:35:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:35:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:35:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:35:53Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:35:53Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:38:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:38:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T09:38:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:38:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:38:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:38:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:38:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:38:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:38:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:38:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:38:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:38:40Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:38:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:38:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:38:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:38:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:38:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:38:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:38:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:38:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:38:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:38:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:38:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:39:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:39:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:39:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:39:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:40:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:40:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:40:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:40:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:40:53Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:40:53Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:43:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:43:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T09:43:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:43:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:43:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:43:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:43:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:43:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:43:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:43:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:43:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:43:40Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:43:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:43:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:43:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:43:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:43:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:43:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:43:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:43:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:43:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:43:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:43:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:44:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:44:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:44:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:44:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:45:08Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:45:23Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:45:38Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:45:53Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:45:53Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:45:53Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:48:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:48:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T09:48:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:48:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:40Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:56Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:57Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:57Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:57Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:58Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:58Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:58Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:48:58Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:53:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:53:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T09:53:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:53:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:40Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:56Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:56Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:57Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:57Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:57Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:57Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:53:57Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:58:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:58:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T09:58:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T09:58:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:40Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:56Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:56Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:57Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:57Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:57Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:57Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T09:58:57Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:03:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:03:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T10:03:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:03:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:40Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:58Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:58Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:59Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:59Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:59Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:59Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:59Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:59Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:03:59Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:08:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:08:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T10:08:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:08:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:40Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:55Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:55Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:55Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:56Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:56Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:08:56Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:13:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:13:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T10:13:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:13:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:40Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:55Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:55Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:55Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:55Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:55Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:13:55Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:18:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:18:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T10:18:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:18:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:40Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:55Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:55Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:56Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:56Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:56Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:18:56Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:23:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:23:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T10:23:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:23:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:40Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:55Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:55Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:55Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:56Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:56Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:23:56Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:28:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:28:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T10:28:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:28:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:40Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:55Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:55Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:55Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:56Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:56Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:28:56Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:33:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:33:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T10:33:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:33:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:40Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:55Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:55Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:55Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:56Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:56Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:33:56Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:38:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:38:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T10:38:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:38:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:40Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:55Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:55Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:55Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:56Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:56Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:38:56Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:43:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:43:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T10:43:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:43:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:40Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:55Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:55Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:55Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:56Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:56Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:43:56Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:48:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:48:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T10:48:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:48:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:40Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:56Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:56Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:57Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:57Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:57Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:57Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:48:57Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:53:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:53:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T10:53:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:53:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:40Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:56Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:56Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:56Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:56Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:56Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:53:56Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:58:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:58:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T10:58:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T10:58:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:40Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:55Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:55Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:55Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:56Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:56Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T10:58:56Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:03:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:03:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T11:03:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:03:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:40Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:55Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:55Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:55Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:56Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:56Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:03:56Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:08:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:08:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T11:08:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:08:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:40Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:55Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:55Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:55Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:56Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:56Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:08:56Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:13:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:13:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T11:13:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:13:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:40Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:55Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:55Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:55Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:56Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:56Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:13:56Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:18:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:18:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T11:18:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:18:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:40Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:55Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:55Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:55Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:55Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:55Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:18:55Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:23:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:23:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T11:23:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:23:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:40Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:55Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:55Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:55Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:56Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:56Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:23:56Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:28:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:28:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T11:28:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:28:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:40Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:55Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:55Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:55Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:56Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:56Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:28:56Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:33:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:33:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T11:33:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:33:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:40Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:58Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:58Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:58Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:58Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:59Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:59Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:59Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:59Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:33:59Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:38:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:38:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T11:38:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:38:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:40Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:55Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:55Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:55Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:56Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:56Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:38:56Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:43:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:43:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T11:43:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:43:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:39Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:40Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:56Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:56Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:57Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:57Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:57Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:57Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:43:57Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:48:39Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:48:39Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T11:48:39Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T11:48:39Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:39Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:39Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:39Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:39Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:39Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:39Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:39Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:40Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:40Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:40Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:41Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:41Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:41Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:41Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:41Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:53Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:53Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:53Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:53Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:55Z" level=debug msg="syncing databases" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:55Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:55Z" level=debug msg="syncing prepared databases with schemas" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:56Z" level=debug msg="syncing prepared database \"bar\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:56Z" level=debug msg="closing database connection" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:56Z" level=debug msg="syncing pooler is not required" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:56Z" level=info msg="cluster version up to date. current: 140000, min desired: 140000" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T11:48:56Z" level=info msg="cluster has been synced" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:04:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:04:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T13:04:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:04:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:04:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:04:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:04:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:04:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:04:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:04:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:04:49Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:04:49Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:04:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:04:49Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:04:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:04:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:04:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:04:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:04:50Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:05:02Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:05:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:05:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:05:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:05:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:05:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:05:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:06:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:06:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:06:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:06:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:07:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:07:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:07:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:09:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:09:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T13:09:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:09:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:09:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:09:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:09:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:09:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:09:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:09:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:09:49Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:09:49Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:09:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:09:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:09:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:09:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:09:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:09:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:09:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:10:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:10:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:10:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:10:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:10:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:10:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:10:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:11:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:11:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:11:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:11:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:12:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:12:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:12:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:14:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:14:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T13:14:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:14:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:14:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:14:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:14:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:14:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:14:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:14:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:14:49Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:14:49Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:14:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:14:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:14:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:14:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:14:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:14:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:14:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:15:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:15:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:15:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:15:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:15:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:15:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:15:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:16:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:16:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:16:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:16:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:17:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:17:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:17:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:19:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:19:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T13:19:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:19:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:19:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:19:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:19:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:19:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:19:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:19:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:19:49Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:19:49Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:19:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:19:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:19:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:19:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:19:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:19:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:19:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:20:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:20:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:20:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:20:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:20:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:20:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:20:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:21:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:21:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:21:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:21:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:22:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:22:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:22:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:24:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:24:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T13:24:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:24:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:24:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:24:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:24:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:24:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:24:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:24:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:24:49Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:24:49Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:24:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:24:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:24:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:24:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:24:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:24:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:24:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:25:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:25:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:25:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:25:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:25:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:25:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:25:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:26:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:26:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:26:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:26:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:27:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:27:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:27:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:29:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:29:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T13:29:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:29:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:29:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:29:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:29:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:29:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:29:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:29:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:29:49Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:29:49Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:29:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:29:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:29:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:29:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:29:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:29:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:29:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:30:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:30:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:30:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:30:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:30:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:30:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:30:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:31:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:31:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:31:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:31:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:32:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:32:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:32:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:34:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:34:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T13:34:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:34:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:34:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:34:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:34:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:34:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:34:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:34:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:34:49Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:34:49Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:34:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:34:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:34:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:34:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:34:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:34:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:34:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:35:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:35:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:35:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:35:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:35:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:35:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:35:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:36:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:36:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:36:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:36:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:37:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:37:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:37:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:39:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:39:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T13:39:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:39:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:39:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:39:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:39:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:39:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:39:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:39:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:39:49Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:39:49Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:39:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:39:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:39:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:39:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:39:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:39:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:39:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:40:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:40:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:40:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:40:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:40:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:40:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:40:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:41:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:41:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:41:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:41:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:42:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:42:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:42:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:44:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:44:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T13:44:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:44:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:44:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:44:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:44:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:44:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:44:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:44:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:44:49Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:44:49Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:44:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:44:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:44:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:44:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:44:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:44:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:44:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:45:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:45:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:45:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:45:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:45:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:45:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:45:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:46:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:46:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:46:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:46:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:47:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:47:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:47:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:49:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:49:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T13:49:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:49:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:49:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:49:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:49:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:49:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:49:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:49:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:49:49Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:49:49Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:49:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:49:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:49:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:49:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:49:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:49:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:49:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:50:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:50:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:50:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:50:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:50:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:50:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:50:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:51:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:51:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:51:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:51:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:52:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:52:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:52:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:54:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:54:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T13:54:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:54:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:54:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:54:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:54:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:54:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:54:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:54:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:54:49Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:54:49Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:54:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:54:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:54:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:54:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:54:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:54:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:54:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:55:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:55:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:55:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:55:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:55:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:55:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:55:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:56:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:56:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:56:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:56:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:57:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:57:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:57:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:59:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:59:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T13:59:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T13:59:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:59:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:59:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:59:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:59:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:59:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:59:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:59:49Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:59:49Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:59:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:59:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:59:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:59:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:59:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:59:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T13:59:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:00:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:00:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:00:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:00:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:00:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:00:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:00:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:01:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:01:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:01:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:01:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:02:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:02:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:02:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:04:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:04:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T14:04:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:04:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:04:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:04:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:04:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:04:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:04:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:04:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:04:49Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:04:49Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:04:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:04:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:04:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:04:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:04:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:04:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:04:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:05:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:05:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:05:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:05:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:05:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:05:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:05:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:06:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:06:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:06:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:06:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:07:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:07:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:07:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:09:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:09:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T14:09:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:09:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:09:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:09:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:09:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:09:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:09:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:09:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:09:49Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:09:49Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:09:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:09:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:09:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:09:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:09:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:09:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:09:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:10:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:10:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:10:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:10:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:10:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:10:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:10:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:11:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:11:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:11:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:11:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:12:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:12:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:12:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:14:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:14:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T14:14:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:14:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:14:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:14:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:14:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:14:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:14:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:14:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:14:49Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:14:49Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:14:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:14:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:14:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:14:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:14:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:14:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:14:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:15:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:15:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:15:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:15:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:15:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:15:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:15:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:16:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:16:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:16:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:16:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:17:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:17:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:17:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:19:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:19:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T14:19:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:19:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:19:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:19:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:19:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:19:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:19:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:19:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:19:49Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:19:49Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:19:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:19:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:19:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:19:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:19:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:19:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:19:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:20:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:20:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:20:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:20:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:20:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:20:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:20:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:21:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:21:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:21:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:21:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:22:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:22:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:22:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:24:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:24:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T14:24:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:24:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:24:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:24:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:24:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:24:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:24:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:24:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:24:49Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:24:49Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:24:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:24:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:24:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:24:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:24:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:24:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:24:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:25:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:25:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:25:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:25:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:25:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:25:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:25:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:26:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:26:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:26:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:26:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:27:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:27:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:27:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:29:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:29:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T14:29:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:29:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:29:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:29:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:29:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:29:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:29:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:29:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:29:49Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:29:49Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:29:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:29:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:29:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:29:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:29:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:29:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:29:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:30:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:30:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:30:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:30:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:30:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:30:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:30:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:31:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:31:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:31:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:31:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:32:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:32:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:32:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:34:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:34:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T14:34:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:34:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:34:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:34:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:34:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:34:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:34:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:34:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:34:49Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:34:49Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:34:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:34:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:34:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:34:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:34:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:34:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:34:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:35:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:35:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:35:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:35:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:35:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:35:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:35:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:36:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:36:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:36:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:36:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:37:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:37:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:37:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:39:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:39:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T14:39:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:39:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:39:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:39:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:39:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:39:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:39:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:39:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:39:49Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:39:49Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:39:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:39:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:39:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:39:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:39:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:39:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:39:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:40:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:40:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:40:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:40:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:40:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:40:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:40:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:41:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:41:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:41:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:41:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:42:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:42:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:42:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:44:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:44:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T14:44:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:44:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:44:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:44:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:44:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:44:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:44:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:44:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:44:49Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:44:49Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:44:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:44:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:44:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:44:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:44:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:44:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:44:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:45:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:45:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:45:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:45:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:45:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:45:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:45:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:46:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:46:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:46:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:46:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:47:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:47:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:47:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:49:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:49:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T14:49:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:49:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:49:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:49:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:49:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:49:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:49:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:49:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:49:49Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:49:49Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:49:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:49:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:49:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:49:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:49:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:49:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:49:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:50:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:50:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:50:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:50:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:50:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:50:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:50:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:51:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:51:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:51:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:51:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:52:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:52:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:52:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:54:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:54:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T14:54:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:54:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:54:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:54:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:54:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:54:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:54:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:54:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:54:49Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:54:49Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:54:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:54:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:54:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:54:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:54:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:54:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:54:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:55:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:55:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:55:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:55:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:55:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:55:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:55:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:56:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:56:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:56:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:56:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:57:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:57:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:57:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:59:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:59:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T14:59:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T14:59:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:59:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:59:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:59:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:59:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:59:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:59:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:59:49Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:59:49Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:59:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:59:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:59:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:59:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:59:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:59:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T14:59:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:00:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:00:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:00:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:00:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:00:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:00:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:00:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:01:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:01:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:01:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:01:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:02:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:02:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:02:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:04:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:04:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T15:04:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:04:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:04:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:04:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:04:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:04:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:04:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:04:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:04:49Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:04:49Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:04:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:04:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:04:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:04:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:04:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:04:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:04:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:05:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:05:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:05:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:05:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:05:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:05:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:05:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:06:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:06:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:06:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:06:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:07:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:07:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:07:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:09:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:09:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T15:09:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:09:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:09:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:09:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:09:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:09:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:09:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:09:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:09:49Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:09:49Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:09:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:09:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:09:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:09:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:09:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:09:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:09:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:10:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:10:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:10:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:10:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:10:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:10:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:10:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:11:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:11:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:11:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:11:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:12:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:12:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:12:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:14:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:14:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T15:14:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:14:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:14:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:14:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:14:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:14:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:14:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:14:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:14:49Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:14:49Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:14:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:14:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:14:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:14:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:14:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:14:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:14:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:15:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:15:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:15:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:15:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:15:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:15:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:15:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:16:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:16:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:16:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:16:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:17:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:17:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:17:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:19:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:19:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T15:19:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:19:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:19:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:19:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:19:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:19:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:19:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:19:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:19:49Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:19:49Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:19:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:19:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:19:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:19:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:19:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:19:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:19:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:20:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:20:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:20:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:20:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:20:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:20:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:20:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:21:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:21:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:21:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:21:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:22:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:22:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:22:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:24:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:24:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T15:24:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:24:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:24:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:24:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:24:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:24:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:24:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:24:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:24:49Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:24:49Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:24:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:24:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:24:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:24:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:24:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:24:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:24:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:25:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:25:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:25:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:25:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:25:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:25:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:25:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:26:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:26:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:26:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:26:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:27:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:27:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:27:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:29:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:29:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T15:29:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:29:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:29:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:29:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:29:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:29:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:29:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:29:49Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:29:49Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:29:49Z" level=debug msg="updating secret \"bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do\" due to password rotation - next rotation date: 2022-01-20 15:29:26" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:29:49Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:30:04Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:30:19Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:30:34Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:30:49Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:31:04Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:31:19Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:31:34Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:31:49Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:31:49Z" level=warning msg="error while syncing cluster state: could not sync secrets: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:31:50Z" level=error msg="could not sync cluster: could not sync secrets: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:34:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:34:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T15:34:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:34:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:34:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:34:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:34:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:34:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:34:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:34:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:34:49Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:34:49Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:34:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:34:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:34:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:34:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:34:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:34:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:34:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:35:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:35:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:35:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:35:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:35:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:35:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:35:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:36:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:36:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:36:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:36:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:37:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:37:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:37:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:39:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:39:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T15:39:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:39:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:39:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:39:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:39:48Z" level=debug msg="updating secret \"bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do\" due to password rotation - next rotation date: 2022-01-20 15:39:24" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:39:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:39:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:39:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:39:49Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:39:49Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:39:49Z" level=debug msg="updating secret \"standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do\" due to password rotation - next rotation date: 2022-01-20 15:39:25" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:39:50Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:39:50Z" level=debug msg="updating secret \"foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do\" due to password rotation - next rotation date: 2022-01-20 15:39:24" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:40:05Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:40:20Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:40:35Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:40:50Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:41:05Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:41:20Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:41:35Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:41:50Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:41:50Z" level=warning msg="error while syncing cluster state: could not sync secrets: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:41:50Z" level=error msg="could not sync cluster: could not sync secrets: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:44:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:44:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T15:44:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:44:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:44:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:44:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:44:48Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:44:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:44:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:44:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:44:49Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:44:49Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:44:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:44:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:44:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:44:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:44:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:44:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:44:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:45:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:45:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:45:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:45:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:45:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:45:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:45:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:46:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:46:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:46:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:46:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:47:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:47:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:47:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:49:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:49:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T15:49:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:49:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:49:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:49:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:49:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:49:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:49:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:49:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:49:49Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:49:49Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:49:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:49:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:49:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:49:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:49:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:49:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:49:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:50:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:50:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:50:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:50:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:50:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:50:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:50:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:51:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:51:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:51:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:51:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:52:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:52:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:52:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:54:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:54:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T15:54:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:54:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:54:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:54:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:54:48Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:54:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:54:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:54:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:54:49Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:54:49Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:54:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:54:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:54:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:54:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:54:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:54:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:54:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:55:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:55:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:55:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:55:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:55:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:55:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:55:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:56:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:56:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:56:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:56:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:57:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:57:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:57:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:59:48Z" level=info msg="SYNC event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:59:48Z" level=info msg="there are 1 clusters running" pkg=controller +time="2022-01-19T15:59:48Z" level=info msg="syncing of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T15:59:48Z" level=debug msg="team API is disabled" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:59:48Z" level=info msg="syncing secrets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:59:48Z" level=debug msg="secret default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:59:48Z" level=debug msg="secret default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:59:48Z" level=debug msg="secret default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:59:48Z" level=debug msg="secret default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:59:48Z" level=debug msg="secret default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:59:49Z" level=debug msg="secret default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:59:49Z" level=debug msg="secret default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do already exists, fetching its password" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:59:49Z" level=debug msg="syncing master service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:59:50Z" level=debug msg="syncing replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:59:50Z" level=debug msg="No load balancer created for the replica service" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:59:50Z" level=debug msg="syncing volumes using \"pvc\" storage resize mode" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:59:50Z" level=info msg="volume claims do not require changes" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:59:50Z" level=debug msg="syncing statefulsets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T15:59:51Z" level=debug msg="making GET http request: http://172.17.0.4:8008/config" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:00:03Z" level=debug msg="making GET http request: http://172.17.0.5:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:00:03Z" level=debug msg="making GET http request: http://172.17.0.4:8008/patroni" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:00:03Z" level=debug msg="syncing pod disruption budgets" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:00:03Z" level=debug msg="syncing roles" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:00:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:00:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:00:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:01:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:01:18Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:01:33Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:01:48Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:02:03Z" level=warning msg="could not connect to Postgres database: dial tcp: i/o timeout" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:02:03Z" level=warning msg="error while syncing cluster state: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:02:03Z" level=error msg="could not sync cluster: could not sync roles: could not init db connection: could not init db connection: still failing after 8 retries" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T16:03:05Z" level=info msg="deletion of the cluster started" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T16:03:05Z" level=info msg="removing the logical backup job" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:05Z" level=info msg="DELETE event has been queued" cluster-name=default/acid-minimal-cluster pkg=controller worker=0 +time="2022-01-19T16:03:05Z" level=warning msg="could not remove the logical backup k8s cron job; cronjobs.batch \"logical-backup-acid-minimal-cluster\" not found" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:05Z" level=debug msg="deleting statefulset" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:05Z" level=info msg="statefulset \"default/acid-minimal-cluster\" has been deleted" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:05Z" level=debug msg="deleting pods" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:05Z" level=debug msg="deleting pod \"default/acid-minimal-cluster-0\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:05Z" level=debug msg="subscribing to pod \"default/acid-minimal-cluster-0\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:20Z" level=debug msg="unsubscribing from pod \"default/acid-minimal-cluster-0\" events" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:20Z" level=info msg="pod \"default/acid-minimal-cluster-0\" has been deleted" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:20Z" level=debug msg="deleting pod \"default/acid-minimal-cluster-1\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:20Z" level=debug msg="subscribing to pod \"default/acid-minimal-cluster-1\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=debug msg="unsubscribing from pod \"default/acid-minimal-cluster-1\" events" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=info msg="pod \"default/acid-minimal-cluster-1\" has been deleted" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=debug msg="pods have been deleted" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=debug msg="deleting PVCs" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=debug msg="deleting PVC \"default/pgdata-acid-minimal-cluster-0\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=debug msg="deleting PVC \"default/pgdata-acid-minimal-cluster-1\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=debug msg="PVCs have been deleted" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=debug msg="deleting secret \"default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=info msg="secret \"default/zalando.acid-minimal-cluster.credentials.postgresql.acid.zalan.do\" has been deleted" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=debug msg="deleting secret \"default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=info msg="secret \"default/bar-reader-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do\" has been deleted" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=debug msg="deleting secret \"default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=info msg="secret \"default/bar-writer-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do\" has been deleted" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=debug msg="deleting secret \"default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=info msg="secret \"default/foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do\" has been deleted" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=debug msg="deleting secret \"default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=info msg="secret \"default/standby.acid-minimal-cluster.credentials.postgresql.acid.zalan.do\" has been deleted" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=debug msg="deleting secret \"default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=info msg="secret \"default/postgres.acid-minimal-cluster.credentials.postgresql.acid.zalan.do\" has been deleted" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=debug msg="deleting secret \"default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=info msg="secret \"default/bar-owner-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do\" has been deleted" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=debug msg="deleting pod disruption budget" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:40Z" level=info msg="pod disruption budget \"default/postgres-acid-minimal-cluster-pdb\" has been deleted" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:43Z" level=debug msg="deleting endpoint" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:43Z" level=info msg="endpoint \"default/acid-minimal-cluster\" has been deleted" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:43Z" level=debug msg="deleting service master" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:43Z" level=info msg="master service \"default/acid-minimal-cluster\" has been deleted" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:43Z" level=debug msg="deleting endpoint" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:43Z" level=info msg="endpoint \"default/acid-minimal-cluster-repl\" has been deleted" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:43Z" level=debug msg="deleting service replica" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:44Z" level=info msg="replica service \"default/acid-minimal-cluster-repl\" has been deleted" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:44Z" level=debug msg="removing leftover Patroni objects (endpoints / services and configmaps)" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:44Z" level=debug msg="deleting Patroni cluster object \"endpoint\" with name \"default/acid-minimal-cluster-config\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:44Z" level=debug msg="deleting Patroni cluster object \"service\" with name \"default/acid-minimal-cluster-config\"" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:44Z" level=info msg="deleting connection pooler spilo-role=master" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:44Z" level=debug msg="no connection pooler to delete" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:44Z" level=info msg="deleting connection pooler spilo-role=replica" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:44Z" level=debug msg="no connection pooler to delete" cluster-name=default/acid-minimal-cluster pkg=cluster +time="2022-01-19T16:03:44Z" level=info msg="cluster has been deleted" cluster-name=default/acid-minimal-cluster pkg=controller worker=0