mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-29 06:27:05 +00:00
21 lines
437 B
Go
21 lines
437 B
Go
// Copyright 2019 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package builtinpluginconsts
|
|
|
|
const (
|
|
namespaceFieldSpecs = `
|
|
namespace:
|
|
- path: metadata/name
|
|
kind: Namespace
|
|
create: true
|
|
- path: spec/service/namespace
|
|
group: apiregistration.k8s.io
|
|
kind: APIService
|
|
create: true
|
|
- path: spec/conversion/webhook/clientConfig/service/namespace
|
|
group: apiextensions.k8s.io
|
|
kind: CustomResourceDefinition
|
|
`
|
|
)
|