Skip to content

Commit bf6186d

Browse files
committed
after make manifests
1 parent dd689cb commit bf6186d

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
apiVersion: apiextensions.k8s.io/v1
3+
kind: CustomResourceDefinition
4+
metadata:
5+
annotations:
6+
controller-gen.kubebuilder.io/version: v0.18.0
7+
name: kvservices.enterprise.splunk.com
8+
spec:
9+
group: enterprise.splunk.com
10+
names:
11+
kind: KVService
12+
listKind: KVServiceList
13+
plural: kvservices
14+
singular: kvservice
15+
scope: Namespaced
16+
versions:
17+
- name: v4
18+
schema:
19+
openAPIV3Schema:
20+
description: KVService is the Schema for the kvservices API
21+
properties:
22+
apiVersion:
23+
description: |-
24+
APIVersion defines the versioned schema of this representation of an object.
25+
Servers should convert recognized schemas to the latest internal value, and
26+
may reject unrecognized values.
27+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
28+
type: string
29+
kind:
30+
description: |-
31+
Kind is a string value representing the REST resource this object represents.
32+
Servers may infer this from the endpoint the client submits requests to.
33+
Cannot be updated.
34+
In CamelCase.
35+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
36+
type: string
37+
metadata:
38+
type: object
39+
spec:
40+
description: KVServiceSpec defines the desired state of KVService
41+
properties:
42+
foo:
43+
description: Foo is an example field of KVService. Edit kvservice_types.go
44+
to remove/update
45+
type: string
46+
type: object
47+
status:
48+
description: KVServiceStatus defines the observed state of KVService
49+
type: object
50+
type: object
51+
served: true
52+
storage: true
53+
subresources:
54+
status: {}

config/rbac/role.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ rules:
5050
- clustermanagers
5151
- clustermasters
5252
- indexerclusters
53+
- kvservices
5354
- licensemanagers
5455
- licensemasters
5556
- monitoringconsoles
@@ -69,6 +70,7 @@ rules:
6970
- clustermanagers/finalizers
7071
- clustermasters/finalizers
7172
- indexerclusters/finalizers
73+
- kvservices/finalizers
7274
- licensemanagers/finalizers
7375
- licensemasters/finalizers
7476
- monitoringconsoles/finalizers
@@ -82,6 +84,7 @@ rules:
8284
- clustermanagers/status
8385
- clustermasters/status
8486
- indexerclusters/status
87+
- kvservices/status
8588
- licensemanagers/status
8689
- licensemasters/status
8790
- monitoringconsoles/status

0 commit comments

Comments
 (0)