appStoreDeployment

package
v0.7.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 7, 2024 License: Apache-2.0 Imports: 33 Imported by: 0

Documentation

Index

Constants

View Source
const HELM_APP_UPDATE_COUNTER = "HelmAppUpdateCounter"

Variables

View Source
var AppStoreDeploymentWireSet = wire.NewSet(

	repository.NewClusterInstalledAppsRepositoryImpl,
	wire.Bind(new(repository.ClusterInstalledAppsRepository), new(*repository.ClusterInstalledAppsRepositoryImpl)),
	appStoreDeploymentCommon.NewAppStoreDeploymentCommonServiceImpl,
	wire.Bind(new(appStoreDeploymentCommon.AppStoreDeploymentCommonService), new(*appStoreDeploymentCommon.AppStoreDeploymentCommonServiceImpl)),
	EAMode.NewEAModeDeploymentServiceImpl,
	wire.Bind(new(EAMode.EAModeDeploymentService), new(*EAMode.EAModeDeploymentServiceImpl)),
	service.NewAppStoreDeploymentServiceImpl,
	wire.Bind(new(service.AppStoreDeploymentService), new(*service.AppStoreDeploymentServiceImpl)),
	service.NewAppStoreDeploymentDBServiceImpl,
	wire.Bind(new(service.AppStoreDeploymentDBService), new(*service.AppStoreDeploymentDBServiceImpl)),
	NewAppStoreDeploymentRestHandlerImpl,
	wire.Bind(new(AppStoreDeploymentRestHandler), new(*AppStoreDeploymentRestHandlerImpl)),
	NewAppStoreDeploymentRouterImpl,
	wire.Bind(new(AppStoreDeploymentRouter), new(*AppStoreDeploymentRouterImpl)),
	repository.NewInstalledAppVersionHistoryRepositoryImpl,
	wire.Bind(new(repository.InstalledAppVersionHistoryRepository), new(*repository.InstalledAppVersionHistoryRepositoryImpl)),

	NewCommonDeploymentRestHandlerImpl,
	wire.Bind(new(CommonDeploymentRestHandler), new(*CommonDeploymentRestHandlerImpl)),
	NewCommonDeploymentRouterImpl,
	wire.Bind(new(CommonDeploymentRouter), new(*CommonDeploymentRouterImpl)),
	argocdServer.GetACDDeploymentConfig,

	EAMode.NewInstalledAppDBServiceImpl,
	wire.Bind(new(EAMode.InstalledAppDBService), new(*EAMode.InstalledAppDBServiceImpl)),
)

Functions

This section is empty.

Types

type AppStoreDeploymentRestHandler

type AppStoreDeploymentRestHandler interface {
	InstallApp(w http.ResponseWriter, r *http.Request)
	GetInstalledAppsByAppStoreId(w http.ResponseWriter, r *http.Request)
	DeleteInstalledApp(w http.ResponseWriter, r *http.Request)
	LinkHelmApplicationToChartStore(w http.ResponseWriter, r *http.Request)
	UpdateInstalledApp(w http.ResponseWriter, r *http.Request)
	GetInstalledAppVersion(w http.ResponseWriter, r *http.Request)
	UpdateProjectHelmApp(w http.ResponseWriter, r *http.Request)
}

type AppStoreDeploymentRestHandlerImpl

type AppStoreDeploymentRestHandlerImpl struct {
	Logger *zap.SugaredLogger
	// contains filtered or unexported fields
}

func NewAppStoreDeploymentRestHandlerImpl

func NewAppStoreDeploymentRestHandlerImpl(Logger *zap.SugaredLogger, userAuthService user.UserService,
	enforcer casbin.Enforcer, enforcerUtil rbac.EnforcerUtil, enforcerUtilHelm rbac.EnforcerUtilHelm,
	appStoreDeploymentService service.AppStoreDeploymentService,
	appStoreDeploymentDBService service.AppStoreDeploymentDBService,
	validator *validator.Validate, helmAppService service2.HelmAppService,
	argoUserService argo.ArgoUserService, attributesService attributes.AttributesService,
	installAppService EAMode.InstalledAppDBService) *AppStoreDeploymentRestHandlerImpl

func (AppStoreDeploymentRestHandlerImpl) DeleteInstalledApp

func (handler AppStoreDeploymentRestHandlerImpl) DeleteInstalledApp(w http.ResponseWriter, r *http.Request)

func (AppStoreDeploymentRestHandlerImpl) GetInstalledAppVersion added in v0.4.10

