Skip to content

Commit 3bae8d9

Browse files
author
kubernetes-nmstate-bot
committed
operator kubernetes-nmstate-operator (0.88.0)
Signed-off-by: kubernetes-nmstate-bot <[email protected]>
1 parent 8c97cbc commit 3bae8d9

File tree

7 files changed

+5023
-0
lines changed

7 files changed

+5023
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM scratch
2+
3+
# Core bundle labels.
4+
LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1
5+
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
6+
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
7+
LABEL operators.operatorframework.io.bundle.package.v1=kubernetes-nmstate-operator
8+
LABEL operators.operatorframework.io.bundle.channels.v1=alpha
9+
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.37.0
10+
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
11+
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3
12+
13+
# Copy files to locations specified by labels.
14+
COPY bundle/manifests /manifests/
15+
COPY bundle/metadata /metadata/

operators/kubernetes-nmstate-operator/0.88.0/manifests/kubernetes-nmstate-operator.clusterserviceversion.yaml

Lines changed: 355 additions & 0 deletions
Large diffs are not rendered by default.

operators/kubernetes-nmstate-operator/0.88.0/manifests/nmstate.io_nmstates.yaml

Lines changed: 4163 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 139 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
1+
apiVersion: apiextensions.k8s.io/v1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
annotations:
5+
controller-gen.kubebuilder.io/version: v0.17.1
6+
creationTimestamp: null
7+
name: nodenetworkconfigurationenactments.nmstate.io
8+
spec:
9+
group: nmstate.io
10+
names:
11+
kind: NodeNetworkConfigurationEnactment
12+
listKind: NodeNetworkConfigurationEnactmentList
13+
plural: nodenetworkconfigurationenactments
14+
shortNames:
15+
- nnce
16+
singular: nodenetworkconfigurationenactment
17+
scope: Cluster
18+
versions:
19+
- additionalPrinterColumns:
20+
- description: Status
21+
jsonPath: .status.conditions[?(@.status=="True")].type
22+
name: Status
23+
type: string
24+
- description: Status Age
25+
jsonPath: .status.conditions[?(@.status=="True")].lastTransitionTime
26+
name: Status Age
27+
type: date
28+
- description: Reason
29+
jsonPath: .status.conditions[?(@.status=="True")].reason
30+
name: Reason
31+
type: string
32+
name: v1beta1
33+
schema:
34+
openAPIV3Schema:
35+
description: NodeNetworkConfigurationEnactment is the Schema for the nodenetworkconfigurationenactments
36+
API
37+
properties:
38+
apiVersion:
39+
description: |-
40+
APIVersion defines the versioned schema of this representation of an object.
41+
Servers should convert recognized schemas to the latest internal value, and
42+
may reject unrecognized values.
43+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
44+
type: string
45+
kind:
46+
description: |-
47+
Kind is a string value representing the REST resource this object represents.
48+
Servers may infer this from the endpoint the client submits requests to.
49+
Cannot be updated.
50+
In CamelCase.
51+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
52+
type: string
53+
metadata:
54+
type: object
55+
status:
56+
description: NodeNetworkConfigurationEnactmentStatus defines the observed
57+
state of NodeNetworkConfigurationEnactment
58+
properties:
59+
capturedStates:
60+
additionalProperties:
61+
properties:
62+
metaInfo:
63+
properties:
64+
time:
65+
format: date-time
66+
type: string
67+
version:
68+
type: string
69+
type: object
70+
state:
71+
type: object
72+
x-kubernetes-preserve-unknown-fields: true
73+
type: object
74+
description: A cache containing the resolved captures after processing
75+
the capture at NNCP
76+
type: object
77+
conditions:
78+
items:
79+
properties:
80+
lastHeartbeatTime:
81+
format: date-time
82+
type: string
83+
lastTransitionTime:
84+
format: date-time
85+
type: string
86+
message:
87+
type: string
88+
reason:
89+
type: string
90+
status:
91+
type: string
92+
type:
93+
type: string
94+
required:
95+
- status
96+
- type
97+
type: object
98+
type: array
99+
desiredState:
100+
description: |-
101+
The desired state rendered for the enactment's node using
102+
the policy desiredState as template
103+
type: object
104+
x-kubernetes-preserve-unknown-fields: true
105+
desiredStateMetaInfo:
106+
properties:
107+
time:
108+
format: date-time
109+
type: string
110+
version:
111+
type: string
112+
type: object
113+
features:
114+
items:
115+
type: string
116+
type: array
117+
policyGeneration:
118+
description: |-
119+
The generation from policy needed to check if an enactment
120+
condition status belongs to the same policy version
121+
format: int64
122+
type: integer
123+
retryCount:
124+
additionalProperties:
125+
type: integer
126+
type: object
127+
type: object
128+
type: object
129+
x-kubernetes-preserve-unknown-fields: true
130+
served: true
131+
storage: true
132+
subresources:
133+
status: {}
134+
status:
135+
acceptedNames:
136+
kind: ""
137+
plural: ""
138+
conditions: null
139+
storedVersions: null

0 commit comments

Comments
 (0)