This repository was archived by the owner on Aug 30, 2024. It is now read-only.
File tree 2 files changed +6
-7
lines changed
2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,11 @@ type KubernetesProvider struct {
24
24
25
25
// KubeProviderConfig defines Kubernetes-specific configuration options.
26
26
type KubeProviderConfig struct {
27
- ClusterAddress string `json:"cluster_address" table:"Cluster Address"`
28
- DefaultNamespace string `json:"default_namespace" table:"Namespace"`
29
- StorageClass string `json:"storage_class" table:"Storage Class"`
30
- ClusterDomainSuffix string `json:"cluster_domain_suffix" table:"Cluster Domain Suffix"`
31
- SSHEnabled bool `json:"ssh_enabled" table:"SSH Enabled"`
32
- NamespaceWhitelist []string `json:"namespace_whitelist" table:"Namespace Allowlist"`
27
+ ClusterAddress string `json:"cluster_address" table:"Cluster Address"`
28
+ DefaultNamespace string `json:"default_namespace" table:"Namespace"`
29
+ StorageClass string `json:"storage_class" table:"Storage Class"`
30
+ ClusterDomainSuffix string `json:"cluster_domain_suffix" table:"Cluster Domain Suffix"`
31
+ SSHEnabled bool `json:"ssh_enabled" table:"SSH Enabled"`
33
32
}
34
33
35
34
// WorkspaceProviderStatus represents the configuration state of a workspace provider.
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ func createProviderCmd() *cobra.Command {
36
36
clusterAddress string
37
37
)
38
38
cmd := & cobra.Command {
39
- Use : "create [name] --hostname=[hostname] --clusterAddress =[clusterAddress]" ,
39
+ Use : "create [name] --hostname=[hostname] --cluster-address =[clusterAddress]" ,
40
40
Args : xcobra .ExactArgs (1 ),
41
41
Short : "create a new workspace provider." ,
42
42
Long : "Create a new Coder workspace provider." ,
You can’t perform that action at this time.
0 commit comments