From 259acddfa0794e321c0a0064aae500fb460c0c40 Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Mon, 17 Jan 2022 15:04:13 +0100 Subject: [PATCH 01/13] first steps for pw rotation --- .../crds/operatorconfigurations.yaml | 6 +++ manifests/configmap.yaml | 2 + manifests/operatorconfiguration.crd.yaml | 6 +++ manifests/postgres-operator.yaml | 2 +- ...gresql-operator-default-configuration.yaml | 2 + .../v1/operator_configuration_type.go | 6 ++- pkg/cluster/database.go | 48 ++++++++++++++----- pkg/cluster/sync.go | 47 +++++++++++++++--- pkg/controller/operator_config.go | 2 + pkg/spec/types.go | 1 + pkg/util/config/config.go | 2 + 11 files changed, 102 insertions(+), 22 deletions(-) diff --git a/charts/postgres-operator/crds/operatorconfigurations.yaml b/charts/postgres-operator/crds/operatorconfigurations.yaml index abe60a1d8..72ea0d42a 100644 --- a/charts/postgres-operator/crds/operatorconfigurations.yaml +++ b/charts/postgres-operator/crds/operatorconfigurations.yaml @@ -122,6 +122,12 @@ spec: users: type: object properties: + enable_password_rotation: + type: boolean + default: false + password_rotation_interval: + type: string + default: "90d" replication_username: type: string default: standby diff --git a/manifests/configmap.yaml b/manifests/configmap.yaml index 932bd60ca..379f8b92d 100644 --- a/manifests/configmap.yaml +++ b/manifests/configmap.yaml @@ -44,6 +44,7 @@ data: # enable_init_containers: "true" # enable_lazy_spilo_upgrade: "false" enable_master_load_balancer: "false" + enable_password_rotation: "true" enable_pgversion_env_var: "true" # enable_pod_antiaffinity: "false" # enable_pod_disruption_budget: "true" @@ -91,6 +92,7 @@ data: # pam_configuration: | # https://info.example.com/oauth2/tokeninfo?access_token= uid realm=/employees # pam_role_name: zalandos + password_rotation_interval: 10m 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 d4b1a2996..05012642d 100644 --- a/manifests/operatorconfiguration.crd.yaml +++ b/manifests/operatorconfiguration.crd.yaml @@ -120,6 +120,12 @@ spec: users: type: object properties: + enable_password_rotation: + type: boolean + default: false + password_rotation_interval: + type: string + default: "90d" replication_username: type: string default: standby diff --git a/manifests/postgres-operator.yaml b/manifests/postgres-operator.yaml index eddd44650..899112eb2 100644 --- a/manifests/postgres-operator.yaml +++ b/manifests/postgres-operator.yaml @@ -19,7 +19,7 @@ spec: serviceAccountName: postgres-operator containers: - name: postgres-operator - image: registry.opensource.zalan.do/acid/postgres-operator:v1.7.1 + image: registry.opensource.zalan.do/acid/postgres-operator:v1.7.1-16-gfe340192-dirty imagePullPolicy: IfNotPresent resources: requests: diff --git a/manifests/postgresql-operator-default-configuration.yaml b/manifests/postgresql-operator-default-configuration.yaml index 2ad74b1e4..cef3c4821 100644 --- a/manifests/postgresql-operator-default-configuration.yaml +++ b/manifests/postgresql-operator-default-configuration.yaml @@ -25,6 +25,8 @@ configuration: # protocol: TCP workers: 8 users: + enable_password_rotation: false + password_rotation_interval: 90d 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 a1dee6bff..862b60ec5 100644 --- a/pkg/apis/acid.zalan.do/v1/operator_configuration_type.go +++ b/pkg/apis/acid.zalan.do/v1/operator_configuration_type.go @@ -37,8 +37,10 @@ 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"` + SuperUsername string `json:"super_username,omitempty"` + ReplicationUsername string `json:"replication_username,omitempty"` + EnablePasswordRotation bool `json:"enable_password_rotation,omitempty"` + PasswordRotationInterval Duration `json:"password_rotation_interval,omitempty"` } // MajorVersionUpgradeConfiguration defines how to execute major version upgrades of Postgres. diff --git a/pkg/cluster/database.go b/pkg/cluster/database.go index aa3a5e3be..b6a6bc37f 100644 --- a/pkg/cluster/database.go +++ b/pkg/cluster/database.go @@ -17,15 +17,39 @@ import ( ) const ( - 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 - 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_db_role_setting s ON (a.oid = s.setrole AND s.setdatabase = 0::oid) - WHERE a.rolname = ANY($1) - ORDER BY 1;` + 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, + 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_db_role_setting s ON (a.oid = s.setrole AND s.setdatabase = 0::oid) + WHERE a.rolname = ANY($1) + 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 @@ -198,10 +222,10 @@ func (c *Cluster) readPgUsersFromDatabase(userNames []string) (users spec.PgUser rolname, rolpassword string rolsuper, rolinherit, rolcreaterole, rolcreatedb, rolcanlogin bool roloptions, memberof []string - roldeleted bool + rolowner, roldeleted bool ) err := rows.Scan(&rolname, &rolpassword, &rolsuper, &rolinherit, - &rolcreaterole, &rolcreatedb, &rolcanlogin, pq.Array(&roloptions), pq.Array(&memberof)) + &rolcreaterole, &rolcreatedb, &rolcanlogin, pq.Array(&roloptions), pq.Array(&memberof), &rolowner) if err != nil { return nil, fmt.Errorf("error when processing user rows: %v", err) } @@ -221,7 +245,7 @@ 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, Deleted: roldeleted} + users[rolname] = spec.PgUser{Name: rolname, Password: rolpassword, Flags: flags, MemberOf: memberof, Parameters: parameters, IsOwner: rolowner, Deleted: roldeleted} } return users, nil diff --git a/pkg/cluster/sync.go b/pkg/cluster/sync.go index 2df168a6e..bc77ec6be 100644 --- a/pkg/cluster/sync.go +++ b/pkg/cluster/sync.go @@ -613,8 +613,9 @@ func (c *Cluster) checkAndSetGlobalPostgreSQLConfiguration(pod *v1.Pod, patroniC func (c *Cluster) syncSecrets() error { var ( - err error - secret *v1.Secret + err error + secret *v1.Secret + nextRotationDate time.Time ) c.logger.Info("syncing secrets") c.setProcessName("syncing secrets") @@ -631,11 +632,12 @@ func (c *Cluster) syncSecrets() error { if secret, err = c.KubeClient.Secrets(secretSpec.Namespace).Get(context.TODO(), secretSpec.Name, metav1.GetOptions{}); err != nil { return fmt.Errorf("could not get current secret: %v", err) } - if secretUsername != string(secret.Data["username"]) { + username := string(secret.Data["username"]) + if secretUsername != username { c.logger.Errorf("secret %s does not contain the role %s", secretSpec.Name, secretUsername) continue } - c.Secrets[secret.UID] = secret + c.logger.Debugf("secret %s already exists, fetching its password", util.NameFromMeta(secret.ObjectMeta)) if secretUsername == c.systemUsers[constants.SuperuserKeyName].Name { secretUsername = constants.SuperuserKeyName @@ -647,10 +649,41 @@ func (c *Cluster) syncSecrets() error { userMap = c.pgUsers } pwdUser := userMap[secretUsername] - // if this secret belongs to the infrastructure role and the password has changed - replace it in the secret - if pwdUser.Password != string(secret.Data["password"]) && - pwdUser.Origin == spec.RoleOriginInfrastructure { + // if password rotation is enabled update password and username if rotation interval has been passed + if c.OpConfig.EnablePasswordRotation && pwdUser.Origin != spec.RoleOriginInfrastructure && !pwdUser.IsOwner { // || c.Spec.InPlacePasswordRotation[secretUsername] { + err = json.Unmarshal(secret.Data["nextRotation"], &nextRotationDate) + if err != nil { + c.logger.Warningf("could not read rotation date of secret %s", secretSpec.Name) + nextRotationDate = time.Now() + } + + currentTime := time.Now() + if currentTime.After(nextRotationDate) { + //if !c.Spec.InPlacePasswordRotation[secretUsername] { + newRotationUsername := secretUsername + "_" + currentTime.Format("060102") + pwdUser.Name = newRotationUsername + pwdUser.MemberOf = []string{secretUsername} + pgSyncRequests := c.userSyncStrategy.ProduceSyncRequests(spec.PgUserMap{}, map[string]spec.PgUser{newRotationUsername: pwdUser}) + if err = c.userSyncStrategy.ExecuteSyncRequests(pgSyncRequests, c.pgDb); err != nil { + return fmt.Errorf("error executing sync statements: %v", err) + } + secret.Data["username"] = []byte(newRotationUsername) + //} + secret.Data["password"] = []byte(util.RandomPassword(constants.PasswordLength)) + secret.Data["nextRotation"] = []byte(currentTime.Add(c.OpConfig.PasswordRotationInterval).Format("2006-01-02 15:04:05")) + + c.logger.Debugf("updating the secret %s due to password rotation", secretSpec.Name) + if _, err = c.KubeClient.Secrets(secretSpec.Namespace).Update(context.TODO(), secretSpec, metav1.UpdateOptions{}); err != nil { + return fmt.Errorf("could not update secret %q: %v", secretUsername, err) + } + } + } + + c.Secrets[secret.UID] = secret + + // if this secret belongs to the infrastructure role and the password has changed - replace it in the secret + if pwdUser.Password != string(secret.Data["password"]) && pwdUser.Origin == spec.RoleOriginInfrastructure { c.logger.Debugf("updating the secret %s from the infrastructure roles", secretSpec.Name) if _, err = c.KubeClient.Secrets(secretSpec.Namespace).Update(context.TODO(), secretSpec, metav1.UpdateOptions{}); err != nil { return fmt.Errorf("could not update infrastructure role secret for role %q: %v", secretUsername, err) diff --git a/pkg/controller/operator_config.go b/pkg/controller/operator_config.go index 2f5261cd2..a361bba0a 100644 --- a/pkg/controller/operator_config.go +++ b/pkg/controller/operator_config.go @@ -54,6 +54,8 @@ func (c *Controller) importConfigurationFromCRD(fromCRD *acidv1.OperatorConfigur // user config result.SuperUsername = util.Coalesce(fromCRD.PostgresUsersConfiguration.SuperUsername, "postgres") result.ReplicationUsername = util.Coalesce(fromCRD.PostgresUsersConfiguration.ReplicationUsername, "standby") + result.EnablePasswordRotation = fromCRD.PostgresUsersConfiguration.EnablePasswordRotation + result.PasswordRotationInterval = util.CoalesceDuration(time.Duration(fromCRD.PostgresUsersConfiguration.PasswordRotationInterval), "90d") // major version upgrade config result.MajorVersionUpgradeMode = util.Coalesce(fromCRD.MajorVersionUpgrade.MajorVersionUpgradeMode, "off") diff --git a/pkg/spec/types.go b/pkg/spec/types.go index 533aae79f..3b996b6ff 100644 --- a/pkg/spec/types.go +++ b/pkg/spec/types.go @@ -55,6 +55,7 @@ type PgUser struct { MemberOf []string `yaml:"inrole"` Parameters map[string]string `yaml:"db_parameters"` AdminRole string `yaml:"admin_role"` + IsOwner bool `yaml:"is_owner"` Deleted bool `yaml:"deleted"` } diff --git a/pkg/util/config/config.go b/pkg/util/config/config.go index bb77e6231..c88ec52b4 100644 --- a/pkg/util/config/config.go +++ b/pkg/util/config/config.go @@ -99,6 +99,8 @@ type Auth struct { InfrastructureRolesDefs string `name:"infrastructure_roles_secrets"` SuperUsername string `name:"super_username" default:"postgres"` ReplicationUsername string `name:"replication_username" default:"standby"` + EnablePasswordRotation bool `name:"enable_password_rotation" default:"false"` + PasswordRotationInterval time.Duration `name:"password_rotation_interval" default:"90d"` } // Scalyr holds the configuration for the Scalyr Agent sidecar for log shipping: From ab9aff3775ecb8f967fc41af991d97aee3661b23 Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Mon, 17 Jan 2022 15:10:01 +0100 Subject: [PATCH 02/13] password rotation in K8s secrets add db connection to syncSecrets --- .../crds/operatorconfigurations.yaml | 4 +- manifests/configmap.yaml | 4 +- manifests/operatorconfiguration.crd.yaml | 4 +- manifests/postgres-operator.yaml | 2 +- ...gresql-operator-default-configuration.yaml | 2 +- .../v1/operator_configuration_type.go | 8 +- pkg/cluster/cluster.go | 14 ++- pkg/cluster/database.go | 2 +- pkg/cluster/sync.go | 103 ++++++++++++------ pkg/controller/operator_config.go | 2 +- pkg/spec/types.go | 2 +- pkg/util/config/config.go | 2 +- 12 files changed, 98 insertions(+), 51 deletions(-) diff --git a/charts/postgres-operator/crds/operatorconfigurations.yaml b/charts/postgres-operator/crds/operatorconfigurations.yaml index 72ea0d42a..603004caa 100644 --- a/charts/postgres-operator/crds/operatorconfigurations.yaml +++ b/charts/postgres-operator/crds/operatorconfigurations.yaml @@ -126,8 +126,8 @@ spec: type: boolean default: false password_rotation_interval: - type: string - default: "90d" + type: integer + default: 90 replication_username: type: string default: standby diff --git a/manifests/configmap.yaml b/manifests/configmap.yaml index 379f8b92d..6bfe537da 100644 --- a/manifests/configmap.yaml +++ b/manifests/configmap.yaml @@ -44,7 +44,7 @@ data: # enable_init_containers: "true" # enable_lazy_spilo_upgrade: "false" enable_master_load_balancer: "false" - enable_password_rotation: "true" + enable_password_rotation: "false" enable_pgversion_env_var: "true" # enable_pod_antiaffinity: "false" # enable_pod_disruption_budget: "true" @@ -92,7 +92,7 @@ data: # pam_configuration: | # https://info.example.com/oauth2/tokeninfo?access_token= uid realm=/employees # pam_role_name: zalandos - password_rotation_interval: 10m + # password_rotation_interval: "90" 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 05012642d..caa06dd26 100644 --- a/manifests/operatorconfiguration.crd.yaml +++ b/manifests/operatorconfiguration.crd.yaml @@ -124,8 +124,8 @@ spec: type: boolean default: false password_rotation_interval: - type: string - default: "90d" + type: integer + default: 90 replication_username: type: string default: standby diff --git a/manifests/postgres-operator.yaml b/manifests/postgres-operator.yaml index 899112eb2..eddd44650 100644 --- a/manifests/postgres-operator.yaml +++ b/manifests/postgres-operator.yaml @@ -19,7 +19,7 @@ spec: serviceAccountName: postgres-operator containers: - name: postgres-operator - image: registry.opensource.zalan.do/acid/postgres-operator:v1.7.1-16-gfe340192-dirty + image: registry.opensource.zalan.do/acid/postgres-operator:v1.7.1 imagePullPolicy: IfNotPresent resources: requests: diff --git a/manifests/postgresql-operator-default-configuration.yaml b/manifests/postgresql-operator-default-configuration.yaml index cef3c4821..f5144477b 100644 --- a/manifests/postgresql-operator-default-configuration.yaml +++ b/manifests/postgresql-operator-default-configuration.yaml @@ -26,7 +26,7 @@ configuration: workers: 8 users: enable_password_rotation: false - password_rotation_interval: 90d + password_rotation_interval: 90 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 862b60ec5..3c2f20fe8 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,10 @@ 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 Duration `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"` } // MajorVersionUpgradeConfiguration defines how to execute major version upgrades of Postgres. diff --git a/pkg/cluster/cluster.go b/pkg/cluster/cluster.go index 967f9d530..02c749a95 100644 --- a/pkg/cluster/cluster.go +++ b/pkg/cluster/cluster.go @@ -995,6 +995,7 @@ func (c *Cluster) initSystemUsers() { Name: c.OpConfig.SuperUsername, Namespace: c.Namespace, Password: util.RandomPassword(constants.PasswordLength), + IsDbOwner: true, } c.systemUsers[constants.ReplicationUserKeyName] = spec.PgUser{ Origin: spec.RoleOriginSystem, @@ -1112,7 +1113,6 @@ func (c *Cluster) initPreparedDatabaseRoles() error { func (c *Cluster) initDefaultRoles(defaultRoles map[string]string, admin, prefix, searchPath, secretNamespace string) error { for defaultRole, inherits := range defaultRoles { - namespace := c.Namespace //if namespaced secrets are allowed if secretNamespace != "" { @@ -1135,8 +1135,10 @@ func (c *Cluster) initDefaultRoles(defaultRoles map[string]string, admin, prefix } adminRole := "" + isOwner := false if strings.Contains(defaultRole, constants.OwnerRoleNameSuffix) { adminRole = admin + isOwner = true } else { adminRole = prefix + constants.OwnerRoleNameSuffix } @@ -1150,6 +1152,7 @@ func (c *Cluster) initDefaultRoles(defaultRoles map[string]string, admin, prefix MemberOf: memberOf, Parameters: map[string]string{"search_path": searchPath}, AdminRole: adminRole, + IsDbOwner: isOwner, } if currentRole, present := c.pgUsers[roleName]; present { c.pgUsers[roleName] = c.resolveNameConflict(¤tRole, &newRole) @@ -1171,6 +1174,14 @@ func (c *Cluster) initRobotUsers() error { } namespace := c.Namespace + // check if role is specified as database owner + isOwner := false + for _, owner := range c.Spec.Databases { + if username == owner { + isOwner = true + } + } + //if namespaced secrets are allowed if c.Config.OpConfig.EnableCrossNamespaceSecret { if strings.Contains(username, ".") { @@ -1195,6 +1206,7 @@ func (c *Cluster) initRobotUsers() error { Password: util.RandomPassword(constants.PasswordLength), Flags: flags, AdminRole: adminRole, + IsDbOwner: isOwner, } if currentRole, present := c.pgUsers[username]; present { c.pgUsers[username] = c.resolveNameConflict(¤tRole, &newRole) diff --git a/pkg/cluster/database.go b/pkg/cluster/database.go index b6a6bc37f..6c538776d 100644 --- a/pkg/cluster/database.go +++ b/pkg/cluster/database.go @@ -245,7 +245,7 @@ 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, IsOwner: rolowner, Deleted: roldeleted} + users[rolname] = spec.PgUser{Name: rolname, Password: rolpassword, Flags: flags, MemberOf: memberof, Parameters: parameters, IsDbOwner: rolowner, Deleted: roldeleted} } return users, nil diff --git a/pkg/cluster/sync.go b/pkg/cluster/sync.go index bc77ec6be..7015740ff 100644 --- a/pkg/cluster/sync.go +++ b/pkg/cluster/sync.go @@ -611,15 +611,22 @@ func (c *Cluster) checkAndSetGlobalPostgreSQLConfiguration(pod *v1.Pod, patroniC return requiresMasterRestart, nil } +func (c *Cluster) getNextRotationDate(currentDate time.Time) (time.Time, string) { + nextRotationDate := currentDate.AddDate(0, 0, int(c.OpConfig.PasswordRotationInterval)) + return nextRotationDate, nextRotationDate.Format("2006-01-02 15:04:05") +} + func (c *Cluster) syncSecrets() error { var ( - err error - secret *v1.Secret - nextRotationDate time.Time + err error + secret *v1.Secret + nextRotationDate time.Time + nextRotationDateStr string ) c.logger.Info("syncing secrets") c.setProcessName("syncing secrets") secrets := c.generateUserSecrets() + rotationUsers := make(spec.PgUserMap) for secretUsername, secretSpec := range secrets { if secret, err = c.KubeClient.Secrets(secretSpec.Namespace).Create(context.TODO(), secretSpec, metav1.CreateOptions{}); err == nil { @@ -632,11 +639,11 @@ func (c *Cluster) syncSecrets() error { if secret, err = c.KubeClient.Secrets(secretSpec.Namespace).Get(context.TODO(), secretSpec.Name, metav1.GetOptions{}); err != nil { return fmt.Errorf("could not get current secret: %v", err) } - username := string(secret.Data["username"]) + /*username := string(secret.Data["username"]) if secretUsername != username { c.logger.Errorf("secret %s does not contain the role %s", secretSpec.Name, secretUsername) continue - } + }*/ c.logger.Debugf("secret %s already exists, fetching its password", util.NameFromMeta(secret.ObjectMeta)) if secretUsername == c.systemUsers[constants.SuperuserKeyName].Name { @@ -650,54 +657,82 @@ func (c *Cluster) syncSecrets() error { } pwdUser := userMap[secretUsername] - // if password rotation is enabled update password and username if rotation interval has been passed - if c.OpConfig.EnablePasswordRotation && pwdUser.Origin != spec.RoleOriginInfrastructure && !pwdUser.IsOwner { // || c.Spec.InPlacePasswordRotation[secretUsername] { - err = json.Unmarshal(secret.Data["nextRotation"], &nextRotationDate) - if err != nil { - c.logger.Warningf("could not read rotation date of secret %s", secretSpec.Name) - nextRotationDate = time.Now() + c.Secrets[secret.UID] = secret + + // if this secret belongs to the infrastructure role and the password has changed - replace it in the secret + if pwdUser.Password != string(secret.Data["password"]) && pwdUser.Origin == spec.RoleOriginInfrastructure { + c.logger.Debugf("updating the secret %s from the infrastructure roles", secretSpec.Name) + if _, err = c.KubeClient.Secrets(secretSpec.Namespace).Update(context.TODO(), secretSpec, metav1.UpdateOptions{}); err != nil { + return fmt.Errorf("could not update infrastructure role secret for role %q: %v", secretUsername, err) } + } else { + // for non-infrastructure role - update the role with the password from the secret + pwdUser.Password = string(secret.Data["password"]) + userMap[secretUsername] = pwdUser + } + // 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] { currentTime := time.Now() + + // initialize password rotation setting first rotation date + nextRotationDateStr = string(secret.Data["nextRotation"]) + if nextRotationDate, err = time.Parse("2006-01-02 15:04:05", nextRotationDateStr); err != nil { + nextRotationDate, nextRotationDateStr = c.getNextRotationDate(currentTime) + c.logger.Warningf("rotation date not found in secret %q. Setting it to %s", secretSpec.Name, nextRotationDateStr) + secret.Data["nextRotation"] = []byte(nextRotationDateStr) + if _, err = c.KubeClient.Secrets(secretSpec.Namespace).Update(context.TODO(), secret, metav1.UpdateOptions{}); err != nil { + c.logger.Warningf("could not update secret %q: %v", secretSpec.Name, err) + continue + } + } + if currentTime.After(nextRotationDate) { //if !c.Spec.InPlacePasswordRotation[secretUsername] { - newRotationUsername := secretUsername + "_" + currentTime.Format("060102") + newRotationUsername := pwdUser.Name + "_" + currentTime.Format("060102") + pwdUser.MemberOf = []string{pwdUser.Name} pwdUser.Name = newRotationUsername - pwdUser.MemberOf = []string{secretUsername} - pgSyncRequests := c.userSyncStrategy.ProduceSyncRequests(spec.PgUserMap{}, map[string]spec.PgUser{newRotationUsername: pwdUser}) - if err = c.userSyncStrategy.ExecuteSyncRequests(pgSyncRequests, c.pgDb); err != nil { - return fmt.Errorf("error executing sync statements: %v", err) - } + rotationUsers[newRotationUsername] = pwdUser secret.Data["username"] = []byte(newRotationUsername) //} secret.Data["password"] = []byte(util.RandomPassword(constants.PasswordLength)) - secret.Data["nextRotation"] = []byte(currentTime.Add(c.OpConfig.PasswordRotationInterval).Format("2006-01-02 15:04:05")) - c.logger.Debugf("updating the secret %s due to password rotation", secretSpec.Name) - if _, err = c.KubeClient.Secrets(secretSpec.Namespace).Update(context.TODO(), secretSpec, metav1.UpdateOptions{}); err != nil { - return fmt.Errorf("could not update secret %q: %v", secretUsername, err) + _, nextRotationDateStr = c.getNextRotationDate(nextRotationDate) + secret.Data["nextRotation"] = []byte(nextRotationDateStr) + + c.logger.Debugf("updating secret %q due to password rotation - next rotation date: %s", secretSpec.Name, nextRotationDateStr) + if _, err = c.KubeClient.Secrets(secretSpec.Namespace).Update(context.TODO(), secret, metav1.UpdateOptions{}); err != nil { + c.logger.Warningf("could not update secret %q: %v", secretSpec.Name, err) + continue } } - } - - c.Secrets[secret.UID] = secret - // if this secret belongs to the infrastructure role and the password has changed - replace it in the secret - if pwdUser.Password != string(secret.Data["password"]) && pwdUser.Origin == spec.RoleOriginInfrastructure { - c.logger.Debugf("updating the secret %s from the infrastructure roles", secretSpec.Name) - if _, err = c.KubeClient.Secrets(secretSpec.Namespace).Update(context.TODO(), secretSpec, metav1.UpdateOptions{}); err != nil { - return fmt.Errorf("could not update infrastructure role secret for role %q: %v", secretUsername, err) - } - } else { - // for non-infrastructure role - update the role with the password from the secret - pwdUser.Password = string(secret.Data["password"]) - userMap[secretUsername] = pwdUser + c.Secrets[secret.UID] = secret } } else { return fmt.Errorf("could not create secret for user %s: in namespace %s: %v", secretUsername, secretSpec.Namespace, err) } } + // add new user with date suffix and use it in the secret of the original user + if len(rotationUsers) > 0 { + err = c.initDbConn() + if err != nil { + return fmt.Errorf("could not init db connection: %v", err) + } + 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) + } + 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) + } + } + } + return nil } diff --git a/pkg/controller/operator_config.go b/pkg/controller/operator_config.go index a361bba0a..4d2110d0e 100644 --- a/pkg/controller/operator_config.go +++ b/pkg/controller/operator_config.go @@ -55,7 +55,7 @@ func (c *Controller) importConfigurationFromCRD(fromCRD *acidv1.OperatorConfigur result.SuperUsername = util.Coalesce(fromCRD.PostgresUsersConfiguration.SuperUsername, "postgres") result.ReplicationUsername = util.Coalesce(fromCRD.PostgresUsersConfiguration.ReplicationUsername, "standby") result.EnablePasswordRotation = fromCRD.PostgresUsersConfiguration.EnablePasswordRotation - result.PasswordRotationInterval = util.CoalesceDuration(time.Duration(fromCRD.PostgresUsersConfiguration.PasswordRotationInterval), "90d") + result.PasswordRotationInterval = util.CoalesceUInt32(fromCRD.PostgresUsersConfiguration.PasswordRotationInterval, 90) // major version upgrade config result.MajorVersionUpgradeMode = util.Coalesce(fromCRD.MajorVersionUpgrade.MajorVersionUpgradeMode, "off") diff --git a/pkg/spec/types.go b/pkg/spec/types.go index 3b996b6ff..202e0fa6f 100644 --- a/pkg/spec/types.go +++ b/pkg/spec/types.go @@ -55,7 +55,7 @@ type PgUser struct { MemberOf []string `yaml:"inrole"` Parameters map[string]string `yaml:"db_parameters"` AdminRole string `yaml:"admin_role"` - IsOwner bool `yaml:"is_owner"` + IsDbOwner bool `yaml:"is_db_owner"` Deleted bool `yaml:"deleted"` } diff --git a/pkg/util/config/config.go b/pkg/util/config/config.go index c88ec52b4..c685389c5 100644 --- a/pkg/util/config/config.go +++ b/pkg/util/config/config.go @@ -100,7 +100,7 @@ type Auth struct { SuperUsername string `name:"super_username" default:"postgres"` ReplicationUsername string `name:"replication_username" default:"standby"` EnablePasswordRotation bool `name:"enable_password_rotation" default:"false"` - PasswordRotationInterval time.Duration `name:"password_rotation_interval" default:"90d"` + PasswordRotationInterval uint32 `name:"password_rotation_interval" default:"90"` } // Scalyr holds the configuration for the Scalyr Agent sidecar for log shipping: From 08542711e0cc7c3cd0f0eec87daf7f26fde53cbc Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Wed, 19 Jan 2022 17:54:33 +0100 Subject: [PATCH 03/13] add user retention --- .../crds/operatorconfigurations.yaml | 3 + docs/administrator.md | 56 + docs/reference/operator_parameters.md | 22 + manifests/complete-postgres-manifest.yaml | 3 + manifests/configmap.yaml | 1 + manifests/operatorconfiguration.crd.yaml | 3 + ...gresql-operator-default-configuration.yaml | 1 + .../v1/operator_configuration_type.go | 9 +- pkg/apis/acid.zalan.do/v1/postgresql_type.go | 5 +- .../acid.zalan.do/v1/zz_generated.deepcopy.go | 10 + pkg/cluster/cluster.go | 1 + pkg/cluster/database.go | 99 +- pkg/cluster/sync.go | 32 +- pkg/util/config/config.go | 1 + pkg/util/users/users.go | 11 + setting | 3902 +++++++++++++++++ 16 files changed, 4110 insertions(+), 49 deletions(-) create mode 100644 setting 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 From 58280809d8471d43f659feefccecac2ec76b5411 Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Thu, 20 Jan 2022 18:17:57 +0100 Subject: [PATCH 04/13] add e2e test --- .../postgres-operator/crds/postgresqls.yaml | 10 +++ docs/administrator.md | 8 +- e2e/tests/k8s_api.py | 3 + e2e/tests/test_e2e.py | 89 ++++++++++++++++++- manifests/postgresql.crd.yaml | 10 +++ pkg/apis/acid.zalan.do/v1/crds.go | 18 ++++ pkg/cluster/cluster.go | 11 ++- pkg/cluster/database.go | 15 ++-- pkg/cluster/sync.go | 4 +- 9 files changed, 151 insertions(+), 17 deletions(-) diff --git a/charts/postgres-operator/crds/postgresqls.yaml b/charts/postgres-operator/crds/postgresqls.yaml index d6e1dd94f..3c03e4f3c 100644 --- a/charts/postgres-operator/crds/postgresqls.yaml +++ b/charts/postgres-operator/crds/postgresqls.yaml @@ -551,6 +551,16 @@ spec: - SUPERUSER - nosuperuser - NOSUPERUSER + usersWithPasswordRotation: + type: array + nullable: true + items: + type: string + usersWithInPlacePasswordRotation: + type: array + nullable: true + items: + type: string volume: type: object required: diff --git a/docs/administrator.md b/docs/administrator.md index 00922fd48..a8db0fbfc 100644 --- a/docs/administrator.md +++ b/docs/administrator.md @@ -329,7 +329,9 @@ manifest. The rotation and retention intervals can only be configured globally. ``` spec: - usersWithSecretRotation: "foo_user,bar_reader_user" + usersWithSecretRotation: + - foo_user + - bar_reader_user ``` ### Password replacement without extra roles @@ -342,7 +344,9 @@ manifest: ``` spec: - usersWithInPlaceSecretRotation: "flyway,bar_owner_user" + usersWithInPlaceSecretRotation: + - flyway + - bar_owner_user ``` This would be the recommended option to enable rotation in secrets of database diff --git a/e2e/tests/k8s_api.py b/e2e/tests/k8s_api.py index c3ad1c999..2b75a6480 100644 --- a/e2e/tests/k8s_api.py +++ b/e2e/tests/k8s_api.py @@ -321,6 +321,9 @@ def get_cluster_leader_pod(self, labels='application=spilo,cluster-name=acid-min def get_cluster_replica_pod(self, labels='application=spilo,cluster-name=acid-minimal-cluster', namespace='default'): return self.get_cluster_pod('replica', labels, namespace) + def get_secret_data(self, username, clustername='acid-minimal-cluster', namespace='default'): + return self.api.core_v1.read_namespaced_secret( + "{}.{}.credentials.postgresql.acid.zalan.do".format(username.replace("_","-"), clustername), namespace).data class K8sBase: ''' diff --git a/e2e/tests/test_e2e.py b/e2e/tests/test_e2e.py index 606abc95f..6e1422160 100644 --- a/e2e/tests/test_e2e.py +++ b/e2e/tests/test_e2e.py @@ -4,8 +4,9 @@ import timeout_decorator import os import yaml +import base64 -from datetime import datetime +from datetime import datetime, date, timedelta from kubernetes import client from tests.k8s_api import K8s @@ -600,7 +601,6 @@ def test_lazy_spilo_upgrade(self): but lets pods run with the old image until they are recreated for reasons other than operator's activity. That works because the operator configures stateful sets to use "onDelete" pod update policy. - The test covers: 1) enabling lazy upgrade in existing operator deployment 2) forcing the normal rolling upgrade by changing the operator @@ -695,7 +695,6 @@ def test_logical_backup_cron_job(self): Ensure we can (a) create the cron job at user request for a specific PG cluster (b) update the cluster-wide image for the logical backup pod (c) delete the job at user request - Limitations: (a) Does not run the actual batch job because there is no S3 mock to upload backups to (b) Assumes 'acid-minimal-cluster' exists as defined in setUp @@ -1056,6 +1055,90 @@ def test_overwrite_pooler_deployment(self): self.eventuallyEqual(lambda: k8s.count_running_pods("connection-pooler=acid-minimal-cluster-pooler"), 0, "Pooler pods not scaled down") + @timeout_decorator.timeout(TEST_TIMEOUT_SEC) + def test_password_rotation(self): + ''' + Test password rotation and removal of users due to retention policy + ''' + k8s = self.k8s + leader = k8s.get_cluster_leader_pod() + today = date.today() + + # enable password rotation for owner of foo database + pg_patch_inplace_rotation_for_owner = { + "spec": { + "usersWithInPlaceSecretRotation": [ + "zalando" + ] + } + } + k8s.api.custom_objects_api.patch_namespaced_custom_object( + "acid.zalan.do", "v1", "default", "postgresqls", "acid-minimal-cluster", pg_patch_inplace_rotation_for_owner) + self.eventuallyEqual(lambda: k8s.get_operator_state(), {"0": "idle"}, "Operator does not get in sync") + + # check if next rotation date was set in secret + secret_data = k8s.get_secret_data("zalando") + next_rotation_timestamp = datetime.fromisoformat(str(base64.b64decode(secret_data["nextRotation"]), 'utf-8')) + today90days = today+timedelta(days=90) + self.assertEqual(today90days, next_rotation_timestamp.date(), + "Unexpected rotation date in secret of zalando user: expected {}, got {}".format(today90days, next_rotation_timestamp.date())) + + # create fake rotation users that should be removed by operator + create_fake_rotation_user = """ + CREATE ROLE foo_user201031 IN ROLE foo_user; + CREATE ROLE foo_user211031 IN ROLE foo_user; + """ + self.query_database(leader.metadata.name, "postgres", create_fake_rotation_user) + + # patch foo_user secret with outdated rotation date + fake_rotation_date = today.isoformat() + ' 00:00:00' + fake_rotation_date_encoded = base64.b64encode(fake_rotation_date.encode('utf-8')) + secret_fake_rotation = { + "data": { + "nextRotation": str(fake_rotation_date_encoded, 'utf-8'), + }, + } + k8s.api.core_v1.patch_namespaced_secret( + name="foo-user.acid-minimal-cluster.credentials.postgresql.acid.zalan.do", + namespace="default", + body=secret_fake_rotation) + + # enable password rotation for all other users (foo_user) + # this will force a sync of secrets for further assertions + enable_password_rotation = { + "data": { + "enable_password_rotation": "true", + "password_rotation_interval": "30", + "password_rotation_user_retention": "30", # should be set to 60 + }, + } + k8s.update_config(enable_password_rotation) + self.eventuallyEqual(lambda: k8s.get_operator_state(), {"0": "idle"}, + "Operator does not get in sync") + + # check if next rotation date and username have been replaced + secret_data = k8s.get_secret_data("foo_user") + secret_username = str(base64.b64decode(secret_data["username"]), 'utf-8') + next_rotation_timestamp = datetime.fromisoformat(str(base64.b64decode(secret_data["nextRotation"]), 'utf-8')) + rotation_user = "foo_user"+today.strftime("%y%m%d") + today30days = today+timedelta(days=30) + + self.assertEqual(rotation_user, secret_username, + "Unexpected username in secret of foo_user: expected {}, got {}".format(rotation_user, secret_username)) + self.assertEqual(today30days, next_rotation_timestamp.date(), + "Unexpected rotation date in secret of foo_user: expected {}, got {}".format(today30days, next_rotation_timestamp.date())) + + # check if oldest fake rotation users were deleted + # there should only be foo_user and foo_user+today.strftime("%y%m%d") + user_query = """ + SELECT rolname + FROM pg_catalog.pg_roles + WHERE rolname LIKE 'foo_user%'; + """ + self.eventuallyEqual(lambda: len(self.query_database(leader.metadata.name, "postgres", user_query)), 2, + "Found incorrect number of rotation users", 10, 5) + + @timeout_decorator.timeout(TEST_TIMEOUT_SEC) def test_patroni_config_update(self): ''' diff --git a/manifests/postgresql.crd.yaml b/manifests/postgresql.crd.yaml index d855b1812..dafbf9038 100644 --- a/manifests/postgresql.crd.yaml +++ b/manifests/postgresql.crd.yaml @@ -549,6 +549,16 @@ spec: - SUPERUSER - nosuperuser - NOSUPERUSER + usersWithPasswordRotation: + type: array + nullable: true + items: + type: string + usersWithInPlacePasswordRotation: + type: array + nullable: true + items: + type: string volume: type: object required: diff --git a/pkg/apis/acid.zalan.do/v1/crds.go b/pkg/apis/acid.zalan.do/v1/crds.go index 11187ad75..673cf0ece 100644 --- a/pkg/apis/acid.zalan.do/v1/crds.go +++ b/pkg/apis/acid.zalan.do/v1/crds.go @@ -833,6 +833,24 @@ var PostgresCRDResourceValidation = apiextv1.CustomResourceValidation{ }, }, }, + "usersWithSecretRotation": { + Type: "array", + Nullable: true, + Items: &apiextv1.JSONSchemaPropsOrArray{ + Schema: &apiextv1.JSONSchemaProps{ + Type: "string", + }, + }, + }, + "usersWithInPlaceSecretRotation": { + Type: "array", + Nullable: true, + Items: &apiextv1.JSONSchemaPropsOrArray{ + Schema: &apiextv1.JSONSchemaProps{ + Type: "string", + }, + }, + }, "volume": { Type: "object", Required: []string{"size"}, diff --git a/pkg/cluster/cluster.go b/pkg/cluster/cluster.go index d484a3869..3a57f2b0e 100644 --- a/pkg/cluster/cluster.go +++ b/pkg/cluster/cluster.go @@ -710,13 +710,18 @@ func (c *Cluster) Update(oldSpec, newSpec *acidv1.Postgresql) error { } } - // connection pooler needs one system user created, which is done in - // initUsers. Check if it needs to be called. + // check if users need to be synced sameUsers := reflect.DeepEqual(oldSpec.Spec.Users, newSpec.Spec.Users) && reflect.DeepEqual(oldSpec.Spec.PreparedDatabases, newSpec.Spec.PreparedDatabases) + sameRotatedUsers := reflect.DeepEqual(oldSpec.Spec.UsersWithSecretRotation, newSpec.Spec.UsersWithSecretRotation) && + reflect.DeepEqual(oldSpec.Spec.UsersWithInPlaceSecretRotation, newSpec.Spec.UsersWithInPlaceSecretRotation) + + // connection pooler needs one system user created, which is done in + // initUsers. Check if it needs to be called. needConnectionPooler := needMasterConnectionPoolerWorker(&newSpec.Spec) || needReplicaConnectionPoolerWorker(&newSpec.Spec) - if !sameUsers || needConnectionPooler { + + if !sameUsers || !sameRotatedUsers || needConnectionPooler { c.logger.Debugf("initialize users") if err := c.initUsers(); err != nil { c.logger.Errorf("could not init users: %v", err) diff --git a/pkg/cluster/database.go b/pkg/cluster/database.go index 24b9940a3..279cf828f 100644 --- a/pkg/cluster/database.go +++ b/pkg/cluster/database.go @@ -267,14 +267,15 @@ func (c *Cluster) cleanupRotatedUsers(rotatedUsers []string, db *sql.DB) error { return fmt.Errorf("error when querying for deprecated users from password rotation: %v", err) } + // 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) + 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) diff --git a/pkg/cluster/sync.go b/pkg/cluster/sync.go index c9fb575ae..f47b19376 100644 --- a/pkg/cluster/sync.go +++ b/pkg/cluster/sync.go @@ -674,7 +674,7 @@ 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) || - util.SliceContains(c.Spec.UsersWithSecretRotation, secretUsername) || util.SliceContains(c.Spec.UsersWithInPlaceSecretRotation, secretUsername) { + util.SliceContains(c.Spec.UsersWithSecretRotation, pwdUser.Name) || util.SliceContains(c.Spec.UsersWithInPlaceSecretRotation, pwdUser.Name) { currentTime := time.Now() // initialize password rotation setting first rotation date @@ -690,7 +690,7 @@ func (c *Cluster) syncSecrets() error { } if currentTime.After(nextRotationDate) { - if !util.SliceContains(c.Spec.UsersWithInPlaceSecretRotation, secretUsername) { + if !util.SliceContains(c.Spec.UsersWithInPlaceSecretRotation, pwdUser.Name) { retentionUsers = append(retentionUsers, pwdUser.Name) newRotationUsername := pwdUser.Name + currentTime.Format("060102") pwdUser.MemberOf = []string{pwdUser.Name} From fc2ba8009971fe79f79aaee2393b3304a5d0e833 Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Fri, 21 Jan 2022 13:14:20 +0100 Subject: [PATCH 05/13] cleanup on username mismatch if rotation was switched off --- pkg/cluster/sync.go | 70 ++++++++++++++++++++++++++++----------------- 1 file changed, 43 insertions(+), 27 deletions(-) diff --git a/pkg/cluster/sync.go b/pkg/cluster/sync.go index f47b19376..4cae9428b 100644 --- a/pkg/cluster/sync.go +++ b/pkg/cluster/sync.go @@ -620,6 +620,8 @@ func (c *Cluster) syncSecrets() error { var ( err error secret *v1.Secret + updateSecret bool + updateSecretMsg string nextRotationDate time.Time nextRotationDateStr string ) @@ -640,11 +642,6 @@ func (c *Cluster) syncSecrets() error { if secret, err = c.KubeClient.Secrets(secretSpec.Namespace).Get(context.TODO(), secretSpec.Name, metav1.GetOptions{}); err != nil { return fmt.Errorf("could not get current secret: %v", err) } - /*username := string(secret.Data["username"]) - if secretUsername != username { - c.logger.Errorf("secret %s does not contain the role %s", secretSpec.Name, secretUsername) - continue - }*/ c.logger.Debugf("secret %s already exists, fetching its password", util.NameFromMeta(secret.ObjectMeta)) if secretUsername == c.systemUsers[constants.SuperuserKeyName].Name { @@ -658,14 +655,10 @@ func (c *Cluster) syncSecrets() error { } pwdUser := userMap[secretUsername] - c.Secrets[secret.UID] = secret - // if this secret belongs to the infrastructure role and the password has changed - replace it in the secret if pwdUser.Password != string(secret.Data["password"]) && pwdUser.Origin == spec.RoleOriginInfrastructure { - c.logger.Debugf("updating the secret %s from the infrastructure roles", secretSpec.Name) - if _, err = c.KubeClient.Secrets(secretSpec.Namespace).Update(context.TODO(), secretSpec, metav1.UpdateOptions{}); err != nil { - return fmt.Errorf("could not update infrastructure role secret for role %q: %v", secretUsername, err) - } + updateSecret = true + updateSecretMsg = fmt.Sprintf("updating the secret %s from the infrastructure roles", secretSpec.Name) } else { // for non-infrastructure role - update the role with the password from the secret pwdUser.Password = string(secret.Data["password"]) @@ -674,26 +667,23 @@ 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) || - util.SliceContains(c.Spec.UsersWithSecretRotation, pwdUser.Name) || util.SliceContains(c.Spec.UsersWithInPlaceSecretRotation, pwdUser.Name) { + util.SliceContains(c.Spec.UsersWithSecretRotation, secretUsername) || util.SliceContains(c.Spec.UsersWithInPlaceSecretRotation, secretUsername) { currentTime := time.Now() // initialize password rotation setting first rotation date nextRotationDateStr = string(secret.Data["nextRotation"]) if nextRotationDate, err = time.Parse("2006-01-02 15:04:05", nextRotationDateStr); err != nil { nextRotationDate, nextRotationDateStr = c.getNextRotationDate(currentTime) - c.logger.Warningf("rotation date not found in secret %q. Setting it to %s", secretSpec.Name, nextRotationDateStr) secret.Data["nextRotation"] = []byte(nextRotationDateStr) - if _, err = c.KubeClient.Secrets(secretSpec.Namespace).Update(context.TODO(), secret, metav1.UpdateOptions{}); err != nil { - c.logger.Warningf("could not update secret %q: %v", secretSpec.Name, err) - continue - } + updateSecret = true + updateSecretMsg = fmt.Sprintf("rotation date not found in secret %q. Setting it to %s", secretSpec.Name, nextRotationDateStr) } if currentTime.After(nextRotationDate) { - if !util.SliceContains(c.Spec.UsersWithInPlaceSecretRotation, pwdUser.Name) { - retentionUsers = append(retentionUsers, pwdUser.Name) - newRotationUsername := pwdUser.Name + currentTime.Format("060102") - pwdUser.MemberOf = []string{pwdUser.Name} + if !util.SliceContains(c.Spec.UsersWithInPlaceSecretRotation, secretUsername) { + retentionUsers = append(retentionUsers, secretUsername) + newRotationUsername := secretUsername + currentTime.Format("060102") + pwdUser.MemberOf = []string{secretUsername} pwdUser.Name = newRotationUsername rotationUsers[newRotationUsername] = pwdUser secret.Data["username"] = []byte(newRotationUsername) @@ -703,15 +693,30 @@ func (c *Cluster) syncSecrets() error { _, nextRotationDateStr = c.getNextRotationDate(nextRotationDate) secret.Data["nextRotation"] = []byte(nextRotationDateStr) - c.logger.Debugf("updating secret %q due to password rotation - next rotation date: %s", secretSpec.Name, nextRotationDateStr) - if _, err = c.KubeClient.Secrets(secretSpec.Namespace).Update(context.TODO(), secret, metav1.UpdateOptions{}); err != nil { - c.logger.Warningf("could not update secret %q: %v", secretSpec.Name, err) - continue - } + updateSecret = true + updateSecretMsg = fmt.Sprintf("updating secret %q due to password rotation - next rotation date: %s", secretSpec.Name, nextRotationDateStr) + } + } else { + // username might not match if password rotation has been disabled again + if secretUsername != string(secret.Data["username"]) { + retentionUsers = append(retentionUsers, secretUsername) + secret.Data["username"] = []byte(secretUsername) + secret.Data["password"] = []byte(util.RandomPassword(constants.PasswordLength)) + secret.Data["nextRotation"] = []byte{} + updateSecret = true + updateSecretMsg = fmt.Sprintf("secret %s does not contain the role %s - updating username and resetting password", secretSpec.Name, secretUsername) } + } - c.Secrets[secret.UID] = secret + if updateSecret { + c.logger.Debugln(updateSecretMsg) + if _, err = c.KubeClient.Secrets(secretSpec.Namespace).Update(context.TODO(), secret, metav1.UpdateOptions{}); err != nil { + c.logger.Warningf("could not update secret %q: %v", secretSpec.Name, err) + continue + } } + c.Secrets[secret.UID] = secret + } else { return fmt.Errorf("could not create secret for user %s: in namespace %s: %v", secretUsername, secretSpec.Namespace, err) } @@ -727,6 +732,17 @@ func (c *Cluster) syncSecrets() error { if err = c.userSyncStrategy.ExecuteSyncRequests(pgSyncRequests, 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) + } + } + + // remove rotation users that exceed the retention interval + if len(retentionUsers) > 0 { + err = c.initDbConn() + if err != nil { + return fmt.Errorf("could not init db connection: %v", err) + } if err = c.cleanupRotatedUsers(retentionUsers, c.pgDb); err != nil { return fmt.Errorf("error creating database roles for password rotation: %v", err) } From bf1ce14fc8330521e6b72e72903903bc6a6ed136 Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Fri, 21 Jan 2022 17:29:23 +0100 Subject: [PATCH 06/13] choose right username in syncSecrets loop --- pkg/cluster/sync.go | 53 +- setting | 3902 ------------------------------------------- 2 files changed, 31 insertions(+), 3924 deletions(-) delete mode 100644 setting diff --git a/pkg/cluster/sync.go b/pkg/cluster/sync.go index 4cae9428b..a9ca5561c 100644 --- a/pkg/cluster/sync.go +++ b/pkg/cluster/sync.go @@ -638,32 +638,25 @@ func (c *Cluster) syncSecrets() error { continue } if k8sutil.ResourceAlreadyExists(err) { - var userMap map[string]spec.PgUser + c.logger.Debugf("secret %s already exists, fetching its password", util.NameFromMeta(secret.ObjectMeta)) if secret, err = c.KubeClient.Secrets(secretSpec.Namespace).Get(context.TODO(), secretSpec.Name, metav1.GetOptions{}); err != nil { return fmt.Errorf("could not get current secret: %v", err) } - c.logger.Debugf("secret %s already exists, fetching its password", util.NameFromMeta(secret.ObjectMeta)) + // sync password of pgUser + var userMap map[string]spec.PgUser + var userKey string if secretUsername == c.systemUsers[constants.SuperuserKeyName].Name { - secretUsername = constants.SuperuserKeyName + userKey = constants.SuperuserKeyName userMap = c.systemUsers } else if secretUsername == c.systemUsers[constants.ReplicationUserKeyName].Name { - secretUsername = constants.ReplicationUserKeyName + userKey = constants.ReplicationUserKeyName userMap = c.systemUsers } else { + userKey = secretUsername userMap = c.pgUsers } - pwdUser := userMap[secretUsername] - - // if this secret belongs to the infrastructure role and the password has changed - replace it in the secret - if pwdUser.Password != string(secret.Data["password"]) && pwdUser.Origin == spec.RoleOriginInfrastructure { - updateSecret = true - updateSecretMsg = fmt.Sprintf("updating the secret %s from the infrastructure roles", secretSpec.Name) - } else { - // for non-infrastructure role - update the role with the password from the secret - pwdUser.Password = string(secret.Data["password"]) - userMap[secretUsername] = pwdUser - } + pwdUser := userMap[userKey] // 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) || @@ -679,14 +672,19 @@ func (c *Cluster) syncSecrets() error { updateSecretMsg = fmt.Sprintf("rotation date not found in secret %q. Setting it to %s", secretSpec.Name, nextRotationDateStr) } + // update password and next rotation date if configured interval has passed if currentTime.After(nextRotationDate) { + // create rotation user if role is not listed for in-place password update if !util.SliceContains(c.Spec.UsersWithInPlaceSecretRotation, secretUsername) { - retentionUsers = append(retentionUsers, secretUsername) + rotationUser := pwdUser newRotationUsername := secretUsername + currentTime.Format("060102") - pwdUser.MemberOf = []string{secretUsername} - pwdUser.Name = newRotationUsername - rotationUsers[newRotationUsername] = pwdUser + rotationUser.Name = newRotationUsername + rotationUser.MemberOf = []string{secretUsername} + rotationUsers[newRotationUsername] = rotationUser secret.Data["username"] = []byte(newRotationUsername) + + // whenever there is a rotation, check if old rotation users can be deleted + retentionUsers = append(retentionUsers, secretUsername) } secret.Data["password"] = []byte(util.RandomPassword(constants.PasswordLength)) @@ -708,6 +706,17 @@ func (c *Cluster) syncSecrets() error { } } + // if this secret belongs to the infrastructure role and the password has changed - replace it in the secret + if pwdUser.Password != string(secret.Data["password"]) && pwdUser.Origin == spec.RoleOriginInfrastructure { + secret = secretSpec + updateSecret = true + updateSecretMsg = fmt.Sprintf("updating the secret %s from the infrastructure roles", secretSpec.Name) + } else { + // for non-infrastructure role - update the role with the password from the secret + pwdUser.Password = string(secret.Data["password"]) + userMap[userKey] = pwdUser + } + if updateSecret { c.logger.Debugln(updateSecretMsg) if _, err = c.KubeClient.Secrets(secretSpec.Namespace).Update(context.TODO(), secret, metav1.UpdateOptions{}); err != nil { @@ -733,7 +742,7 @@ func (c *Cluster) syncSecrets() error { 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) + c.logger.Errorf("could not close database connection after creating users for password rotation: %v", err) } } @@ -744,10 +753,10 @@ func (c *Cluster) syncSecrets() error { return fmt.Errorf("could not init db connection: %v", err) } if err = c.cleanupRotatedUsers(retentionUsers, c.pgDb); err != nil { - return fmt.Errorf("error creating database roles for password rotation: %v", err) + return fmt.Errorf("error removing users exceeding configured retention interval: %v", err) } if err := c.closeDbConn(); err != nil { - c.logger.Errorf("could not close database connection during secret rotation: %v", err) + c.logger.Errorf("could not close database connection after removing users exceeding configured retention interval: %v", err) } } diff --git a/setting b/setting deleted file mode 100644 index 307cb4640..000000000 --- a/setting +++ /dev/null @@ -1,3902 +0,0 @@ -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 From 73b4e3ac92edbd563293d44ed8e9119b39e637dc Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Fri, 21 Jan 2022 19:00:37 +0100 Subject: [PATCH 07/13] add IsDbOwner field in e2e test --- e2e/tests/test_e2e.py | 1 + pkg/cluster/sync.go | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/e2e/tests/test_e2e.py b/e2e/tests/test_e2e.py index 6e1422160..da03f693c 100644 --- a/e2e/tests/test_e2e.py +++ b/e2e/tests/test_e2e.py @@ -580,6 +580,7 @@ def verify_role(): "Parameters": None, "AdminRole": "", "Origin": 2, + "IsDbOwner": False, "Deleted": False }) return True diff --git a/pkg/cluster/sync.go b/pkg/cluster/sync.go index a9ca5561c..5a0517270 100644 --- a/pkg/cluster/sync.go +++ b/pkg/cluster/sync.go @@ -638,12 +638,13 @@ func (c *Cluster) syncSecrets() error { continue } if k8sutil.ResourceAlreadyExists(err) { - c.logger.Debugf("secret %s already exists, fetching its password", util.NameFromMeta(secret.ObjectMeta)) if secret, err = c.KubeClient.Secrets(secretSpec.Namespace).Get(context.TODO(), secretSpec.Name, metav1.GetOptions{}); err != nil { return fmt.Errorf("could not get current secret: %v", err) } + c.Secrets[secret.UID] = secret + c.logger.Debugf("secret %s already exists, fetching its password", util.NameFromMeta(secret.ObjectMeta)) - // sync password of pgUser + // fetch user map to update later var userMap map[string]spec.PgUser var userKey string if secretUsername == c.systemUsers[constants.SuperuserKeyName].Name { @@ -723,8 +724,8 @@ func (c *Cluster) syncSecrets() error { c.logger.Warningf("could not update secret %q: %v", secretSpec.Name, err) continue } + c.Secrets[secret.UID] = secret } - c.Secrets[secret.UID] = secret } else { return fmt.Errorf("could not create secret for user %s: in namespace %s: %v", secretUsername, secretSpec.Namespace, err) From f5e96c8aa5b81e23043f70d9d81d1293ff108c81 Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Fri, 21 Jan 2022 19:48:10 +0100 Subject: [PATCH 08/13] update docs --- docs/administrator.md | 49 +++++++++++++++++++++++++++++-------------- pkg/cluster/sync.go | 7 +++++++ 2 files changed, 40 insertions(+), 16 deletions(-) diff --git a/docs/administrator.md b/docs/administrator.md index a8db0fbfc..f9ca7f15d 100644 --- a/docs/administrator.md +++ b/docs/administrator.md @@ -298,27 +298,33 @@ For Helm deployments setting `rbac.createAggregateClusterRoles: true` adds these 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: +default users from `preparedDatabases`, system users). Furthermore, there +are the following exceptions: 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. +3. Database owners and direct members of owners, since ownership on database objects 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 +are replaced in the K8s 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. +inherited meaning that migration scripts should still grant and revoke rights +against the original role. The timestamp of the next rotation is written to the +secret as well. Note, if the rotation interval is decreased it is reflected in +the secrets only if the next rotation date is more days away than the new +length of the interval. + +Pods still using the previous secret values which they keep 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 roles created by +the password rotation feature 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. When +the creation date of a rotated user is older than the retention period it +might not get removed immediately. Only on the next user rotation it is checked +if users can get removed. Therefore, you might want to configure the retention +to be a multiple of the rotation interval. ### Password rotation for single roles @@ -350,8 +356,19 @@ spec: ``` 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. +owners, but only if they are not used as application users for regular read +and write operations. + +### Turning off password rotation + +When password rotation is turned off again the operator will check if the +`username` value in the secret matches the original username and replace it +with the latter. A new password is assigned and the `nextRotation` field is +cleared. A final lookup for child (rotation) users to be removed is done but +they will only be dropped if the retention policy allows for it. This is to +avoid sudden connection issues in pods which still use credentials of these +users in memory. You have to remove these child roles manually or re-enable +password rotation with smaller interval so they get cleaned up. ## Use taints and tolerations for dedicated PostgreSQL nodes diff --git a/pkg/cluster/sync.go b/pkg/cluster/sync.go index 5a0517270..1f75f8494 100644 --- a/pkg/cluster/sync.go +++ b/pkg/cluster/sync.go @@ -673,6 +673,13 @@ func (c *Cluster) syncSecrets() error { updateSecretMsg = fmt.Sprintf("rotation date not found in secret %q. Setting it to %s", secretSpec.Name, nextRotationDateStr) } + // check if next rotation can happen sooner + // if rotation interval has been decreased + currentRotationDate, _ := c.getNextRotationDate(currentTime) + if nextRotationDate.After(currentRotationDate) { + nextRotationDate = currentRotationDate + } + // update password and next rotation date if configured interval has passed if currentTime.After(nextRotationDate) { // create rotation user if role is not listed for in-place password update From 87659286b7d05481c5b073dc3d142c8fa12fc08c Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Fri, 21 Jan 2022 23:44:49 +0100 Subject: [PATCH 09/13] small left over --- pkg/controller/operator_config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/controller/operator_config.go b/pkg/controller/operator_config.go index 4d2110d0e..f53f970f5 100644 --- a/pkg/controller/operator_config.go +++ b/pkg/controller/operator_config.go @@ -56,6 +56,7 @@ func (c *Controller) importConfigurationFromCRD(fromCRD *acidv1.OperatorConfigur result.ReplicationUsername = util.Coalesce(fromCRD.PostgresUsersConfiguration.ReplicationUsername, "standby") result.EnablePasswordRotation = fromCRD.PostgresUsersConfiguration.EnablePasswordRotation result.PasswordRotationInterval = util.CoalesceUInt32(fromCRD.PostgresUsersConfiguration.PasswordRotationInterval, 90) + result.PasswordRotationUserRetention = util.CoalesceUInt32(fromCRD.PostgresUsersConfiguration.DeepCopy().PasswordRotationUserRetention, 180) // major version upgrade config result.MajorVersionUpgradeMode = util.Coalesce(fromCRD.MajorVersionUpgrade.MajorVersionUpgradeMode, "off") From 98f701477073bb348b83be91b9d7e65fdfc4499f Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Sat, 22 Jan 2022 10:18:47 +0100 Subject: [PATCH 10/13] extend e2e test --- e2e/tests/test_e2e.py | 36 ++++++++++++++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) diff --git a/e2e/tests/test_e2e.py b/e2e/tests/test_e2e.py index da03f693c..9b983f78d 100644 --- a/e2e/tests/test_e2e.py +++ b/e2e/tests/test_e2e.py @@ -1085,9 +1085,11 @@ def test_password_rotation(self): "Unexpected rotation date in secret of zalando user: expected {}, got {}".format(today90days, next_rotation_timestamp.date())) # create fake rotation users that should be removed by operator + # but have one that would still fit into the retention period create_fake_rotation_user = """ CREATE ROLE foo_user201031 IN ROLE foo_user; CREATE ROLE foo_user211031 IN ROLE foo_user; + CREATE ROLE foo_user"""+(today-timedelta(days=40)).strftime("%y%m%d")+""" IN ROLE foo_user; """ self.query_database(leader.metadata.name, "postgres", create_fake_rotation_user) @@ -1130,15 +1132,45 @@ def test_password_rotation(self): "Unexpected rotation date in secret of foo_user: expected {}, got {}".format(today30days, next_rotation_timestamp.date())) # check if oldest fake rotation users were deleted - # there should only be foo_user and foo_user+today.strftime("%y%m%d") + # there should only be foo_user, foo_user+today and foo_user+today-40days user_query = """ SELECT rolname FROM pg_catalog.pg_roles WHERE rolname LIKE 'foo_user%'; """ - self.eventuallyEqual(lambda: len(self.query_database(leader.metadata.name, "postgres", user_query)), 2, + self.eventuallyEqual(lambda: len(self.query_database(leader.metadata.name, "postgres", user_query)), 3, "Found incorrect number of rotation users", 10, 5) + # disable password rotation for all other users (foo_user) + # and pick smaller intervals to see if the third fake rotation user is dropped + enable_password_rotation = { + "data": { + "enable_password_rotation": "false", + "password_rotation_interval": "15", + "password_rotation_user_retention": "30", # 2 * rotation interval + }, + } + k8s.update_config(enable_password_rotation) + self.eventuallyEqual(lambda: k8s.get_operator_state(), {"0": "idle"}, + "Operator does not get in sync") + + # check if username in foo_user secret is reset + secret_data = k8s.get_secret_data("foo_user") + secret_username = str(base64.b64decode(secret_data["username"]), 'utf-8') + next_rotation_timestamp = str(base64.b64decode(secret_data["nextRotation"]), 'utf-8') + self.assertEqual("foo_user", secret_username, + "Unexpected username in secret of foo_user: expected {}, got {}".format("foo_user", secret_username)) + self.assertEqual('', next_rotation_timestamp, + "Unexpected rotation date in secret of foo_user: expected empty string, got {}".format(next_rotation_timestamp)) + + # check roles again, there should only be foo_user and foo_user+today + user_query = """ + SELECT rolname + FROM pg_catalog.pg_roles + WHERE rolname LIKE 'foo_user%'; + """ + self.eventuallyEqual(lambda: len(self.query_database(leader.metadata.name, "postgres", user_query)), 2, + "Found incorrect number of rotation users", 10, 5) @timeout_decorator.timeout(TEST_TIMEOUT_SEC) def test_patroni_config_update(self): From 48cbc66d199f0c8afcd440f53373212c0a960c87 Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Tue, 1 Feb 2022 14:11:29 +0100 Subject: [PATCH 11/13] add missing parts to manifest reference docs --- docs/reference/cluster_manifest.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/reference/cluster_manifest.md b/docs/reference/cluster_manifest.md index 3b6393550..6bb4e4a82 100644 --- a/docs/reference/cluster_manifest.md +++ b/docs/reference/cluster_manifest.md @@ -115,6 +115,22 @@ These parameters are grouped directly under the `spec` key in the manifest. create the K8s secret in that namespace. The part after the first `.` is considered to be the user name. Optional. +* **usersWithSecretRotation** + list of users to enable credential rotation in K8s secrets. The rotation + interval can only be configured globally. On each rotation a new user will + be added in the database replacing the `username` value in the secret of + the listed user. Although, rotation users inherit all rights from the + original role, keep in mind that ownership is not transferred. See more + details in the [administrator docs](https://github.com/zalando/postgres-operator/blob/master/docs/administrator.md#password-rotation-in-k8s-secrets). + +* **usersWithInPlaceSecretRotation** + list of users to enable in-place password rotation in K8s secrets. The + rotation interval can only be configured globally. On each rotation the + password value will be replaced in the secrets which the operator reflects + in the database, too. List only users here that rarely connect to the + database, like a flyway user running a migration on Pod start. See more + details in the [administrator docs](https://github.com/zalando/postgres-operator/blob/master/docs/administrator.md#password-replacement-without-extra-roles). + * **databases** a map of database names to database owners for the databases that should be created by the operator. The owner users should already exist on the cluster From 11c286fe9a10faca050988ac92665b03b0da0b04 Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Wed, 9 Feb 2022 18:40:49 +0100 Subject: [PATCH 12/13] add unit test for syncSecrets + new updateSecret func --- docs/administrator.md | 21 +-- docs/reference/cluster_manifest.md | 2 +- docs/reference/operator_parameters.md | 8 +- pkg/cluster/cluster.go | 1 - pkg/cluster/sync.go | 229 ++++++++++++++------------ pkg/cluster/sync_test.go | 81 ++++++++- 6 files changed, 216 insertions(+), 126 deletions(-) diff --git a/docs/administrator.md b/docs/administrator.md index f9ca7f15d..5a6af0b95 100644 --- a/docs/administrator.md +++ b/docs/administrator.md @@ -297,13 +297,14 @@ For Helm deployments setting `rbac.createAggregateClusterRoles: true` adds these 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 users from `preparedDatabases`, system users). Furthermore, there -are the following exceptions: +It happens only for `LOGIN` roles with an associated secret (manifest roles, +default users from `preparedDatabases`). Furthermore, there are the following +exceptions: 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 direct members of owners, since ownership on database objects can not be inherited. +2. Team API roles that connect via OAuth2 and JWT token (no secrets to these roles anyway). +3. Database owners since ownership on database objects can not be inherited. +4. System users such as `postgres`, `standby` and `pooler` user. 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 @@ -317,7 +318,7 @@ length of the interval. Pods still using the previous secret values which they keep 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 roles created by +replaced. However, a retention policy can be configured for users created by the password rotation feature 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. When @@ -326,7 +327,7 @@ might not get removed immediately. Only on the next user rotation it is checked if users can get removed. Therefore, you might want to configure the retention to be a multiple of the rotation interval. -### Password rotation for single roles +### Password rotation for single users 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 @@ -340,11 +341,11 @@ spec: - bar_reader_user ``` -### Password replacement without extra roles +### Password replacement without extra users 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 +database users but can replace only the password in the K8s secret. This type of rotation cannot be configured globally but specified in the cluster manifest: @@ -367,7 +368,7 @@ with the latter. A new password is assigned and the `nextRotation` field is cleared. A final lookup for child (rotation) users to be removed is done but they will only be dropped if the retention policy allows for it. This is to avoid sudden connection issues in pods which still use credentials of these -users in memory. You have to remove these child roles manually or re-enable +users in memory. You have to remove these child users manually or re-enable password rotation with smaller interval so they get cleaned up. ## Use taints and tolerations for dedicated PostgreSQL nodes diff --git a/docs/reference/cluster_manifest.md b/docs/reference/cluster_manifest.md index 6bb4e4a82..9d65062c0 100644 --- a/docs/reference/cluster_manifest.md +++ b/docs/reference/cluster_manifest.md @@ -129,7 +129,7 @@ These parameters are grouped directly under the `spec` key in the manifest. password value will be replaced in the secrets which the operator reflects in the database, too. List only users here that rarely connect to the database, like a flyway user running a migration on Pod start. See more - details in the [administrator docs](https://github.com/zalando/postgres-operator/blob/master/docs/administrator.md#password-replacement-without-extra-roles). + details in the [administrator docs](https://github.com/zalando/postgres-operator/blob/master/docs/administrator.md#password-replacement-without-extra-users). * **databases** a map of database names to database owners for the databases that should be diff --git a/docs/reference/operator_parameters.md b/docs/reference/operator_parameters.md index 4a67ace09..4df9ad94d 100644 --- a/docs/reference/operator_parameters.md +++ b/docs/reference/operator_parameters.md @@ -175,12 +175,12 @@ under the `users` key. `standby`. * **enable_password_rotation** - For all LOGIN roles that are not database owners the Operator can rotate + 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`. + all priviliges from the original roles. The rotation date (in YYMMDD format) + is appended to the names of the new user. 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 diff --git a/pkg/cluster/cluster.go b/pkg/cluster/cluster.go index 3a57f2b0e..0059ca134 100644 --- a/pkg/cluster/cluster.go +++ b/pkg/cluster/cluster.go @@ -1000,7 +1000,6 @@ func (c *Cluster) initSystemUsers() { Name: c.OpConfig.SuperUsername, Namespace: c.Namespace, Password: util.RandomPassword(constants.PasswordLength), - IsDbOwner: true, } c.systemUsers[constants.ReplicationUserKeyName] = spec.PgUser{ Origin: spec.RoleOriginSystem, diff --git a/pkg/cluster/sync.go b/pkg/cluster/sync.go index 1f75f8494..bcd26a1ca 100644 --- a/pkg/cluster/sync.go +++ b/pkg/cluster/sync.go @@ -617,131 +617,37 @@ func (c *Cluster) getNextRotationDate(currentDate time.Time) (time.Time, string) } func (c *Cluster) syncSecrets() error { - var ( - err error - secret *v1.Secret - updateSecret bool - updateSecretMsg string - nextRotationDate time.Time - nextRotationDateStr string - ) + c.logger.Info("syncing secrets") c.setProcessName("syncing secrets") - secrets := c.generateUserSecrets() + generatedSecrets := c.generateUserSecrets() rotationUsers := make(spec.PgUserMap) retentionUsers := make([]string, 0) + currentTime := time.Now() - for secretUsername, secretSpec := range secrets { - if secret, err = c.KubeClient.Secrets(secretSpec.Namespace).Create(context.TODO(), secretSpec, metav1.CreateOptions{}); err == nil { + for secretUsername, generatedSecretSpec := range generatedSecrets { + secret, err := c.KubeClient.Secrets(generatedSecretSpec.Namespace).Create(context.TODO(), generatedSecretSpec, metav1.CreateOptions{}) + if err == nil { c.Secrets[secret.UID] = secret - c.logger.Debugf("created new secret %s, namespace: %s, uid: %s", util.NameFromMeta(secret.ObjectMeta), secretSpec.Namespace, secret.UID) + c.logger.Debugf("created new secret %s, namespace: %s, uid: %s", util.NameFromMeta(secret.ObjectMeta), generatedSecretSpec.Namespace, secret.UID) continue } if k8sutil.ResourceAlreadyExists(err) { - if secret, err = c.KubeClient.Secrets(secretSpec.Namespace).Get(context.TODO(), secretSpec.Name, metav1.GetOptions{}); err != nil { + if secret, err = c.KubeClient.Secrets(generatedSecretSpec.Namespace).Get(context.TODO(), generatedSecretSpec.Name, metav1.GetOptions{}); err != nil { return fmt.Errorf("could not get current secret: %v", err) } c.Secrets[secret.UID] = secret - c.logger.Debugf("secret %s already exists, fetching its password", util.NameFromMeta(secret.ObjectMeta)) - - // fetch user map to update later - var userMap map[string]spec.PgUser - var userKey string - if secretUsername == c.systemUsers[constants.SuperuserKeyName].Name { - userKey = constants.SuperuserKeyName - userMap = c.systemUsers - } else if secretUsername == c.systemUsers[constants.ReplicationUserKeyName].Name { - userKey = constants.ReplicationUserKeyName - userMap = c.systemUsers - } else { - userKey = secretUsername - userMap = c.pgUsers - } - pwdUser := userMap[userKey] - - // 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) || - util.SliceContains(c.Spec.UsersWithSecretRotation, secretUsername) || util.SliceContains(c.Spec.UsersWithInPlaceSecretRotation, secretUsername) { - currentTime := time.Now() - - // initialize password rotation setting first rotation date - nextRotationDateStr = string(secret.Data["nextRotation"]) - if nextRotationDate, err = time.Parse("2006-01-02 15:04:05", nextRotationDateStr); err != nil { - nextRotationDate, nextRotationDateStr = c.getNextRotationDate(currentTime) - secret.Data["nextRotation"] = []byte(nextRotationDateStr) - updateSecret = true - updateSecretMsg = fmt.Sprintf("rotation date not found in secret %q. Setting it to %s", secretSpec.Name, nextRotationDateStr) - } - - // check if next rotation can happen sooner - // if rotation interval has been decreased - currentRotationDate, _ := c.getNextRotationDate(currentTime) - if nextRotationDate.After(currentRotationDate) { - nextRotationDate = currentRotationDate - } - - // update password and next rotation date if configured interval has passed - if currentTime.After(nextRotationDate) { - // create rotation user if role is not listed for in-place password update - if !util.SliceContains(c.Spec.UsersWithInPlaceSecretRotation, secretUsername) { - rotationUser := pwdUser - newRotationUsername := secretUsername + currentTime.Format("060102") - rotationUser.Name = newRotationUsername - rotationUser.MemberOf = []string{secretUsername} - rotationUsers[newRotationUsername] = rotationUser - secret.Data["username"] = []byte(newRotationUsername) - - // whenever there is a rotation, check if old rotation users can be deleted - retentionUsers = append(retentionUsers, secretUsername) - } - secret.Data["password"] = []byte(util.RandomPassword(constants.PasswordLength)) - - _, nextRotationDateStr = c.getNextRotationDate(nextRotationDate) - secret.Data["nextRotation"] = []byte(nextRotationDateStr) - - updateSecret = true - updateSecretMsg = fmt.Sprintf("updating secret %q due to password rotation - next rotation date: %s", secretSpec.Name, nextRotationDateStr) - } - } else { - // username might not match if password rotation has been disabled again - if secretUsername != string(secret.Data["username"]) { - retentionUsers = append(retentionUsers, secretUsername) - secret.Data["username"] = []byte(secretUsername) - secret.Data["password"] = []byte(util.RandomPassword(constants.PasswordLength)) - secret.Data["nextRotation"] = []byte{} - updateSecret = true - updateSecretMsg = fmt.Sprintf("secret %s does not contain the role %s - updating username and resetting password", secretSpec.Name, secretUsername) - } + if err = c.updateSecret(secretUsername, generatedSecretSpec, secret, &rotationUsers, &retentionUsers, currentTime); err != nil { + c.logger.Warningf("syncing secret %s failed: %v", util.NameFromMeta(secret.ObjectMeta), err) } - - // if this secret belongs to the infrastructure role and the password has changed - replace it in the secret - if pwdUser.Password != string(secret.Data["password"]) && pwdUser.Origin == spec.RoleOriginInfrastructure { - secret = secretSpec - updateSecret = true - updateSecretMsg = fmt.Sprintf("updating the secret %s from the infrastructure roles", secretSpec.Name) - } else { - // for non-infrastructure role - update the role with the password from the secret - pwdUser.Password = string(secret.Data["password"]) - userMap[userKey] = pwdUser - } - - if updateSecret { - c.logger.Debugln(updateSecretMsg) - if _, err = c.KubeClient.Secrets(secretSpec.Namespace).Update(context.TODO(), secret, metav1.UpdateOptions{}); err != nil { - c.logger.Warningf("could not update secret %q: %v", secretSpec.Name, err) - continue - } - c.Secrets[secret.UID] = secret - } - } else { - return fmt.Errorf("could not create secret for user %s: in namespace %s: %v", secretUsername, secretSpec.Namespace, err) + return fmt.Errorf("could not create secret for user %s: in namespace %s: %v", secretUsername, generatedSecretSpec.Namespace, err) } } // add new user with date suffix and use it in the secret of the original user if len(rotationUsers) > 0 { - err = c.initDbConn() + err := c.initDbConn() if err != nil { return fmt.Errorf("could not init db connection: %v", err) } @@ -756,7 +662,7 @@ func (c *Cluster) syncSecrets() error { // remove rotation users that exceed the retention interval if len(retentionUsers) > 0 { - err = c.initDbConn() + err := c.initDbConn() if err != nil { return fmt.Errorf("could not init db connection: %v", err) } @@ -771,6 +677,115 @@ func (c *Cluster) syncSecrets() error { return nil } +func (c *Cluster) updateSecret( + secretUsername string, + generatedSecret *v1.Secret, + secret *v1.Secret, + rotationUsers *spec.PgUserMap, + retentionUsers *[]string, + currentTime time.Time) error { + var ( + err error + updateSecret bool + updateSecretMsg string + nextRotationDate time.Time + nextRotationDateStr string + ) + + // fetch user map to update later + var userMap map[string]spec.PgUser + var userKey string + if secretUsername == c.systemUsers[constants.SuperuserKeyName].Name { + userKey = constants.SuperuserKeyName + userMap = c.systemUsers + } else if secretUsername == c.systemUsers[constants.ReplicationUserKeyName].Name { + userKey = constants.ReplicationUserKeyName + userMap = c.systemUsers + } else { + userKey = secretUsername + userMap = c.pgUsers + } + pwdUser := userMap[userKey] + secretName := util.NameFromMeta(secret.ObjectMeta) + + // if password rotation is enabled update password and username if rotation interval has been passed + if (c.OpConfig.EnablePasswordRotation && !pwdUser.IsDbOwner && + pwdUser.Origin != spec.RoleOriginInfrastructure && pwdUser.Origin != spec.RoleOriginSystem) || + util.SliceContains(c.Spec.UsersWithSecretRotation, secretUsername) || + util.SliceContains(c.Spec.UsersWithInPlaceSecretRotation, secretUsername) { + + // initialize password rotation setting first rotation date + nextRotationDateStr = string(secret.Data["nextRotation"]) + if nextRotationDate, err = time.ParseInLocation("2006-01-02 15:04:05", nextRotationDateStr, time.Local); err != nil { + nextRotationDate, nextRotationDateStr = c.getNextRotationDate(currentTime) + secret.Data["nextRotation"] = []byte(nextRotationDateStr) + updateSecret = true + updateSecretMsg = fmt.Sprintf("rotation date not found in secret %q. Setting it to %s", secretName, nextRotationDateStr) + } + + // check if next rotation can happen sooner + // if rotation interval has been decreased + currentRotationDate, _ := c.getNextRotationDate(currentTime) + if nextRotationDate.After(currentRotationDate) { + nextRotationDate = currentRotationDate + } + + // update password and next rotation date if configured interval has passed + if currentTime.After(nextRotationDate) { + // create rotation user if role is not listed for in-place password update + if !util.SliceContains(c.Spec.UsersWithInPlaceSecretRotation, secretUsername) { + rotationUser := pwdUser + newRotationUsername := secretUsername + currentTime.Format("060102") + rotationUser.Name = newRotationUsername + rotationUser.MemberOf = []string{secretUsername} + (*rotationUsers)[newRotationUsername] = rotationUser + secret.Data["username"] = []byte(newRotationUsername) + + // whenever there is a rotation, check if old rotation users can be deleted + *retentionUsers = append(*retentionUsers, secretUsername) + } + secret.Data["password"] = []byte(util.RandomPassword(constants.PasswordLength)) + + _, nextRotationDateStr = c.getNextRotationDate(nextRotationDate) + secret.Data["nextRotation"] = []byte(nextRotationDateStr) + + updateSecret = true + updateSecretMsg = fmt.Sprintf("updating secret %q due to password rotation - next rotation date: %s", secretName, nextRotationDateStr) + } + } else { + // username might not match if password rotation has been disabled again + if secretUsername != string(secret.Data["username"]) { + *retentionUsers = append(*retentionUsers, secretUsername) + secret.Data["username"] = []byte(secretUsername) + secret.Data["password"] = []byte(util.RandomPassword(constants.PasswordLength)) + secret.Data["nextRotation"] = []byte{} + updateSecret = true + updateSecretMsg = fmt.Sprintf("secret %s does not contain the role %s - updating username and resetting password", secretName, secretUsername) + } + } + + // if this secret belongs to the infrastructure role and the password has changed - replace it in the secret + if pwdUser.Password != string(secret.Data["password"]) && pwdUser.Origin == spec.RoleOriginInfrastructure { + secret = generatedSecret + updateSecret = true + updateSecretMsg = fmt.Sprintf("updating the secret %s from the infrastructure roles", secretName) + } else { + // for non-infrastructure role - update the role with the password from the secret + pwdUser.Password = string(secret.Data["password"]) + userMap[userKey] = pwdUser + } + + if updateSecret { + c.logger.Debugln(updateSecretMsg) + if _, err = c.KubeClient.Secrets(secret.Namespace).Update(context.TODO(), secret, metav1.UpdateOptions{}); err != nil { + return fmt.Errorf("could not update secret %q: %v", secretName, err) + } + c.Secrets[secret.UID] = secret + } + + return nil +} + func (c *Cluster) syncRoles() (err error) { c.setProcessName("syncing roles") diff --git a/pkg/cluster/sync_test.go b/pkg/cluster/sync_test.go index 3e3fc9318..65583298f 100644 --- a/pkg/cluster/sync_test.go +++ b/pkg/cluster/sync_test.go @@ -19,6 +19,7 @@ import ( "github.com/zalando/postgres-operator/mocks" acidv1 "github.com/zalando/postgres-operator/pkg/apis/acid.zalan.do/v1" fakeacidv1 "github.com/zalando/postgres-operator/pkg/generated/clientset/versioned/fake" + "github.com/zalando/postgres-operator/pkg/spec" "github.com/zalando/postgres-operator/pkg/util/config" "github.com/zalando/postgres-operator/pkg/util/k8sutil" "github.com/zalando/postgres-operator/pkg/util/patroni" @@ -26,6 +27,8 @@ import ( ) var patroniLogger = logrus.New().WithField("test", "patroni") +var acidClientSet = fakeacidv1.NewSimpleClientset() +var clientSet = fake.NewSimpleClientset() func newMockPod(ip string) *v1.Pod { return &v1.Pod{ @@ -36,9 +39,6 @@ func newMockPod(ip string) *v1.Pod { } func newFakeK8sSyncClient() (k8sutil.KubernetesClient, *fake.Clientset) { - acidClientSet := fakeacidv1.NewSimpleClientset() - clientSet := fake.NewSimpleClientset() - return k8sutil.KubernetesClient{ PodsGetter: clientSet.CoreV1(), PostgresqlsGetter: acidClientSet.AcidV1(), @@ -46,6 +46,12 @@ func newFakeK8sSyncClient() (k8sutil.KubernetesClient, *fake.Clientset) { }, clientSet } +func newFakeK8sSyncSecretsClient() (k8sutil.KubernetesClient, *fake.Clientset) { + return k8sutil.KubernetesClient{ + SecretsGetter: clientSet.CoreV1(), + }, clientSet +} + func TestSyncStatefulSetsAnnotations(t *testing.T) { testName := "test syncing statefulsets annotations" client, _ := newFakeK8sSyncClient() @@ -257,3 +263,72 @@ func TestCheckAndSetGlobalPostgreSQLConfiguration(t *testing.T) { } } } + +func TestUpdateSecret(t *testing.T) { + testName := "test syncing secrets" + client, _ := newFakeK8sSyncSecretsClient() + + clusterName := "acid-test-cluster" + namespace := "default" + username := "foo" + secretTemplate := config.StringTemplate("{username}.{cluster}.credentials") + rotationUsers := make(spec.PgUserMap) + retentionUsers := make([]string, 0) + yesterday := time.Now().AddDate(0, 0, -1) + + // new cluster with pvc storage resize mode and configured labels + var cluster = New( + Config{ + OpConfig: config.Config{ + Auth: config.Auth{ + SecretNameTemplate: secretTemplate, + EnablePasswordRotation: true, + PasswordRotationInterval: 1, + PasswordRotationUserRetention: 3, + }, + Resources: config.Resources{ + ClusterLabels: map[string]string{"application": "spilo"}, + ClusterNameLabel: "cluster-name", + }, + }, + }, client, acidv1.Postgresql{}, logger, eventRecorder) + + cluster.Name = clusterName + cluster.Namespace = namespace + cluster.pgUsers = map[string]spec.PgUser{} + cluster.Spec.Users = map[string]acidv1.UserFlags{username: {}} + cluster.initRobotUsers() + + // create a secret for user foo + cluster.syncSecrets() + + secret, err := cluster.KubeClient.Secrets(namespace).Get(context.TODO(), secretTemplate.Format("username", username, "cluster", clusterName), metav1.GetOptions{}) + assert.NoError(t, err) + generatedSecret := cluster.Secrets[secret.UID] + + // now update the secret setting next rotation date (yesterday + interval) + cluster.updateSecret(username, generatedSecret, secret, &rotationUsers, &retentionUsers, yesterday) + updatedSecret, err := cluster.KubeClient.Secrets(namespace).Get(context.TODO(), secretTemplate.Format("username", username, "cluster", clusterName), metav1.GetOptions{}) + assert.NoError(t, err) + + nextRotation := string(updatedSecret.Data["nextRotation"]) + _, nextRotationDate := cluster.getNextRotationDate(yesterday) + if nextRotation != nextRotationDate { + t.Errorf("%s: updated secret does not contain correct rotation date: expected %s, got %s", testName, nextRotationDate, nextRotation) + } + + // update secret again but use current time to trigger rotation + cluster.updateSecret(username, generatedSecret, updatedSecret, &rotationUsers, &retentionUsers, time.Now()) + updatedSecret, err = cluster.KubeClient.Secrets(namespace).Get(context.TODO(), secretTemplate.Format("username", username, "cluster", clusterName), metav1.GetOptions{}) + assert.NoError(t, err) + + if len(rotationUsers) != 1 && len(retentionUsers) != 1 { + t.Errorf("%s: unexpected number of users to rotate - expected only foo, found %d", testName, len(rotationUsers)) + } + + secretUsername := string(updatedSecret.Data["username"]) + rotatedUsername := username + time.Now().Format("060102") + if secretUsername != rotatedUsername { + t.Errorf("%s: updated secret does not contain correct username: expected %s, got %s", testName, rotatedUsername, secretUsername) + } +} From 23b70aa49b1d532d1312b8bcd2944bbf811c0cd9 Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Wed, 9 Feb 2022 19:51:11 +0100 Subject: [PATCH 13/13] let udateSecret get the secret --- pkg/cluster/sync.go | 22 ++++++++++++---------- pkg/cluster/sync_test.go | 4 ++-- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/pkg/cluster/sync.go b/pkg/cluster/sync.go index bcd26a1ca..c00f0a189 100644 --- a/pkg/cluster/sync.go +++ b/pkg/cluster/sync.go @@ -625,23 +625,19 @@ func (c *Cluster) syncSecrets() error { retentionUsers := make([]string, 0) currentTime := time.Now() - for secretUsername, generatedSecretSpec := range generatedSecrets { - secret, err := c.KubeClient.Secrets(generatedSecretSpec.Namespace).Create(context.TODO(), generatedSecretSpec, metav1.CreateOptions{}) + for secretUsername, generatedSecret := range generatedSecrets { + secret, err := c.KubeClient.Secrets(generatedSecret.Namespace).Create(context.TODO(), generatedSecret, metav1.CreateOptions{}) if err == nil { c.Secrets[secret.UID] = secret - c.logger.Debugf("created new secret %s, namespace: %s, uid: %s", util.NameFromMeta(secret.ObjectMeta), generatedSecretSpec.Namespace, secret.UID) + c.logger.Debugf("created new secret %s, namespace: %s, uid: %s", util.NameFromMeta(secret.ObjectMeta), generatedSecret.Namespace, secret.UID) continue } if k8sutil.ResourceAlreadyExists(err) { - if secret, err = c.KubeClient.Secrets(generatedSecretSpec.Namespace).Get(context.TODO(), generatedSecretSpec.Name, metav1.GetOptions{}); err != nil { - return fmt.Errorf("could not get current secret: %v", err) - } - c.Secrets[secret.UID] = secret - if err = c.updateSecret(secretUsername, generatedSecretSpec, secret, &rotationUsers, &retentionUsers, currentTime); err != nil { + if err = c.updateSecret(secretUsername, generatedSecret, &rotationUsers, &retentionUsers, currentTime); err != nil { c.logger.Warningf("syncing secret %s failed: %v", util.NameFromMeta(secret.ObjectMeta), err) } } else { - return fmt.Errorf("could not create secret for user %s: in namespace %s: %v", secretUsername, generatedSecretSpec.Namespace, err) + return fmt.Errorf("could not create secret for user %s: in namespace %s: %v", secretUsername, generatedSecret.Namespace, err) } } @@ -680,11 +676,11 @@ func (c *Cluster) syncSecrets() error { func (c *Cluster) updateSecret( secretUsername string, generatedSecret *v1.Secret, - secret *v1.Secret, rotationUsers *spec.PgUserMap, retentionUsers *[]string, currentTime time.Time) error { var ( + secret *v1.Secret err error updateSecret bool updateSecretMsg string @@ -692,6 +688,12 @@ func (c *Cluster) updateSecret( nextRotationDateStr string ) + // get the secret first + if secret, err = c.KubeClient.Secrets(generatedSecret.Namespace).Get(context.TODO(), generatedSecret.Name, metav1.GetOptions{}); err != nil { + return fmt.Errorf("could not get current secret: %v", err) + } + c.Secrets[secret.UID] = secret + // fetch user map to update later var userMap map[string]spec.PgUser var userKey string diff --git a/pkg/cluster/sync_test.go b/pkg/cluster/sync_test.go index 65583298f..80e2b8463 100644 --- a/pkg/cluster/sync_test.go +++ b/pkg/cluster/sync_test.go @@ -307,7 +307,7 @@ func TestUpdateSecret(t *testing.T) { generatedSecret := cluster.Secrets[secret.UID] // now update the secret setting next rotation date (yesterday + interval) - cluster.updateSecret(username, generatedSecret, secret, &rotationUsers, &retentionUsers, yesterday) + cluster.updateSecret(username, generatedSecret, &rotationUsers, &retentionUsers, yesterday) updatedSecret, err := cluster.KubeClient.Secrets(namespace).Get(context.TODO(), secretTemplate.Format("username", username, "cluster", clusterName), metav1.GetOptions{}) assert.NoError(t, err) @@ -318,7 +318,7 @@ func TestUpdateSecret(t *testing.T) { } // update secret again but use current time to trigger rotation - cluster.updateSecret(username, generatedSecret, updatedSecret, &rotationUsers, &retentionUsers, time.Now()) + cluster.updateSecret(username, generatedSecret, &rotationUsers, &retentionUsers, time.Now()) updatedSecret, err = cluster.KubeClient.Secrets(namespace).Get(context.TODO(), secretTemplate.Format("username", username, "cluster", clusterName), metav1.GetOptions{}) assert.NoError(t, err)