As we reevaluate how to best support and maintain Staging Ref in the future, we encourage development teams using this environment to highlight their use cases in the following issue: https://gitlab.com/gitlab-com/gl-infra/software-delivery/framework/software-delivery-framework-issue-tracker/-/issues/36.

Skip to content
Snippets Groups Projects
Unverified Commit 1f95df30 authored by Ash McKenzie's avatar Ash McKenzie
Browse files

New lfs.pure_ssh_protocol setting

parent c1c32577
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -115,3 +115,7 @@ sshd:
keytab: ""
# The Kerberos service name to be used by sshd. Defaults to "", accepts any service name in keytab file.
service_principal_name: ""
lfs:
# https://gitlab.com/groups/gitlab-org/-/epics/11872, disabled by default.
pure_ssh_protocol: false
Loading
Loading
@@ -59,6 +59,10 @@ type HttpSettingsConfig struct {
CaPath string `yaml:"ca_path"`
}
type LFSConfig struct {
PureSSHProtocal bool `yaml:"pure_ssh_protocol"`
}
type Config struct {
User string `yaml:"user,omitempty"`
RootDir string
Loading
Loading
@@ -74,6 +78,7 @@ type Config struct {
SslCertDir string `yaml:"ssl_cert_dir"`
HttpSettings HttpSettingsConfig `yaml:"http_settings"`
Server ServerConfig `yaml:"sshd"`
LFSConfig LFSConfig `yaml:"lfs"`
httpClient *client.HttpClient
httpClientErr error
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment