Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
水淹萌龙
kubesphere
提交
c8dc3a40
K
kubesphere
项目概览
水淹萌龙
/
kubesphere
与 Fork 源项目一致
Fork自
KubeSphere / kubesphere
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kubesphere
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
未验证
提交
c8dc3a40
编写于
4月 01, 2020
作者:
Z
zryfish
提交者:
GitHub
4月 01, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix requestinfo bug (#1980)
上级
95f6d75c
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
88 addition
and
115 deletion
+88
-115
Makefile
Makefile
+1
-1
pkg/api/types.go
pkg/api/types.go
+3
-0
pkg/apis/devops/v1alpha1/zz_generated.deepcopy.go
pkg/apis/devops/v1alpha1/zz_generated.deepcopy.go
+2
-35
pkg/apis/network/v1alpha1/zz_generated.deepcopy.go
pkg/apis/network/v1alpha1/zz_generated.deepcopy.go
+3
-19
pkg/apis/servicemesh/v1alpha2/zz_generated.deepcopy.go
pkg/apis/servicemesh/v1alpha2/zz_generated.deepcopy.go
+2
-14
pkg/apis/tenant/v1alpha1/zz_generated.deepcopy.go
pkg/apis/tenant/v1alpha1/zz_generated.deepcopy.go
+1
-5
pkg/apis/tower/v1alpha1/zz_generated.deepcopy.go
pkg/apis/tower/v1alpha1/zz_generated.deepcopy.go
+6
-0
pkg/apiserver/request/requestinfo.go
pkg/apiserver/request/requestinfo.go
+23
-10
pkg/apiserver/request/requestinfo_test.go
pkg/apiserver/request/requestinfo_test.go
+47
-31
未找到文件。
Makefile
浏览文件 @
c8dc3a40
...
...
@@ -63,7 +63,7 @@ vet: generate
# Generate manifests e.g. CRD, RBAC etc.
manifests
:
go run ./vendor/sigs.k8s.io/controller-tools/cmd/controller-gen/main.go
all
go run ./vendor/sigs.k8s.io/controller-tools/cmd/controller-gen/main.go
object:headerFile
=
./hack/boilerplate.go.txt
paths
=
./pkg/apis/...
deploy
:
manifests
kubectl apply
-f
config/crds
...
...
pkg/api/types.go
浏览文件 @
c8dc3a40
...
...
@@ -155,4 +155,7 @@ const (
ResourceKindeS2iRun
=
"s2iruns"
ResourceKindS2iBuilder
=
"s2ibuilders"
ResourceKindApplication
=
"applications"
WorkspaceNone
=
""
ClusterNone
=
""
)
pkg/apis/devops/v1alpha1/zz_generated.deepcopy.go
浏览文件 @
c8dc3a40
...
...
@@ -16,12 +16,12 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
// Code generated by
deepcopy
-gen. DO NOT EDIT.
// Code generated by
controller
-gen. DO NOT EDIT.
package
v1alpha1
import
(
v1
"k8s.io/api/core/v1"
"k8s.io/api/core/v1"
runtime
"k8s.io/apimachinery/pkg/runtime"
)
...
...
@@ -33,7 +33,6 @@ func (in *AuthConfig) DeepCopyInto(out *AuthConfig) {
*
out
=
new
(
v1
.
LocalObjectReference
)
**
out
=
**
in
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AuthConfig.
...
...
@@ -49,7 +48,6 @@ func (in *AuthConfig) DeepCopy() *AuthConfig {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
CGroupLimits
)
DeepCopyInto
(
out
*
CGroupLimits
)
{
*
out
=
*
in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CGroupLimits.
...
...
@@ -77,7 +75,6 @@ func (in *ContainerConfig) DeepCopyInto(out *ContainerConfig) {
*
out
=
make
([]
string
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerConfig.
...
...
@@ -103,7 +100,6 @@ func (in *ContainerInfo) DeepCopyInto(out *ContainerInfo) {
*
out
=
make
([]
string
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerInfo.
...
...
@@ -119,7 +115,6 @@ func (in *ContainerInfo) DeepCopy() *ContainerInfo {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
DockerConfig
)
DeepCopyInto
(
out
*
DockerConfig
)
{
*
out
=
*
in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DockerConfig.
...
...
@@ -135,7 +130,6 @@ func (in *DockerConfig) DeepCopy() *DockerConfig {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
DockerConfigEntry
)
DeepCopyInto
(
out
*
DockerConfigEntry
)
{
*
out
=
*
in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DockerConfigEntry.
...
...
@@ -158,7 +152,6 @@ func (in *DockerConfigJson) DeepCopyInto(out *DockerConfigJson) {
(
*
out
)[
key
]
=
val
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DockerConfigJson.
...
...
@@ -179,7 +172,6 @@ func (in DockerConfigMap) DeepCopyInto(out *DockerConfigMap) {
for
key
,
val
:=
range
*
in
{
(
*
out
)[
key
]
=
val
}
return
}
}
...
...
@@ -196,7 +188,6 @@ func (in DockerConfigMap) DeepCopy() DockerConfigMap {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
EnvironmentSpec
)
DeepCopyInto
(
out
*
EnvironmentSpec
)
{
*
out
=
*
in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvironmentSpec.
...
...
@@ -217,7 +208,6 @@ func (in *Parameter) DeepCopyInto(out *Parameter) {
*
out
=
make
([]
string
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Parameter.
...
...
@@ -233,7 +223,6 @@ func (in *Parameter) DeepCopy() *Parameter {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
ProxyConfig
)
DeepCopyInto
(
out
*
ProxyConfig
)
{
*
out
=
*
in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProxyConfig.
...
...
@@ -259,7 +248,6 @@ func (in *S2iAutoScale) DeepCopyInto(out *S2iAutoScale) {
*
out
=
make
([]
string
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iAutoScale.
...
...
@@ -279,7 +267,6 @@ func (in *S2iBinary) DeepCopyInto(out *S2iBinary) {
in
.
ObjectMeta
.
DeepCopyInto
(
&
out
.
ObjectMeta
)
in
.
Spec
.
DeepCopyInto
(
&
out
.
Spec
)
out
.
Status
=
in
.
Status
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iBinary.
...
...
@@ -312,7 +299,6 @@ func (in *S2iBinaryList) DeepCopyInto(out *S2iBinaryList) {
(
*
in
)[
i
]
.
DeepCopyInto
(
&
(
*
out
)[
i
])
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iBinaryList.
...
...
@@ -340,7 +326,6 @@ func (in *S2iBinarySpec) DeepCopyInto(out *S2iBinarySpec) {
in
,
out
:=
&
in
.
UploadTimeStamp
,
&
out
.
UploadTimeStamp
*
out
=
(
*
in
)
.
DeepCopy
()
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iBinarySpec.
...
...
@@ -356,7 +341,6 @@ func (in *S2iBinarySpec) DeepCopy() *S2iBinarySpec {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
S2iBinaryStatus
)
DeepCopyInto
(
out
*
S2iBinaryStatus
)
{
*
out
=
*
in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iBinaryStatus.
...
...
@@ -377,7 +361,6 @@ func (in *S2iBuildResult) DeepCopyInto(out *S2iBuildResult) {
*
out
=
make
([]
string
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iBuildResult.
...
...
@@ -393,7 +376,6 @@ func (in *S2iBuildResult) DeepCopy() *S2iBuildResult {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
S2iBuildSource
)
DeepCopyInto
(
out
*
S2iBuildSource
)
{
*
out
=
*
in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iBuildSource.
...
...
@@ -413,7 +395,6 @@ func (in *S2iBuilder) DeepCopyInto(out *S2iBuilder) {
in
.
ObjectMeta
.
DeepCopyInto
(
&
out
.
ObjectMeta
)
in
.
Spec
.
DeepCopyInto
(
&
out
.
Spec
)
in
.
Status
.
DeepCopyInto
(
&
out
.
Status
)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iBuilder.
...
...
@@ -446,7 +427,6 @@ func (in *S2iBuilderList) DeepCopyInto(out *S2iBuilderList) {
(
*
in
)[
i
]
.
DeepCopyInto
(
&
(
*
out
)[
i
])
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iBuilderList.
...
...
@@ -480,7 +460,6 @@ func (in *S2iBuilderSpec) DeepCopyInto(out *S2iBuilderSpec) {
*
out
=
new
(
UserDefineTemplate
)
(
*
in
)
.
DeepCopyInto
(
*
out
)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iBuilderSpec.
...
...
@@ -505,7 +484,6 @@ func (in *S2iBuilderStatus) DeepCopyInto(out *S2iBuilderStatus) {
in
,
out
:=
&
in
.
LastRunStartTime
,
&
out
.
LastRunStartTime
*
out
=
(
*
in
)
.
DeepCopy
()
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iBuilderStatus.
...
...
@@ -525,7 +503,6 @@ func (in *S2iBuilderTemplate) DeepCopyInto(out *S2iBuilderTemplate) {
in
.
ObjectMeta
.
DeepCopyInto
(
&
out
.
ObjectMeta
)
in
.
Spec
.
DeepCopyInto
(
&
out
.
Spec
)
out
.
Status
=
in
.
Status
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iBuilderTemplate.
...
...
@@ -558,7 +535,6 @@ func (in *S2iBuilderTemplateList) DeepCopyInto(out *S2iBuilderTemplateList) {
(
*
in
)[
i
]
.
DeepCopyInto
(
&
(
*
out
)[
i
])
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iBuilderTemplateList.
...
...
@@ -596,7 +572,6 @@ func (in *S2iBuilderTemplateSpec) DeepCopyInto(out *S2iBuilderTemplateSpec) {
(
*
in
)[
i
]
.
DeepCopyInto
(
&
(
*
out
)[
i
])
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iBuilderTemplateSpec.
...
...
@@ -612,7 +587,6 @@ func (in *S2iBuilderTemplateSpec) DeepCopy() *S2iBuilderTemplateSpec {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
S2iBuilderTemplateStatus
)
DeepCopyInto
(
out
*
S2iBuilderTemplateStatus
)
{
*
out
=
*
in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iBuilderTemplateStatus.
...
...
@@ -715,7 +689,6 @@ func (in *S2iConfig) DeepCopyInto(out *S2iConfig) {
*
out
=
make
([]
string
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iConfig.
...
...
@@ -735,7 +708,6 @@ func (in *S2iRun) DeepCopyInto(out *S2iRun) {
in
.
ObjectMeta
.
DeepCopyInto
(
&
out
.
ObjectMeta
)
out
.
Spec
=
in
.
Spec
in
.
Status
.
DeepCopyInto
(
&
out
.
Status
)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iRun.
...
...
@@ -768,7 +740,6 @@ func (in *S2iRunList) DeepCopyInto(out *S2iRunList) {
(
*
in
)[
i
]
.
DeepCopyInto
(
&
(
*
out
)[
i
])
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iRunList.
...
...
@@ -792,7 +763,6 @@ func (in *S2iRunList) DeepCopyObject() runtime.Object {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
S2iRunSpec
)
DeepCopyInto
(
out
*
S2iRunSpec
)
{
*
out
=
*
in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iRunSpec.
...
...
@@ -826,7 +796,6 @@ func (in *S2iRunStatus) DeepCopyInto(out *S2iRunStatus) {
*
out
=
new
(
S2iBuildSource
)
**
out
=
**
in
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S2iRunStatus.
...
...
@@ -849,7 +818,6 @@ func (in *UserDefineTemplate) DeepCopyInto(out *UserDefineTemplate) {
(
*
in
)[
i
]
.
DeepCopyInto
(
&
(
*
out
)[
i
])
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserDefineTemplate.
...
...
@@ -865,7 +833,6 @@ func (in *UserDefineTemplate) DeepCopy() *UserDefineTemplate {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
VolumeSpec
)
DeepCopyInto
(
out
*
VolumeSpec
)
{
*
out
=
*
in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolumeSpec.
...
...
pkg/apis/network/v1alpha1/zz_generated.deepcopy.go
浏览文件 @
c8dc3a40
...
...
@@ -16,16 +16,16 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
// Code generated by
deepcopy
-gen. DO NOT EDIT.
// Code generated by
controller
-gen. DO NOT EDIT.
package
v1alpha1
import
(
v1
"k8s.io/api/core/v1"
"k8s.io/api/core/v1"
networkingv1
"k8s.io/api/networking/v1"
metav1
"k8s.io/apimachinery/pkg/apis/meta/v1"
runtime
"k8s.io/apimachinery/pkg/runtime"
numorstring
"kubesphere.io/kubesphere/pkg/apis/network/v1alpha1/numorstring"
"kubesphere.io/kubesphere/pkg/apis/network/v1alpha1/numorstring"
)
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
...
...
@@ -56,7 +56,6 @@ func (in *EntityRule) DeepCopyInto(out *EntityRule) {
*
out
=
new
(
ServiceAccountMatch
)
(
*
in
)
.
DeepCopyInto
(
*
out
)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EntityRule.
...
...
@@ -82,7 +81,6 @@ func (in *HTTPMatch) DeepCopyInto(out *HTTPMatch) {
*
out
=
make
([]
HTTPPath
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPMatch.
...
...
@@ -98,7 +96,6 @@ func (in *HTTPMatch) DeepCopy() *HTTPMatch {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
HTTPPath
)
DeepCopyInto
(
out
*
HTTPPath
)
{
*
out
=
*
in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPPath.
...
...
@@ -124,7 +121,6 @@ func (in *ICMPFields) DeepCopyInto(out *ICMPFields) {
*
out
=
new
(
int
)
**
out
=
**
in
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ICMPFields.
...
...
@@ -143,7 +139,6 @@ func (in *NamespaceNetworkPolicy) DeepCopyInto(out *NamespaceNetworkPolicy) {
out
.
TypeMeta
=
in
.
TypeMeta
in
.
ObjectMeta
.
DeepCopyInto
(
&
out
.
ObjectMeta
)
in
.
Spec
.
DeepCopyInto
(
&
out
.
Spec
)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NamespaceNetworkPolicy.
...
...
@@ -176,7 +171,6 @@ func (in *NamespaceNetworkPolicyList) DeepCopyInto(out *NamespaceNetworkPolicyLi
(
*
in
)[
i
]
.
DeepCopyInto
(
&
(
*
out
)[
i
])
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NamespaceNetworkPolicyList.
...
...
@@ -224,7 +218,6 @@ func (in *NamespaceNetworkPolicySpec) DeepCopyInto(out *NamespaceNetworkPolicySp
*
out
=
make
([]
PolicyType
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NamespaceNetworkPolicySpec.
...
...
@@ -272,7 +265,6 @@ func (in *Rule) DeepCopyInto(out *Rule) {
*
out
=
new
(
HTTPMatch
)
(
*
in
)
.
DeepCopyInto
(
*
out
)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Rule.
...
...
@@ -293,7 +285,6 @@ func (in *ServiceAccountMatch) DeepCopyInto(out *ServiceAccountMatch) {
*
out
=
make
([]
string
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceAccountMatch.
...
...
@@ -313,7 +304,6 @@ func (in *WorkspaceNetworkPolicy) DeepCopyInto(out *WorkspaceNetworkPolicy) {
in
.
ObjectMeta
.
DeepCopyInto
(
&
out
.
ObjectMeta
)
in
.
Spec
.
DeepCopyInto
(
&
out
.
Spec
)
out
.
Status
=
in
.
Status
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkspaceNetworkPolicy.
...
...
@@ -351,7 +341,6 @@ func (in *WorkspaceNetworkPolicyEgressRule) DeepCopyInto(out *WorkspaceNetworkPo
(
*
in
)[
i
]
.
DeepCopyInto
(
&
(
*
out
)[
i
])
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkspaceNetworkPolicyEgressRule.
...
...
@@ -381,7 +370,6 @@ func (in *WorkspaceNetworkPolicyIngressRule) DeepCopyInto(out *WorkspaceNetworkP
(
*
in
)[
i
]
.
DeepCopyInto
(
&
(
*
out
)[
i
])
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkspaceNetworkPolicyIngressRule.
...
...
@@ -406,7 +394,6 @@ func (in *WorkspaceNetworkPolicyList) DeepCopyInto(out *WorkspaceNetworkPolicyLi
(
*
in
)[
i
]
.
DeepCopyInto
(
&
(
*
out
)[
i
])
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkspaceNetworkPolicyList.
...
...
@@ -436,7 +423,6 @@ func (in *WorkspaceNetworkPolicyPeer) DeepCopyInto(out *WorkspaceNetworkPolicyPe
*
out
=
new
(
metav1
.
LabelSelector
)
(
*
in
)
.
DeepCopyInto
(
*
out
)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkspaceNetworkPolicyPeer.
...
...
@@ -471,7 +457,6 @@ func (in *WorkspaceNetworkPolicySpec) DeepCopyInto(out *WorkspaceNetworkPolicySp
(
*
in
)[
i
]
.
DeepCopyInto
(
&
(
*
out
)[
i
])
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkspaceNetworkPolicySpec.
...
...
@@ -487,7 +472,6 @@ func (in *WorkspaceNetworkPolicySpec) DeepCopy() *WorkspaceNetworkPolicySpec {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
WorkspaceNetworkPolicyStatus
)
DeepCopyInto
(
out
*
WorkspaceNetworkPolicyStatus
)
{
*
out
=
*
in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkspaceNetworkPolicyStatus.
...
...
pkg/apis/servicemesh/v1alpha2/zz_generated.deepcopy.go
浏览文件 @
c8dc3a40
...
...
@@ -16,12 +16,12 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
// Code generated by
deepcopy
-gen. DO NOT EDIT.
// Code generated by
controller
-gen. DO NOT EDIT.
package
v1alpha2
import
(
v1
"k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1"
runtime
"k8s.io/apimachinery/pkg/runtime"
)
...
...
@@ -30,7 +30,6 @@ func (in *DestinationRuleSpecTemplate) DeepCopyInto(out *DestinationRuleSpecTemp
*
out
=
*
in
in
.
ObjectMeta
.
DeepCopyInto
(
&
out
.
ObjectMeta
)
in
.
Spec
.
DeepCopyInto
(
&
out
.
Spec
)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DestinationRuleSpecTemplate.
...
...
@@ -50,7 +49,6 @@ func (in *ServicePolicy) DeepCopyInto(out *ServicePolicy) {
in
.
ObjectMeta
.
DeepCopyInto
(
&
out
.
ObjectMeta
)
in
.
Spec
.
DeepCopyInto
(
&
out
.
Spec
)
in
.
Status
.
DeepCopyInto
(
&
out
.
Status
)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServicePolicy.
...
...
@@ -76,7 +74,6 @@ func (in *ServicePolicyCondition) DeepCopyInto(out *ServicePolicyCondition) {
*
out
=
*
in
in
.
LastProbeTime
.
DeepCopyInto
(
&
out
.
LastProbeTime
)
in
.
LastTransitionTime
.
DeepCopyInto
(
&
out
.
LastTransitionTime
)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServicePolicyCondition.
...
...
@@ -101,7 +98,6 @@ func (in *ServicePolicyList) DeepCopyInto(out *ServicePolicyList) {
(
*
in
)[
i
]
.
DeepCopyInto
(
&
(
*
out
)[
i
])
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServicePolicyList.
...
...
@@ -131,7 +127,6 @@ func (in *ServicePolicySpec) DeepCopyInto(out *ServicePolicySpec) {
(
*
in
)
.
DeepCopyInto
(
*
out
)
}
in
.
Template
.
DeepCopyInto
(
&
out
.
Template
)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServicePolicySpec.
...
...
@@ -162,7 +157,6 @@ func (in *ServicePolicyStatus) DeepCopyInto(out *ServicePolicyStatus) {
in
,
out
:=
&
in
.
CompletionTime
,
&
out
.
CompletionTime
*
out
=
(
*
in
)
.
DeepCopy
()
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServicePolicyStatus.
...
...
@@ -182,7 +176,6 @@ func (in *Strategy) DeepCopyInto(out *Strategy) {
in
.
ObjectMeta
.
DeepCopyInto
(
&
out
.
ObjectMeta
)
in
.
Spec
.
DeepCopyInto
(
&
out
.
Spec
)
in
.
Status
.
DeepCopyInto
(
&
out
.
Status
)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Strategy.
...
...
@@ -208,7 +201,6 @@ func (in *StrategyCondition) DeepCopyInto(out *StrategyCondition) {
*
out
=
*
in
in
.
LastProbeTime
.
DeepCopyInto
(
&
out
.
LastProbeTime
)
in
.
LastTransitionTime
.
DeepCopyInto
(
&
out
.
LastTransitionTime
)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StrategyCondition.
...
...
@@ -233,7 +225,6 @@ func (in *StrategyList) DeepCopyInto(out *StrategyList) {
(
*
in
)[
i
]
.
DeepCopyInto
(
&
(
*
out
)[
i
])
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StrategyList.
...
...
@@ -263,7 +254,6 @@ func (in *StrategySpec) DeepCopyInto(out *StrategySpec) {
(
*
in
)
.
DeepCopyInto
(
*
out
)
}
in
.
Template
.
DeepCopyInto
(
&
out
.
Template
)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StrategySpec.
...
...
@@ -294,7 +284,6 @@ func (in *StrategyStatus) DeepCopyInto(out *StrategyStatus) {
in
,
out
:=
&
in
.
CompletionTime
,
&
out
.
CompletionTime
*
out
=
(
*
in
)
.
DeepCopy
()
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StrategyStatus.
...
...
@@ -312,7 +301,6 @@ func (in *VirtualServiceTemplateSpec) DeepCopyInto(out *VirtualServiceTemplateSp
*
out
=
*
in
in
.
ObjectMeta
.
DeepCopyInto
(
&
out
.
ObjectMeta
)
in
.
Spec
.
DeepCopyInto
(
&
out
.
Spec
)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VirtualServiceTemplateSpec.
...
...
pkg/apis/tenant/v1alpha1/zz_generated.deepcopy.go
浏览文件 @
c8dc3a40
...
...
@@ -16,7 +16,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
// Code generated by
deepcopy
-gen. DO NOT EDIT.
// Code generated by
controller
-gen. DO NOT EDIT.
package
v1alpha1
...
...
@@ -31,7 +31,6 @@ func (in *Workspace) DeepCopyInto(out *Workspace) {
in
.
ObjectMeta
.
DeepCopyInto
(
&
out
.
ObjectMeta
)
out
.
Spec
=
in
.
Spec
out
.
Status
=
in
.
Status
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Workspace.
...
...
@@ -64,7 +63,6 @@ func (in *WorkspaceList) DeepCopyInto(out *WorkspaceList) {
(
*
in
)[
i
]
.
DeepCopyInto
(
&
(
*
out
)[
i
])
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkspaceList.
...
...
@@ -88,7 +86,6 @@ func (in *WorkspaceList) DeepCopyObject() runtime.Object {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
WorkspaceSpec
)
DeepCopyInto
(
out
*
WorkspaceSpec
)
{
*
out
=
*
in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkspaceSpec.
...
...
@@ -104,7 +101,6 @@ func (in *WorkspaceSpec) DeepCopy() *WorkspaceSpec {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
WorkspaceStatus
)
DeepCopyInto
(
out
*
WorkspaceStatus
)
{
*
out
=
*
in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WorkspaceStatus.
...
...
pkg/apis/tower/v1alpha1/zz_generated.deepcopy.go
浏览文件 @
c8dc3a40
// +build !ignore_autogenerated
/*
Copyright 2019 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.
...
...
@@ -124,6 +125,11 @@ func (in *AgentStatus) DeepCopyInto(out *AgentStatus) {
(
*
in
)[
i
]
.
DeepCopyInto
(
&
(
*
out
)[
i
])
}
}
if
in
.
KubeConfig
!=
nil
{
in
,
out
:=
&
in
.
KubeConfig
,
&
out
.
KubeConfig
*
out
=
make
([]
byte
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AgentStatus.
...
...
pkg/apiserver/request/requestinfo.go
浏览文件 @
c8dc3a40
...
...
@@ -8,6 +8,7 @@ import (
metav1
"k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/sets"
"k8s.io/klog"
"kubesphere.io/kubesphere/pkg/api"
"net/http"
"strings"
...
...
@@ -88,6 +89,8 @@ func (r *RequestInfoFactory) NewRequestInfo(req *http.Request) (*RequestInfo, er
Path
:
req
.
URL
.
Path
,
Verb
:
req
.
Method
,
},
Workspace
:
api
.
WorkspaceNone
,
Cluster
:
api
.
ClusterNone
,
}
defer
func
()
{
...
...
@@ -123,16 +126,6 @@ func (r *RequestInfoFactory) NewRequestInfo(req *http.Request) (*RequestInfo, er
requestInfo
.
APIVersion
=
currentParts
[
0
]
currentParts
=
currentParts
[
1
:
]
if
currentParts
[
0
]
==
"clusters"
{
requestInfo
.
Cluster
=
currentParts
[
1
]
currentParts
=
currentParts
[
2
:
]
}
if
currentParts
[
0
]
==
"workspaces"
{
requestInfo
.
Workspace
=
currentParts
[
1
]
currentParts
=
currentParts
[
2
:
]
}
if
specialVerbs
.
Has
(
currentParts
[
0
])
{
if
len
(
currentParts
)
<
2
{
return
&
requestInfo
,
fmt
.
Errorf
(
"unable to determine kind and namespace from url: %v"
,
req
.
URL
)
...
...
@@ -157,6 +150,26 @@ func (r *RequestInfoFactory) NewRequestInfo(req *http.Request) (*RequestInfo, er
}
}
// URL forms: /clusters/{cluster}/*
if
currentParts
[
0
]
==
"clusters"
{
if
len
(
currentParts
)
>
1
{
requestInfo
.
Cluster
=
currentParts
[
1
]
}
if
len
(
currentParts
)
>
2
{
currentParts
=
currentParts
[
2
:
]
}
}
// URL forms: /workspaces/{workspace}/*
if
currentParts
[
0
]
==
"workspaces"
{
if
len
(
currentParts
)
>
1
{
requestInfo
.
Workspace
=
currentParts
[
1
]
}
if
len
(
currentParts
)
>
2
{
currentParts
=
currentParts
[
2
:
]
}
}
// URL forms: /namespaces/{namespace}/{kind}/*, where parts are adjusted to be relative to kind
if
currentParts
[
0
]
==
"namespaces"
{
if
len
(
currentParts
)
>
1
{
...
...
pkg/apiserver/request/requestinfo_test.go
浏览文件 @
c8dc3a40
...
...
@@ -162,6 +162,19 @@ func TestRequestInfoFactory_NewRequestInfo(t *testing.T) {
expectedCluster
:
""
,
expectedKubernetesRequest
:
false
,
},
{
name
:
""
,
url
:
"/kapis/tenant.kubesphere.io/v1alpha2/workspaces"
,
method
:
http
.
MethodGet
,
expectedErr
:
nil
,
expectedVerb
:
"list"
,
expectedNamespace
:
""
,
expectedCluster
:
""
,
expectedWorkspace
:
""
,
expectedKubernetesRequest
:
false
,
expectedIsResourceRequest
:
true
,
expectedResource
:
"workspaces"
,
},
{
name
:
"kubesphere api without clusters"
,
url
:
"/kapis/foo/bar/"
,
...
...
@@ -180,39 +193,42 @@ func TestRequestInfoFactory_NewRequestInfo(t *testing.T) {
requestInfoResolver
:=
newTestRequestInfoResolver
()
for
_
,
test
:=
range
tests
{
req
,
err
:=
http
.
NewRequest
(
test
.
method
,
test
.
url
,
nil
)
if
err
!=
nil
{
t
.
Fatal
(
err
)
}
requestInfo
,
err
:=
requestInfoResolver
.
NewRequestInfo
(
req
)
if
err
!=
nil
{
if
test
.
expectedErr
!=
err
{
t
.
Errorf
(
"%s: expected error %v, actual %v"
,
test
.
name
,
test
.
expectedErr
,
err
)
}
}
else
{
if
test
.
expectedVerb
!=
requestInfo
.
Verb
{
t
.
Errorf
(
"%s: expected verb %v, actual %+v"
,
test
.
name
,
test
.
expectedVerb
,
requestInfo
.
Verb
)
}
if
test
.
expectedResource
!=
requestInfo
.
Resource
{
t
.
Errorf
(
"%s: expected resource %v, actual %+v"
,
test
.
name
,
test
.
expectedResource
,
requestInfo
.
Resource
)
}
if
test
.
expectedIsResourceRequest
!=
requestInfo
.
IsResourceRequest
{
t
.
Errorf
(
"%s: expected is resource request %v, actual %+v"
,
test
.
name
,
test
.
expectedIsResourceRequest
,
requestInfo
.
IsResourceRequest
)
}
if
test
.
expectedCluster
!=
requestInfo
.
Cluster
{
t
.
Errorf
(
"%s: expected cluster %v, actual %+v"
,
test
.
name
,
test
.
expectedCluster
,
requestInfo
.
Cluster
)
}
if
test
.
expectedWorkspace
!=
requestInfo
.
Workspace
{
t
.
Errorf
(
"%s: expected workspace %v, actual %+v"
,
test
.
name
,
test
.
expectedWorkspace
,
requestInfo
.
Workspace
)
}
if
test
.
expectedNamespace
!=
requestInfo
.
Namespace
{
t
.
Errorf
(
"%s: expected namespace %v, actual %+v"
,
test
.
name
,
test
.
expectedNamespace
,
requestInfo
.
Namespace
)
t
.
Run
(
test
.
url
,
func
(
t
*
testing
.
T
)
{
req
,
err
:=
http
.
NewRequest
(
test
.
method
,
test
.
url
,
nil
)
if
err
!=
nil
{
t
.
Fatal
(
err
)
}
requestInfo
,
err
:=
requestInfoResolver
.
NewRequestInfo
(
req
)
if
test
.
expectedKubernetesRequest
!=
requestInfo
.
IsKubernetesRequest
{
t
.
Errorf
(
"%s: expected kubernetes request %v, actual %+v"
,
test
.
name
,
test
.
expectedKubernetesRequest
,
requestInfo
.
IsKubernetesRequest
)
if
err
!=
nil
{
if
test
.
expectedErr
!=
err
{
t
.
Errorf
(
"%s: expected error %v, actual %v"
,
test
.
name
,
test
.
expectedErr
,
err
)
}
}
else
{
if
test
.
expectedVerb
!=
requestInfo
.
Verb
{
t
.
Errorf
(
"%s: expected verb %v, actual %+v"
,
test
.
name
,
test
.
expectedVerb
,
requestInfo
.
Verb
)
}
if
test
.
expectedResource
!=
requestInfo
.
Resource
{
t
.
Errorf
(
"%s: expected resource %v, actual %+v"
,
test
.
name
,
test
.
expectedResource
,
requestInfo
.
Resource
)
}
if
test
.
expectedIsResourceRequest
!=
requestInfo
.
IsResourceRequest
{
t
.
Errorf
(
"%s: expected is resource request %v, actual %+v"
,
test
.
name
,
test
.
expectedIsResourceRequest
,
requestInfo
.
IsResourceRequest
)
}
if
test
.
expectedCluster
!=
requestInfo
.
Cluster
{
t
.
Errorf
(
"%s: expected cluster %v, actual %+v"
,
test
.
name
,
test
.
expectedCluster
,
requestInfo
.
Cluster
)
}
if
test
.
expectedWorkspace
!=
requestInfo
.
Workspace
{
t
.
Errorf
(
"%s: expected workspace %v, actual %+v"
,
test
.
name
,
test
.
expectedWorkspace
,
requestInfo
.
Workspace
)
}
if
test
.
expectedNamespace
!=
requestInfo
.
Namespace
{
t
.
Errorf
(
"%s: expected namespace %v, actual %+v"
,
test
.
name
,
test
.
expectedNamespace
,
requestInfo
.
Namespace
)
}
if
test
.
expectedKubernetesRequest
!=
requestInfo
.
IsKubernetesRequest
{
t
.
Errorf
(
"%s: expected kubernetes request %v, actual %+v"
,
test
.
name
,
test
.
expectedKubernetesRequest
,
requestInfo
.
IsKubernetesRequest
)
}
}
}
})
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录