2021-03-18 22:40:29 +00:00
|
|
|
// Copyright 2019 The Kubernetes Authors.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
package builtinpluginconsts
|
|
|
|
|
|
|
|
const (
|
|
|
|
namespaceFieldSpecs = `
|
|
|
|
namespace:
|
|
|
|
- path: metadata/namespace
|
|
|
|
create: true
|
|
|
|
- path: metadata/name
|
|
|
|
kind: Namespace
|
|
|
|
create: true
|
|
|
|
- path: subjects
|
|
|
|
kind: RoleBinding
|
|
|
|
- path: subjects
|
|
|
|
kind: ClusterRoleBinding
|
|
|
|
- path: spec/service/namespace
|
|
|
|
group: apiregistration.k8s.io
|
|
|
|
kind: APIService
|
|
|
|
create: true
|
2021-05-14 17:12:55 +00:00
|
|
|
- path: spec/conversion/webhook/clientConfig/service/namespace
|
|
|
|
group: apiextensions.k8s.io
|
|
|
|
kind: CustomResourceDefinition
|
2021-03-18 22:40:29 +00:00
|
|
|
`
|
|
|
|
)
|