Skip to content

Commit

Permalink
refactor: encapsulate metadata in a struct
Browse files Browse the repository at this point in the history
  • Loading branch information
pmalek committed Jun 21, 2024
1 parent faad797 commit bf46e06
Show file tree
Hide file tree
Showing 13 changed files with 82 additions and 26 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ LDFLAGS_COMMON ?= -extldflags=-Wl,-ld_classic
endif

LDFLAGS_METADATA ?= \
-X $(REPO)/modules/manager/metadata.ProjectName=$(REPO_NAME) \
-X $(REPO)/modules/manager/metadata.Release=$(TAG) \
-X $(REPO)/modules/manager/metadata.Commit=$(COMMIT) \
-X $(REPO)/modules/manager/metadata.Repo=$(REPO_INFO) \
-X $(REPO)/modules/manager/metadata.RepoURL=$(REPO_URL)
-X $(REPO)/modules/manager/metadata.projectName=$(REPO_NAME) \
-X $(REPO)/modules/manager/metadata.release=$(TAG) \
-X $(REPO)/modules/manager/metadata.commit=$(COMMIT) \
-X $(REPO)/modules/manager/metadata.repo=$(REPO_INFO) \
-X $(REPO)/modules/manager/metadata.repoURL=$(REPO_URL)

# ------------------------------------------------------------------------------
# Configuration - Tooling
Expand Down
7 changes: 5 additions & 2 deletions cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,19 @@ import (
"github.com/kong/gateway-operator/modules/admission"
"github.com/kong/gateway-operator/modules/cli"
"github.com/kong/gateway-operator/modules/manager"
"github.com/kong/gateway-operator/modules/manager/metadata"
"github.com/kong/gateway-operator/modules/manager/scheme"
)

