chore: Move deployment UI and HA into experimental (#4595)

These are new, so they deserve a bit of gel-time!
This commit is contained in:
Kyle Carberry
2022-10-17 13:29:40 -05:00
committed by GitHub
parent 5325bec26c
commit 18c4368571
4 changed files with 16 additions and 4 deletions

View File

@ -72,6 +72,7 @@ type Options struct {
AppHostname string
AWSCertificates awsidentity.Certificates
Authorizer rbac.Authorizer
Experimental bool
AzureCertificates x509.VerifyOptions
GithubOAuth2Config *coderd.GithubOAuth2Config
OIDCConfig *coderd.OIDCConfig
@ -229,6 +230,7 @@ func NewOptions(t *testing.T, options *Options) (func(http.Handler), context.Can
CacheDir: t.TempDir(),
Database: options.Database,
Pubsub: options.Pubsub,
Experimental: options.Experimental,
Auditor: options.Auditor,
AWSCertificates: options.AWSCertificates,