forked from kubesphere/kubekey
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathauth_types.go
54 lines (42 loc) · 1.85 KB
/
auth_types.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
Copyright 2022 The KubeSphere Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package v1beta1
import (
"time"
)
// Auth contains the SSH authentication configuration for machines.
type Auth struct {
// User is the username for SSH authentication.
// +optional
User string `yaml:"user,omitempty" json:"user,omitempty"`
// Password is the password for SSH authentication.
// +optional
Password string `yaml:"password,omitempty" json:"password,omitempty"`
// Port is the port for SSH authentication.
// +optional
Port *int `yaml:"port,omitempty" json:"port,omitempty"`
// PrivateKey is the value of the private key for SSH authentication.
// +optional
PrivateKey string `yaml:"privateKey,omitempty" json:"privateKey,omitempty"`
// PrivateKeyFile is the path to the private key for SSH authentication.
// +optional
PrivateKeyPath string `yaml:"privateKeyPath,omitempty" json:"privateKeyPath,omitempty"`
// Secret is the secret of the PrivateKey or Password for SSH authentication.It should in the same namespace as capkk.
// When Password is empty, replace it with data.password.
// When PrivateKey is empty, replace it with data.privateKey
// +optional
Secret string `yaml:"secret,omitempty" json:"secret,omitempty"`
// Timeout is the timeout for establish an SSH connection.
// +optional
Timeout *time.Duration `yaml:"timeout,omitempty" json:"timeout,omitempty"`
}