refactoring

This commit is contained in:
Felix Kunde 2021-02-09 15:06:37 +01:00
parent db568c0ef5
commit 27ec82bd85
6 changed files with 17 additions and 30 deletions

View File

@ -1163,6 +1163,7 @@ func (c *Cluster) initHumanUsers() error {
}
}
if c.Config.PgTeamMap != nil {
additionalTeams := c.Config.PgTeamMap.GetAdditionalTeams(c.Spec.TeamID, true)
for _, additionalTeam := range additionalTeams {
if !(util.SliceContains(superuserTeams, additionalTeam)) {
@ -1172,6 +1173,7 @@ func (c *Cluster) initHumanUsers() error {
}
}
}
}
if clusterIsOwnedBySuperuserTeam {
c.logger.Infof("Team %q owning the cluster is also a team of superusers. Created superuser roles for its members instead of admin roles.", c.Spec.TeamID)

View File

@ -8,7 +8,6 @@ import (
"github.com/sirupsen/logrus"
acidv1 "github.com/zalando/postgres-operator/pkg/apis/acid.zalan.do/v1"
"github.com/zalando/postgres-operator/pkg/spec"
pgteams "github.com/zalando/postgres-operator/pkg/teams"
"github.com/zalando/postgres-operator/pkg/util/config"
"github.com/zalando/postgres-operator/pkg/util/constants"
"github.com/zalando/postgres-operator/pkg/util/k8sutil"
@ -24,7 +23,6 @@ const (
var logger = logrus.New().WithField("test", "cluster")
var eventRecorder = record.NewFakeRecorder(1)
var teamMap = make(pgteams.PostgresTeamMap, 0)
var cl = New(
Config{
@ -39,7 +37,6 @@ var cl = New(
DownscalerAnnotations: []string{"downscaler/*"},
},
},
PgTeamMap: &teamMap,
},
k8sutil.NewMockKubernetesClient(),
acidv1.Postgresql{ObjectMeta: metav1.ObjectMeta{Name: "acid-test", Namespace: "test", Annotations: map[string]string{"downscaler/downtime_replicas": "0"}}},

View File

@ -242,11 +242,13 @@ func (c *Cluster) getTeamMembers(teamID string) ([]string, error) {
members := []string{}
additionalMembers := []string{}
if c.Config.PgTeamMap != nil {
for team, membership := range *c.Config.PgTeamMap {
if team == teamID {
additionalMembers = membership.AdditionalMembers
}
}
}
for _, member := range additionalMembers {
members = append(members, member)

View File

@ -332,7 +332,7 @@ func (c *Controller) initController() {
if c.opConfig.EnablePostgresTeamCRD {
c.loadPostgresTeams()
} else {
c.pgTeamMap.Reset()
c.pgTeamMap = teams.PostgresTeamMap{}
}
if c.opConfig.DebugLogging {

View File

@ -6,11 +6,11 @@ import (
)
// PostgresTeamMap is the operator's internal representation of all PostgresTeam CRDs
type PostgresTeamMap map[string]*PostgresTeamMembership
type PostgresTeamMap map[string]*postgresTeamMembership
var emptyTeamMap = make(PostgresTeamMap, 0)
type PostgresTeamMembership struct {
type postgresTeamMembership struct {
AdditionalSuperuserTeams []string
AdditionalTeams []string
AdditionalMembers []string
@ -115,15 +115,10 @@ func (ptm *PostgresTeamMap) Load(pgTeams *acidv1.PostgresTeamList) {
fetchTeams(&teamIDs, teamMemberSet)
for teamID := range teamIDs {
(*ptm)[teamID] = &PostgresTeamMembership{
(*ptm)[teamID] = &postgresTeamMembership{
AdditionalSuperuserTeams: util.CoalesceStrArr(superuserTeamSet.toMap()[teamID], []string{}),
AdditionalTeams: util.CoalesceStrArr(teamSet.toMap()[teamID], []string{}),
AdditionalMembers: util.CoalesceStrArr(teamMemberSet.toMap()[teamID], []string{}),
}
}
}
// Reset a PostgresTeamMap
func (ptm *PostgresTeamMap) Reset() {
*ptm = emptyTeamMap
}

View File

@ -3,7 +3,6 @@ package teams
import (
"testing"
"github.com/stretchr/testify/assert"
acidv1 "github.com/zalando/postgres-operator/pkg/apis/acid.zalan.do/v1"
"github.com/zalando/postgres-operator/pkg/util"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
@ -109,14 +108,6 @@ func TestLoadingPostgresTeamCRD(t *testing.T) {
}
}
// TestLoadingPostgresTeamCRD PostgresTeamMap is the operator's internal representation of all PostgresTeam CRDs
func TestResetPostgresTeamCRD(t *testing.T) {
teamMap := &pgTeamMap
teamMap.Reset()
assert.Equal(t, teamMap, &PostgresTeamMap{})
}
// TestGetAdditionalTeams if returns teams with and without transitive dependencies
func TestGetAdditionalTeams(t *testing.T) {
tests := []struct {