@@ -15,6 +15,80 @@ metadata:
15
15
namespace : istio-operator
16
16
name : istio-operator
17
17
---
18
+ # Source: istio-operator/templates/crds.yaml
19
+ # SYNC WITH manifests/charts/base/files
20
+ apiVersion : apiextensions.k8s.io/v1
21
+ kind : CustomResourceDefinition
22
+ metadata :
23
+ name : istiooperators.install.istio.io
24
+ labels :
25
+ release : istio
26
+ spec :
27
+ group : install.istio.io
28
+ names :
29
+ kind : IstioOperator
30
+ plural : istiooperators
31
+ singular : istiooperator
32
+ shortNames :
33
+ - iop
34
+ scope : Namespaced
35
+ versions :
36
+ - additionalPrinterColumns :
37
+ - description : Istio control plane revision
38
+ jsonPath : .spec.revision
39
+ name : Revision
40
+ type : string
41
+ - description : IOP current state
42
+ jsonPath : .status.status
43
+ type : string
44
+ name : Status
45
+ - jsonPath : .metadata.creationTimestamp
46
+ description :
47
+ " CreationTimestamp is a timestamp representing the server time when
48
+ this object was created. It is not guaranteed to be set in happens-before order
49
+ across separate operations. Clients may not set this value. It is represented
50
+ in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for
51
+ lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata"
52
+ name : Age
53
+ type : date
54
+ name : v1alpha1
55
+ schema :
56
+ openAPIV3Schema :
57
+ properties :
58
+ apiVersion :
59
+ description :
60
+ " APIVersion defines the versioned schema of this representation
61
+ of an object. Servers should convert recognized schemas to the latest
62
+ internal value, and may reject unrecognized values.
63
+ More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#resources"
64
+ type : string
65
+ kind :
66
+ description :
67
+ " Kind is a string value representing the REST resource this
68
+ object represents. Servers may infer this from the endpoint the client
69
+ submits requests to. Cannot be updated. In CamelCase.
70
+ More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
71
+ type : string
72
+ spec :
73
+ description :
74
+ " Specification of the desired state of the istio control plane resource.
75
+ More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
76
+ x-kubernetes-preserve-unknown-fields : true
77
+ type : object
78
+ status :
79
+ description :
80
+ " Status describes each of istio control plane component status at the current time.
81
+ 0 means NONE, 1 means UPDATING, 2 means HEALTHY, 3 means ERROR, 4 means RECONCILING.
82
+ More info: https://github.com/istio/api/blob/master/operator/v1alpha1/istio.operator.v1alpha1.pb.html &
83
+ https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
84
+ x-kubernetes-preserve-unknown-fields : true
85
+ type : object
86
+ type : object
87
+ served : true
88
+ storage : true
89
+ subresources :
90
+ status : {}
91
+ ---
18
92
# Source: istio-operator/templates/clusterrole.yaml
19
93
apiVersion : rbac.authorization.k8s.io/v1
20
94
kind : ClusterRole
0 commit comments