Skip to content
#

multi-tenancy

Here are 122 public repositories matching this topic...

weilaaa
weilaaa commented Aug 18, 2021

Why CubeOptions need validation?
Before running KubeCube, we are supposed to doing options validate, quick exit if validate failed.

	Start = func(c *cli.Context) error {
		if errs := flags.CubeOpts.Validate(); len(errs) > 0 {
			return utilerrors.NewAggregate(errs)
		}

		run(flags.CubeOpts, signals.SetupSignalHandler())

		return nil
	}

How to do it?
We had validat

Improve this page

Add a description, image, and links to the multi-tenancy topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the multi-tenancy topic, visit your repo's landing page and select "manage topics."

Learn more