本文整理汇总了Golang中gitlab.com/gitlab-org/gitlab-ci-multi-runner/common.RunnerConfig.SSH方法的典型用法代码示例。如果您正苦于以下问题:Golang RunnerConfig.SSH方法的具体用法?Golang RunnerConfig.SSH怎么用?Golang RunnerConfig.SSH使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gitlab.com/gitlab-org/gitlab-ci-multi-runner/common.RunnerConfig
的用法示例。
在下文中一共展示了RunnerConfig.SSH方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: askSSH
func (s *RegistrationContext) askSSH(runnerConfig *common.RunnerConfig, serverless bool) {
runnerConfig.SSH = &ssh.Config{}
if !serverless {
if host := s.ask("ssh-host", "Please enter the SSH server address (eg. my.server.com):"); host != "" {
runnerConfig.SSH.Host = &host
}
if port := s.ask("ssh-port", "Please enter the SSH server port (eg. 22):", true); port != "" {
runnerConfig.SSH.Port = &port
}
}
if user := s.ask("ssh-user", "Please enter the SSH user (eg. root):"); user != "" {
runnerConfig.SSH.User = &user
}
if password := s.ask("ssh-password", "Please enter the SSH password (eg. docker.io):"); password != "" {
runnerConfig.SSH.Password = &password
}
}
示例2: askSSH
func (s *RegistrationContext) askSSH(runnerConfig *common.RunnerConfig, serverless bool) {
runnerConfig.SSH = &ssh.Config{}
if !serverless {
if host := s.ask("ssh-host", "Please enter the SSH server address (eg. my.server.com):"); host != "" {
runnerConfig.SSH.Host = &host
}
if port := s.ask("ssh-port", "Please enter the SSH server port (eg. 22):", true); port != "" {
runnerConfig.SSH.Port = &port
}
}
if user := s.ask("ssh-user", "Please enter the SSH user (eg. root):"); user != "" {
runnerConfig.SSH.User = &user
}
if password := s.ask("ssh-password", "Please enter the SSH password (eg. docker.io):", true); password != "" {
runnerConfig.SSH.Password = &password
}
if identityFile := s.ask("ssh-identity-file", "Please enter path to SSH identity file (eg. /home/user/.ssh/id_rsa):", true); identityFile != "" {
runnerConfig.SSH.IdentityFile = &identityFile
}
}