Skip to content

Commit

Permalink
update reponame
Browse files Browse the repository at this point in the history
  • Loading branch information
share2kanna committed Jun 14, 2024
1 parent 4efca2c commit 464c2dd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions capten/common-pkg/capten-store/app_config_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ func (a *Store) UpsertAppConfig(appData *agentpb.SyncAppData) error {
appConfig.Description = appData.Config.Description
appConfig.Icon = appData.Config.Icon
appConfig.AppName = appData.Config.ChartName
appConfig.RepoName = appData.Config.RepoName
appConfig.RepoURL = appData.Config.RepoURL
appConfig.Namespace = appData.Config.Namespace
appConfig.PrivilegedNamespace = appData.Config.PrivilegedNamespace
Expand Down Expand Up @@ -86,6 +87,7 @@ func (a *Store) GetAppConfig(appReleaseName string) (*agentpb.SyncAppData, error
Description: appConfig.Description,
Icon: appConfig.Icon,
ChartName: appConfig.AppName,
RepoName: appConfig.RepoName,
RepoURL: appConfig.RepoURL,
Namespace: appConfig.Namespace,
PrivilegedNamespace: appConfig.PrivilegedNamespace,
Expand Down Expand Up @@ -136,6 +138,7 @@ func (a *Store) GetAllApps() ([]*agentpb.SyncAppData, error) {
Description: ac.Description,
Icon: ac.Icon,
ChartName: ac.AppName,
RepoName: ac.RepoName,
RepoURL: ac.RepoURL,
Namespace: ac.Namespace,
PrivilegedNamespace: ac.PrivilegedNamespace,
Expand Down

0 comments on commit 464c2dd

Please sign in to comment.