parent
03d20a809e
commit
0d77e58a2b
@ -0,0 +1,50 @@
|
||||
---
|
||||
apiVersion: apiextensions.k8s.io/v1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
annotations:
|
||||
controller-gen.kubebuilder.io/version: v0.9.2
|
||||
creationTimestamp: null
|
||||
name: apps.demo.mashibing.com
|
||||
spec:
|
||||
group: demo.mashibing.com
|
||||
names:
|
||||
kind: App
|
||||
listKind: AppList
|
||||
plural: apps
|
||||
singular: app
|
||||
scope: Namespaced
|
||||
versions:
|
||||
- name: v1
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
description: 定义我们CRD的对象 App is the Schema for the apps API
|
||||
properties:
|
||||
apiVersion:
|
||||
description: 'APIVersion defines the versioned schema of this representation
|
||||
of an object. Servers should convert recognized schemas to the latest
|
||||
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
|
||||
type: string
|
||||
kind:
|
||||
description: 'Kind is a string value representing the REST resource this
|
||||
object represents. Servers may infer this from the endpoint the client
|
||||
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
|
||||
type: string
|
||||
metadata:
|
||||
type: object
|
||||
spec:
|
||||
description: AppSpec defines the desired state of App
|
||||
properties:
|
||||
foo:
|
||||
description: Foo is an example field of App. Edit app_types.go to
|
||||
remove/update
|
||||
type: string
|
||||
type: object
|
||||
status:
|
||||
description: AppStatus defines the observed state of App
|
||||
type: object
|
||||
type: object
|
||||
served: true
|
||||
storage: true
|
||||
subresources:
|
||||
status: {}
|
@ -0,0 +1,33 @@
|
||||
---
|
||||
apiVersion: rbac.authorization.k8s.io/v1
|
||||
kind: ClusterRole
|
||||
metadata:
|
||||
creationTimestamp: null
|
||||
name: manager-role
|
||||
rules:
|
||||
- apiGroups:
|
||||
- demo.mashibing.com
|
||||
resources:
|
||||
- apps
|
||||
verbs:
|
||||
- create
|
||||
- delete
|
||||
- get
|
||||
- list
|
||||
- patch
|
||||
- update
|
||||
- watch
|
||||
- apiGroups:
|
||||
- demo.mashibing.com
|
||||
resources:
|
||||
- apps/finalizers
|
||||
verbs:
|
||||
- update
|
||||
- apiGroups:
|
||||
- demo.mashibing.com
|
||||
resources:
|
||||
- apps/status
|
||||
verbs:
|
||||
- get
|
||||
- patch
|
||||
- update
|
Loading…
Reference in new issue