forked from TrueCloudLab/frostfs-node
22 lines
491 B
Go
22 lines
491 B
Go
package morph
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/util"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
func updateContracts(cmd *cobra.Command, _ []string) error {
|
|
wCtx, err := util.NewInitializeContext(cmd, viper.GetViper())
|
|
if err != nil {
|
|
return fmt.Errorf("initialization error: %w", err)
|
|
}
|
|
|
|
if err := deployNNS(wCtx, updateMethodName); err != nil {
|
|
return err
|
|
}
|
|
|
|
return updateContractsInternal(wCtx)
|
|
}
|