Skip to content

Commit

Permalink
Add Early Access track to the docs (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
posriniv authored Jul 9, 2024
1 parent ce69bfe commit f89f994
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmd/cluster/create_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ func init() {
createClusterCmd.Flags().String("cloud-provider", "", "[OPTIONAL] The cloud provider where database needs to be deployed. AWS, AZURE or GCP. Default AWS.")
createClusterCmd.Flags().String("cluster-tier", "", "[OPTIONAL] The tier of the cluster. Sandbox or Dedicated. Default Sandbox.")
createClusterCmd.Flags().String("cluster-type", "", "[OPTIONAL] Cluster replication type. SYNCHRONOUS or GEO_PARTITIONED. Default SYNCHRONOUS.")
createClusterCmd.Flags().String("database-version", "", "[OPTIONAL] The database version of the cluster. Production, Innovation or Preview. Default depends on cluster tier, Sandbox is Preview, Dedicated is Production.")
createClusterCmd.Flags().String("database-version", "", "[OPTIONAL] The database version of the cluster. Production, Innovation, Preview, or 'Early Access'. Default depends on cluster tier, Sandbox is Preview, Dedicated is Production.")
if util.IsFeatureFlagEnabled(util.ENTERPRISE_SECURITY) {
createClusterCmd.Flags().Bool("enterprise-security", false, "[OPTIONAL] The security level of cluster. Advanced security will have security checks for cluster. Default false.")
}
Expand Down
2 changes: 1 addition & 1 deletion cmd/cluster/update_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ func init() {
updateClusterCmd.Flags().StringArray("region-info", []string{}, `Region information for the cluster, provided as key-value pairs. Arguments are region=<region-name>,num-nodes=<number-of-nodes>,vpc=<vpc-name>,num-cores=<num-cores>,disk-size-gb=<disk-size-gb>,disk-iops=<disk-iops> (AWS only). region, num-nodes, num-cores, disk-size-gb are required. Specify one --region-info flag for each region in the cluster.`)
updateClusterCmd.Flags().String("cluster-tier", "", "[OPTIONAL] The tier of the cluster. Sandbox or Dedicated.")
updateClusterCmd.Flags().String("fault-tolerance", "", "[OPTIONAL] Fault tolerance of the cluster. The possible values are NONE, NODE, ZONE, or REGION. Default NONE.")
updateClusterCmd.Flags().String("database-version", "", "[OPTIONAL] The database version of the cluster. Production or Innovation or Preview.")
updateClusterCmd.Flags().String("database-version", "", "[OPTIONAL] The database version of the cluster. Production, Innovation, Preview, or 'Early Access'.")

}

Expand Down
2 changes: 1 addition & 1 deletion docs/ybm_cluster_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ybm cluster create [flags]
--cloud-provider string [OPTIONAL] The cloud provider where database needs to be deployed. AWS, AZURE or GCP. Default AWS.
--cluster-tier string [OPTIONAL] The tier of the cluster. Sandbox or Dedicated. Default Sandbox.
--cluster-type string [OPTIONAL] Cluster replication type. SYNCHRONOUS or GEO_PARTITIONED. Default SYNCHRONOUS.
--database-version string [OPTIONAL] The database version of the cluster. Production, Innovation or Preview. Default depends on cluster tier, Sandbox is Preview, Dedicated is Production.
--database-version string [OPTIONAL] The database version of the cluster. Production, Innovation, Preview, or 'Early Access'. Default depends on cluster tier, Sandbox is Preview, Dedicated is Production.
--encryption-spec string [OPTIONAL] The customer managed key spec for the cluster.
Please provide key value pairs as follows:
For AWS:
Expand Down
2 changes: 1 addition & 1 deletion docs/ybm_cluster_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ybm cluster update [flags]
--cluster-name string [REQUIRED] Name of the cluster.
--cluster-tier string [OPTIONAL] The tier of the cluster. Sandbox or Dedicated.
--cluster-type string [OPTIONAL] Cluster replication type. SYNCHRONOUS or GEO_PARTITIONED.
--database-version string [OPTIONAL] The database version of the cluster. Production or Innovation or Preview.
--database-version string [OPTIONAL] The database version of the cluster. Production, Innovation, Preview, or 'Early Access'.
--fault-tolerance string [OPTIONAL] Fault tolerance of the cluster. The possible values are NONE, NODE, ZONE, or REGION. Default NONE.
-h, --help help for update
--new-name string [OPTIONAL] The new name to be given to the cluster.
Expand Down

0 comments on commit f89f994

Please sign in to comment.