mirror of https://github.com/knative/caching.git
51 lines
1.4 KiB
YAML
51 lines
1.4 KiB
YAML
# Copyright 2018 The Knative Authors
|
|
#
|
|
# 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
|
|
#
|
|
# https://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/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: images.caching.internal.knative.dev
|
|
labels:
|
|
knative.dev/crd-install: "true"
|
|
spec:
|
|
group: caching.internal.knative.dev
|
|
names:
|
|
kind: Image
|
|
plural: images
|
|
singular: image
|
|
categories:
|
|
- knative-internal
|
|
- caching
|
|
shortNames:
|
|
- img
|
|
scope: Namespaced
|
|
versions:
|
|
- name: v1alpha1
|
|
served: true
|
|
storage: true
|
|
subresources:
|
|
status: {}
|
|
schema:
|
|
openAPIV3Schema:
|
|
type: object
|
|
# this is a work around so we don't need to flush out the
|
|
# schema for each version at this time
|
|
#
|
|
# see issue: https://github.com/knative/serving/issues/912
|
|
x-kubernetes-preserve-unknown-fields: true
|
|
additionalPrinterColumns:
|
|
- name: Image
|
|
type: string
|
|
jsonPath: .spec.image
|