mirror of https://github.com/kubernetes/kops.git
Copy comments
This commit is contained in:
parent
30a2ec7d4d
commit
77aab657cc
|
@ -3132,7 +3132,7 @@ spec:
|
|||
type: object
|
||||
classic:
|
||||
description: ClassicNetworkingSpec is the specification of classic
|
||||
networking mode, integrated into kubernetes Support been removed
|
||||
networking mode, integrated into kubernetes. Support been removed
|
||||
since kops 1.4.
|
||||
type: object
|
||||
cni:
|
||||
|
|
|
@ -37,7 +37,8 @@ type NetworkingSpec struct {
|
|||
GCE *GCENetworkingSpec `json:"gce,omitempty"`
|
||||
}
|
||||
|
||||
// ClassicNetworkingSpec is the specification of classic networking mode, integrated into kubernetes
|
||||
// ClassicNetworkingSpec is the specification of classic networking mode, integrated into kubernetes.
|
||||
// Support been removed since kops 1.4.
|
||||
type ClassicNetworkingSpec struct {
|
||||
}
|
||||
|
||||
|
@ -45,14 +46,13 @@ type ClassicNetworkingSpec struct {
|
|||
type KubenetNetworkingSpec struct {
|
||||
}
|
||||
|
||||
// ExternalNetworkingSpec is the specification for networking that is implemented by a Daemonset
|
||||
// It also uses kubenet
|
||||
// ExternalNetworkingSpec is the specification for networking that is implemented by a Daemonset.
|
||||
// Uses the kubenet networking provider.
|
||||
type ExternalNetworkingSpec struct {
|
||||
}
|
||||
|
||||
// CNINetworkingSpec is the specification for networking that is implemented by a Daemonset
|
||||
// Networking is not managed by kops - we can create options here that directly configure e.g. weave
|
||||
// but this is useful for arbitrary network modes or for modes that don't need additional configuration.
|
||||
// CNINetworkingSpec is the specification for networking that is implemented by a Daemonset.
|
||||
// Uses the CNI networking interface.
|
||||
type CNINetworkingSpec struct {
|
||||
UsesSecondaryIP bool `json:"usesSecondaryIP,omitempty"`
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue