Skip to content

Commit

Permalink
Merge branch 'main' into ibc/enable_in_k8s
Browse files Browse the repository at this point in the history
  • Loading branch information
h5law committed Jul 27, 2023
2 parents 3e96c9f + a0fb2ce commit e791927
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
18 changes: 18 additions & 0 deletions app/client/cli/node.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package cli

import "github.com/spf13/cobra"

func init() {
nodeCmd := NewNodeCommand()
rootCmd.AddCommand(nodeCmd)
}

func NewNodeCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "Node",
Short: "Commands related to node management and operations",
Aliases: []string{"node", "n"},
}

return cmd
}
3 changes: 3 additions & 0 deletions charts/pocket/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ privateKeySecretKeyRef:
| config.consensus.pacemaker_config.timeout_msec | int | `10000` | |
| config.consensus.private_key | string | `""` | |
| config.fisherman.enabled | bool | `false` | |
| config.ibc.enabled | bool | `true` | |
| config.ibc.host.private_key | string | `""` | |
| config.ibc.stores_dir | string | `"/pocket/data/ibc"` | |
| config.logger.format | string | `"json"` | |
| config.logger.level | string | `"debug"` | |
| config.p2p.hostname | string | `""` | |
Expand Down

0 comments on commit e791927

Please sign in to comment.