| --- |
| # Copyright 2017-present Open Networking Foundation |
| # |
| # 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. |
| |
| --- |
| apiVersion: apiextensions.k8s.io/v1beta1 |
| kind: CustomResourceDefinition |
| metadata: |
| # name must match the spec fields below, and be in the form: <plural>.<group> |
| name: network-attachment-definitions.k8s.cni.cncf.io |
| spec: |
| # group name to use for REST API: /apis/<group>/<version> |
| group: k8s.cni.cncf.io |
| # version name to use for REST API: /apis/<group>/<version> |
| version: v1 |
| # either Namespaced or Cluster |
| scope: Namespaced |
| names: |
| # plural name to be used in the URL: /apis/<group>/<version>/<plural> |
| plural: network-attachment-definitions |
| # singular name to be used as an alias on the CLI and for display |
| singular: network-attachment-definition |
| # kind is normally the CamelCased singular type. Your resource manifests use this. |
| kind: NetworkAttachmentDefinition |
| # shortNames allow shorter string to match your resource on the CLI |
| shortNames: |
| - net-attach-def |