Skip to content

Commit

Permalink
Update CRDs
Browse files Browse the repository at this point in the history
Signed-off-by: David VIEJO <dviejo@kungfusoftware.es>
  • Loading branch information
dviejokfs committed Oct 29, 2024
1 parent 1971bc4 commit df7632b
Show file tree
Hide file tree
Showing 17 changed files with 3,814 additions and 5,288 deletions.
854 changes: 171 additions & 683 deletions chart/hlf-operator/templates/crds/hlf.kungfusoftware.es_fabriccas.yaml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,207 @@
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.16.4
name: fabricchaincodeapproves.hlf.kungfusoftware.es
spec:
group: hlf.kungfusoftware.es
names:
kind: FabricChaincodeApprove
listKind: FabricChaincodeApproveList
plural: fabricchaincodeapproves
shortNames:
- fabricchaincodeapprove
singular: fabricchaincodeapprove
scope: Cluster
versions:
- additionalPrinterColumns:
- jsonPath: .status.status
name: State
type: string
- jsonPath: .metadata.creationTimestamp
name: Age
type: date
name: v1alpha1
schema:
openAPIV3Schema:
properties:
apiVersion:
type: string
kind:
type: string
metadata:
type: object
spec:
properties:
chaincodeName:
type: string
channelName:
type: string
endorsementPolicy:
type: string
externalOrderers:
items:
properties:
tlsCACert:
type: string
url:
type: string
required:
- tlsCACert
- url
type: object
type: array
externalPeers:
items:
properties:
tlsCACert:
type: string
url:
type: string
required:
- tlsCACert
- url
type: object
type: array
hlfIdentity:
properties:
secretKey:
type: string
secretName:
type: string
secretNamespace:
default: default
type: string
required:
- secretKey
- secretName
- secretNamespace
type: object
initRequired:
nullable: true
type: boolean
mspID:
type: string
orderers:
items:
properties:
name:
type: string
namespace:
type: string
required:
- name
- namespace
type: object
type: array
packageId:
type: string
pdc:
items:
properties:
blockToLive:
format: int64
nullable: true
type: integer
endorsementPolicy:
properties:
channelConfigPolicy:
nullable: true
type: string
signaturePolicy:
type: string
type: object
maxPeerCount:
format: int32
type: integer
memberOnlyRead:
type: boolean
memberOnlyWrite:
type: boolean
name:
type: string
policy:
type: string
requiredPeerCount:
format: int32
nullable: true
type: integer
required:
- maxPeerCount
- memberOnlyRead
- memberOnlyWrite
- name
- policy
type: object
type: array
peers:
items:
properties:
name:
type: string
namespace:
type: string
required:
- name
- namespace
type: object
type: array
sequence:
format: int64
type: integer
version:
type: string
required:
- chaincodeName
- channelName
- endorsementPolicy
- externalOrderers
- externalPeers
- hlfIdentity
- mspID
- orderers
- packageId
- peers
- sequence
- version
type: object
status:
properties:
conditions:
items:
properties:
lastTransitionTime:
format: date-time
type: string
message:
type: string
reason:
type: string
status:
type: string
type:
type: string
required:
- status
- type
type: object
type: array
message:
type: string
status:
type: string
transactionID:
nullable: true
type: string
required:
- conditions
- message
- status
type: object
type: object
served: true
storage: true
subresources:
status: {}
Loading

0 comments on commit df7632b

Please sign in to comment.