func main() {
cli := cli.New()
m := metadata.Metadata()

cli := cli.New(m)
cfg := cli.Parse(os.Args[1:])

ctrl.SetLogger(zap.New(zap.UseFlagOptions(cfg.LoggerOpts)))

if err := manager.Run(cfg, scheme.Get(), manager.SetupControllersShim, admission.NewRequestHandler, nil); err != nil {
if err := manager.Run(cfg, scheme.Get(), manager.SetupControllersShim, admission.NewRequestHandler, nil, m); err != nil {
ctrl.Log.Error(err, "failed to run manager")
os.Exit(1)
}
Expand Down
15 changes: 11 additions & 4 deletions modules/cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
)

// New returns a new CLI.
func New() *CLI {
func New(m metadata.Info) *CLI {
flagSet := flag.NewFlagSet("", flag.ExitOnError)

var cfg manager.Config
Expand Down Expand Up @@ -64,6 +64,7 @@ func New() *CLI {
cfg: &cfg,
loggerOpts: loggerOpts,
deferFlagValues: &deferCfg,
metadata: m,
}
}

Expand All @@ -76,6 +77,8 @@ type CLI struct {
// logic after parsing flagSet to determine desired configuration.
deferFlagValues *flagsForFurtherEvaluation
cfg *manager.Config

metadata metadata.Info
}

type flagsForFurtherEvaluation struct {
Expand Down Expand Up @@ -113,6 +116,10 @@ func (c *CLI) bindEnvVarsToFlags() (err error) {
return err
}

func (c *CLI) Metadata() metadata.Info {
return c.metadata
}

// Parse parses flag definitions from the argument list, which should not include the command name.
// Must be called after all additional flags in the FlagSet() are defined and before flags are accessed
// by the program. It returns config for controller manager.
Expand Down Expand Up @@ -160,9 +167,9 @@ func (c *CLI) Parse(arguments []string) manager.Config {
Commit string `json:"commit"`
}
out, err := json.Marshal(Version{
Release: metadata.Release,
Repo: metadata.Repo,
Commit: metadata.Commit,
Release: c.metadata.Release,
Repo: c.metadata.Repo,
Commit: c.metadata.Commit,
})
if err != nil {
fmt.Printf("ERROR: failed to print version information: %v\n", err)
Expand Down
50 changes: 44 additions & 6 deletions modules/manager/metadata/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,60 @@ package metadata
// WARNING: moving any of these variables requires changes to both the Makefile
// and the Dockerfile which modify them during the link step with -X

type Info struct {
// Release returns the release version, generally a semver like v1.0.0.
Release string

// Repo returns the git repository URL.
Repo string

// RepoURL returns the repository URL.
RepoURL string

// Commit returns the SHA from the current branch HEAD.
Commit string

// ProjectName is the name of the project.
ProjectName string

// Organization is the Kong organization
Organization string

// Flavor is the flavor of the build.
Flavor string
}

var (
// Release returns the release version, generally a semver like v1.0.0.
Release = "NOT_SET"
release = "NOT_SET"

// Repo returns the git repository URL.
Repo = "NOT_SET"
repo = "NOT_SET"

// RepoURL returns the repository URL.
RepoURL = "NOT_SET"
repoURL = "NOT_SET"

// Commit returns the SHA from the current branch HEAD.
Commit = "NOT_SET"
commit = "NOT_SET"

// ProjectName is the name of the project.
ProjectName = "NOT_SET"
projectName = "NOT_SET"

// Organization is the Kong organization
Organization = "Kong"
organization = "Kong"

// Flavor is the flavor of the build.
flavor = "oss"
)

func Metadata() Info {
return Info{
Release: release,
Repo: repo,
RepoURL: repoURL,
Commit: commit,
ProjectName: projectName,
Organization: organization,
Flavor: flavor,
}
}
12 changes: 7 additions & 5 deletions modules/manager/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ func Run(
setupControllers SetupControllersFunc,
admissionRequestHandler AdmissionRequestHandlerFunc,
startedChan chan<- struct{},
metadata metadata.Info,
) error {
setupLog := ctrl.Log.WithName("setup")
setupLog.Info("starting controller manager",
Expand Down Expand Up @@ -243,7 +244,7 @@ func Run(
// Enable anonnymous reporting when configured but not for development builds
// to reduce the noise.
if cfg.AnonymousReports && !cfg.DevelopmentMode {
stopAnonymousReports, err := setupAnonymousReports(context.Background(), cfg, setupLog)
stopAnonymousReports, err := setupAnonymousReports(context.Background(), cfg, setupLog, metadata)
if err != nil {
setupLog.Error(err, "failed setting up anonymous reports")
} else {
Expand Down Expand Up @@ -368,18 +369,19 @@ func getKubeconfig(apiServerPath string, kubeconfig string) (*rest.Config, error
// a cleanup function and an error.
// The caller is responsible to call the returned function - when the returned
// error is not nil - to stop the reports sending.
func setupAnonymousReports(ctx context.Context, cfg Config, logger logr.Logger) (func(), error) {
func setupAnonymousReports(ctx context.Context, cfg Config, logger logr.Logger, metadata metadata.Info) (func(), error) {
logger.Info("starting anonymous reports")
restConfig, err := getKubeconfig(cfg.APIServerPath, cfg.KubeconfigPath)
if err != nil {
return nil, fmt.Errorf("failed to get kubeconfig: %w", err)
}

telemetryPayload := telemetry.Payload{
"v": metadata.Release,
payload := telemetry.Payload{
"v": metadata.Release,
"flavor": metadata.Flavor,
}

tMgr, err := telemetry.CreateManager(telemetry.SignalPing, restConfig, logger, telemetryPayload)
tMgr, err := telemetry.CreateManager(telemetry.SignalPing, restConfig, logger, payload)
if err != nil {
return nil, fmt.Errorf("failed to create anonymous reports manager: %w", err)
}
Expand Down
Empty file modified scripts/apidocs-gen/config.yaml
100644 → 100755
Empty file.
Empty file modified scripts/apidocs-gen/template/gv_details.tpl
100644 → 100755
Empty file.
Empty file modified scripts/apidocs-gen/template/gv_list.tpl
100644 → 100755
Empty file.
Empty file modified scripts/apidocs-gen/template/type.tpl
100644 → 100755
Empty file.
Empty file modified scripts/apidocs-gen/template/type_members.tpl
100644 → 100755
Empty file.
1 change: 1 addition & 0 deletions test/conformance/conformance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ func TestGatewayConformance(t *testing.T) {
// Currently mode only relies on the KongRouterFlavor, but in the future
// we may want to add more modes.
mode := string(config.KongRouterFlavor)
metadata := metadata.Metadata()
reportFileName := fmt.Sprintf("standard-%s-%s-report.yaml", metadata.Release, mode)

opts := conformance.DefaultOptions(t)
Expand Down
8 changes: 5 additions & 3 deletions test/conformance/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import (
"github.com/kong/gateway-operator/config"
"github.com/kong/gateway-operator/modules/admission"
"github.com/kong/gateway-operator/modules/manager"
"github.com/kong/gateway-operator/modules/manager/metadata"
"github.com/kong/gateway-operator/modules/manager/scheme"
testutils "github.com/kong/gateway-operator/pkg/utils/test"
"github.com/kong/gateway-operator/test"
Expand Down Expand Up @@ -113,7 +114,8 @@ func TestMain(m *testing.M) {
fmt.Println("INFO: starting the operator's controller manager")
// startControllerManager will spawn the controller manager in a separate
// goroutine and will report whether that succeeded.
started := startControllerManager()
metadata := metadata.Metadata()
started := startControllerManager(metadata)
<-started

exitOnErr(testutils.BuildMTLSCredentials(ctx, clients.K8sClient, &httpc))
Expand Down Expand Up @@ -160,7 +162,7 @@ func exitOnErr(err error) {

// startControllerManager will configure the manager and start it in a separate goroutine.
// It returns a channel which will get closed when manager.Start() gets called.
func startControllerManager() <-chan struct{} {
func startControllerManager(metadata metadata.Info) <-chan struct{} {
cfg := manager.DefaultConfig()
cfg.LeaderElection = false
cfg.DevelopmentMode = true
Expand All @@ -182,7 +184,7 @@ func startControllerManager() <-chan struct{} {

startedChan := make(chan struct{})
go func() {
exitOnErr(manager.Run(cfg, scheme.Get(), manager.SetupControllersShim, admission.NewRequestHandler, startedChan))
exitOnErr(manager.Run(cfg, scheme.Get(), manager.SetupControllersShim, admission.NewRequestHandler, startedChan, metadata))
}()

return startedChan
Expand Down
5 changes: 4 additions & 1 deletion test/integration/run_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (

"github.com/kong/gateway-operator/modules/admission"
"github.com/kong/gateway-operator/modules/manager"
"github.com/kong/gateway-operator/modules/manager/metadata"
"github.com/kong/gateway-operator/modules/manager/scheme"
"github.com/kong/gateway-operator/pkg/consts"
"github.com/kong/gateway-operator/test/helpers"
Expand All @@ -22,8 +23,10 @@ func TestMain(m *testing.M) {

testSuiteToRun = helpers.ParseGoTestFlags(TestIntegration, testSuiteToRun)
cfg := integration.DefaultControllerConfigForTests()

metadata := metadata.Metadata()
managerToTest := func(startedChan chan struct{}) error {
return manager.Run(cfg, scheme.Get(), manager.SetupControllersShim, admission.NewRequestHandler, startedChan)
return manager.Run(cfg, scheme.Get(), manager.SetupControllersShim, admission.NewRequestHandler, startedChan, metadata)
}
integration.TestMain(
m,
Expand Down

0 comments on commit bf46e06

Please sign in to comment.