Skip to content

Commit

Permalink
Merge branch 'main' into update-1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
josh-berry committed Sep 20, 2023
2 parents cc3acfa + c0e5a6e commit ce0eb61
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
6 changes: 3 additions & 3 deletions common/defs-cmds.go
Original file line number Diff line number Diff line change
Expand Up @@ -390,14 +390,14 @@ Use the options listed below to change the command's output.`

const NamespaceCreateUsageText = `The ` + "`" + `temporal operator namespace create` + "`" + ` command creates a new [Namespace](/concepts/what-is-a-namespace) on the [Server](/concepts/what-is-a-frontend-service).
Namespaces can be created on the active [Cluster](/concepts/what-is-a-temporal-cluster), or any named Cluster.
` + "`" + `temporal operator namespace --cluster=MyCluster` + "`" + `
` + "`" + `temporal operator namespace --cluster=MyCluster example-1` + "`" + `
Global Namespaces can also be created.
` + "`" + `temporal operator namespace create --global` + "`" + `
` + "`" + `temporal operator namespace create --global example-2` + "`" + `
Other settings, such as [retention](/concepts/what-is-a-retention-period) and [Visibility Archival State](/concepts/what-is-visibility), can be configured as needed.
For example, the Visibility Archive can be set on a separate URI.
` + "`" + `temporal operator namespace create --retention=RetentionMyWorkflow --visibility-archival-state="enabled" --visibility-uri="some-uri"` + "`" + `
` + "`" + `temporal operator namespace create --retention=RetentionMyWorkflow --visibility-archival-state="enabled" --visibility-uri="some-uri" example-3` + "`" + `
Use the options listed below to change the command's behavior.`

Expand Down
9 changes: 4 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ require (
github.com/pborman/uuid v1.2.1
github.com/stretchr/testify v1.8.4
github.com/temporalio/tctl-kit v0.0.0-20230328153839-577f95d16fa0
github.com/temporalio/ui-server/v2 v2.17.2
github.com/temporalio/ui-server/v2 v2.18.1
github.com/urfave/cli/v2 v2.25.7
go.temporal.io/api v1.24.0
go.temporal.io/sdk v1.24.0
Expand All @@ -25,10 +25,9 @@ require (
google.golang.org/grpc v1.57.0
)

require (
github.com/cactus/go-statsd-client/v5 v5.0.0 // indirect
github.com/google/s2a-go v0.1.4 // indirect
)
require github.com/google/s2a-go v0.1.4 // indirect

require github.com/cactus/go-statsd-client/v5 v5.0.0 // indirect

require (
cloud.google.com/go v0.110.7 // indirect
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1251,8 +1251,8 @@ github.com/temporalio/tchannel-go v1.22.1-0.20220818200552-1be8d8cffa5b h1:Fs3Ld
github.com/temporalio/tchannel-go v1.22.1-0.20220818200552-1be8d8cffa5b/go.mod h1:c+V9Z/ZgkzAdyGvHrvC5AsXgN+M9Qwey04cBdKYzV7U=
github.com/temporalio/tctl-kit v0.0.0-20230328153839-577f95d16fa0 h1:E1iAre7/4VvSJri8uOnItKVsMKnP+WEQourm+zVO0cc=
github.com/temporalio/tctl-kit v0.0.0-20230328153839-577f95d16fa0/go.mod h1:hk/LJCKZNNmtVSWRKepbdUJme+k/4fb/hPkekXk40sk=
github.com/temporalio/ui-server/v2 v2.17.2 h1:tJh0DoPZXnwm9C4tHyTDWpRmdbce7Pttlzx0fMSDXxQ=
github.com/temporalio/ui-server/v2 v2.17.2/go.mod h1:2Xl5rEyCfVzIMB6H+KgayhXQ2znBbNrZGh/Di5k4pJU=
github.com/temporalio/ui-server/v2 v2.18.1 h1:6/mMxE2drN+T0hl2lXmjE70VMGIJw380vD3b4UE4e5U=
github.com/temporalio/ui-server/v2 v2.18.1/go.mod h1:jcVyKdumBgNqyN0BI8NdIXz3OUpIvsJBrMedzR3b8Z4=
github.com/twmb/murmur3 v1.1.5/go.mod h1:Qq/R7NUyOfr65zD+6Q5IHKsJLwP7exErjN6lyyq3OSQ=
github.com/twmb/murmur3 v1.1.8 h1:8Yt9taO/WN3l08xErzjeschgZU2QSrwm1kclYq+0aRg=
github.com/twmb/murmur3 v1.1.8/go.mod h1:Qq/R7NUyOfr65zD+6Q5IHKsJLwP7exErjN6lyyq3OSQ=
Expand Down

0 comments on commit ce0eb61

Please sign in to comment.