func (handler AppStoreDeploymentRestHandlerImpl) GetInstalledAppVersion(w http.ResponseWriter, r *http.Request)

func (AppStoreDeploymentRestHandlerImpl) GetInstalledAppsByAppStoreId

func (handler AppStoreDeploymentRestHandlerImpl) GetInstalledAppsByAppStoreId(w http.ResponseWriter, r *http.Request)

func (AppStoreDeploymentRestHandlerImpl) InstallApp added in v0.3.20

func (*AppStoreDeploymentRestHandlerImpl) LinkHelmApplicationToChartStore added in v0.3.20

func (handler *AppStoreDeploymentRestHandlerImpl) LinkHelmApplicationToChartStore(w http.ResponseWriter, r *http.Request)

func (AppStoreDeploymentRestHandlerImpl) UpdateInstalledApp added in v0.4.10

func (handler AppStoreDeploymentRestHandlerImpl) UpdateInstalledApp(w http.ResponseWriter, r *http.Request)

func (AppStoreDeploymentRestHandlerImpl) UpdateProjectHelmApp added in v0.6.11

func (handler AppStoreDeploymentRestHandlerImpl) UpdateProjectHelmApp(w http.ResponseWriter, r *http.Request)

type AppStoreDeploymentRouter

type AppStoreDeploymentRouter interface {
	Init(configRouter *mux.Router)
}

type AppStoreDeploymentRouterImpl

type AppStoreDeploymentRouterImpl struct {
	// contains filtered or unexported fields
}

func NewAppStoreDeploymentRouterImpl

func NewAppStoreDeploymentRouterImpl(appStoreDeploymentRestHandler AppStoreDeploymentRestHandler) *AppStoreDeploymentRouterImpl

func (AppStoreDeploymentRouterImpl) Init

func (router AppStoreDeploymentRouterImpl) Init(configRouter *mux.Router)

type CommonDeploymentRestHandler added in v0.3.24

type CommonDeploymentRestHandler interface {
	GetDeploymentHistory(w http.ResponseWriter, r *http.Request)
	GetDeploymentHistoryValues(w http.ResponseWriter, r *http.Request)
	RollbackApplication(w http.ResponseWriter, r *http.Request)
}

type CommonDeploymentRestHandlerImpl added in v0.3.24

type CommonDeploymentRestHandlerImpl struct {
	Logger *zap.SugaredLogger
	// contains filtered or unexported fields
}

func NewCommonDeploymentRestHandlerImpl added in v0.3.24

func NewCommonDeploymentRestHandlerImpl(Logger *zap.SugaredLogger, userAuthService user.UserService,
	enforcer casbin.Enforcer, enforcerUtil rbac.EnforcerUtil, enforcerUtilHelm rbac.EnforcerUtilHelm,
	appStoreDeploymentService service.AppStoreDeploymentService, installedAppService EAMode.InstalledAppDBService,
	validator *validator.Validate, helmAppService service2.HelmAppService,
	helmAppRestHandler client.HelmAppRestHandler, argoUserService argo.ArgoUserService) *CommonDeploymentRestHandlerImpl

func (*CommonDeploymentRestHandlerImpl) GetDeploymentHistory added in v0.3.24

func (handler *CommonDeploymentRestHandlerImpl) GetDeploymentHistory(w http.ResponseWriter, r *http.Request)

func (*CommonDeploymentRestHandlerImpl) GetDeploymentHistoryValues added in v0.3.24

func (handler *CommonDeploymentRestHandlerImpl) GetDeploymentHistoryValues(w http.ResponseWriter, r *http.Request)

func (*CommonDeploymentRestHandlerImpl) RollbackApplication added in v0.3.24

func (handler *CommonDeploymentRestHandlerImpl) RollbackApplication(w http.ResponseWriter, r *http.Request)

type CommonDeploymentRouter added in v0.3.24

type CommonDeploymentRouter interface {
	Init(configRouter *mux.Router)
}

type CommonDeploymentRouterImpl added in v0.3.24

type CommonDeploymentRouterImpl struct {
	// contains filtered or unexported fields
}

func NewCommonDeploymentRouterImpl added in v0.3.24

func NewCommonDeploymentRouterImpl(commonDeploymentRestHandler CommonDeploymentRestHandler) *CommonDeploymentRouterImpl

func (CommonDeploymentRouterImpl) Init added in v0.3.24

func (router CommonDeploymentRouterImpl) Init(configRouter *mux.Router)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL