-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: David VIEJO <dviejo@kungfusoftware.es>
- Loading branch information
Showing
17 changed files
with
3,814 additions
and
5,288 deletions.
There are no files selected for viewing
854 changes: 171 additions & 683 deletions
854
chart/hlf-operator/templates/crds/hlf.kungfusoftware.es_fabriccas.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
207 changes: 207 additions & 0 deletions
207
chart/hlf-operator/templates/crds/hlf.kungfusoftware.es_fabricchaincodeapproves.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: {} |
Oops, something went wrong.