Enable Istio on IEC type2
[iec.git] / src / foundation / service_mesh / Istio / init / crd-certmanager-10.yaml
1 # yamllint disable rule:hyphens rule:commas rule:indentation rule:line-length
2 apiVersion: apiextensions.k8s.io/v1beta1
3 kind: CustomResourceDefinition
4 metadata:
5   name: clusterissuers.certmanager.k8s.io
6   labels:
7     app: certmanager
8     chart: certmanager
9     heritage: Tiller
10     release: istio
11   annotations:
12     "helm.sh/resource-policy": keep
13 spec:
14   group: certmanager.k8s.io
15   version: v1alpha1
16   names:
17     kind: ClusterIssuer
18     plural: clusterissuers
19   scope: Cluster
20 ---
21 apiVersion: apiextensions.k8s.io/v1beta1
22 kind: CustomResourceDefinition
23 metadata:
24   name: issuers.certmanager.k8s.io
25   labels:
26     app: certmanager
27     chart: certmanager
28     heritage: Tiller
29     release: istio
30   annotations:
31     "helm.sh/resource-policy": keep
32 spec:
33   group: certmanager.k8s.io
34   version: v1alpha1
35   names:
36     kind: Issuer
37     plural: issuers
38   scope: Namespaced
39 ---
40 apiVersion: apiextensions.k8s.io/v1beta1
41 kind: CustomResourceDefinition
42 metadata:
43   name: certificates.certmanager.k8s.io
44   labels:
45     app: certmanager
46     chart: certmanager
47     heritage: Tiller
48     release: istio
49   annotations:
50     "helm.sh/resource-policy": keep
51 spec:
52   additionalPrinterColumns:
53     - JSONPath: .status.conditions[?(@.type=="Ready")].status
54       name: Ready
55       type: string
56     - JSONPath: .spec.secretName
57       name: Secret
58       type: string
59     - JSONPath: .spec.issuerRef.name
60       name: Issuer
61       type: string
62       priority: 1
63     - JSONPath: .status.conditions[?(@.type=="Ready")].message
64       name: Status
65       type: string
66       priority: 1
67     - JSONPath: .metadata.creationTimestamp
68       description: |-
69         CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.
70
71         Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
72       name: Age
73       type: date
74   group: certmanager.k8s.io
75   version: v1alpha1
76   scope: Namespaced
77   names:
78     kind: Certificate
79     plural: certificates
80     shortNames:
81       - cert
82       - certs
83 ---