Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Meetup HLF 3.0 #10

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chart/hlf-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.9.2
version: 1.11.0-beta3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
106 changes: 54 additions & 52 deletions chart/hlf-operator/templates/crds/hlf.kungfusoftware.es_fabriccas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -910,6 +910,13 @@ spec:
type: string
key:
type: string
secret:
nullable: true
properties:
name:
nullable: true
type: string
type: object
required:
- cert
- chain
Expand Down Expand Up @@ -1182,32 +1189,6 @@ spec:
- ST
- cn
type: object
tlsCa:
nullable: true
properties:
cert:
type: string
clientAuth:
properties:
cert_file:
items:
type: string
type: array
type:
description: NoClientCert, RequestClientCert, RequireAnyClientCert,
VerifyClientCertIfGiven and RequireAndVerifyClientCert.
type: string
required:
- cert_file
- type
type: object
key:
type: string
required:
- cert
- clientAuth
- key
type: object
required:
- bccsp
- cfg
Expand Down Expand Up @@ -1520,6 +1501,16 @@ spec:
required:
- nodeSelectorTerms
type: object
podAnnotations:
additionalProperties:
type: string
nullable: true
type: object
podLabels:
additionalProperties:
type: string
nullable: true
type: object
resources:
description: ResourceRequirements describes the compute resource requirements.
properties:
Expand Down Expand Up @@ -1675,6 +1666,13 @@ spec:
type: string
key:
type: string
secret:
nullable: true
properties:
name:
nullable: true
type: string
type: object
required:
- cert
- chain
Expand Down Expand Up @@ -1947,32 +1945,6 @@ spec:
- ST
- cn
type: object
tlsCa:
nullable: true
properties:
cert:
type: string
clientAuth:
properties:
cert_file:
items:
type: string
type: array
type:
description: NoClientCert, RequestClientCert, RequireAnyClientCert,
VerifyClientCertIfGiven and RequireAndVerifyClientCert.
type: string
required:
- cert_file
- type
type: object
key:
type: string
required:
- cert
- clientAuth
- key
type: object
required:
- bccsp
- cfg
Expand Down Expand Up @@ -2023,6 +1995,36 @@ spec:
type: object
nullable: true
type: array
traefik:
nullable: true
properties:
entryPoints:
items:
type: string
type: array
hosts:
items:
type: string
nullable: true
type: array
middlewares:
items:
properties:
name:
minLength: 1
type: string
namespace:
minLength: 1
type: string
required:
- name
- namespace
type: object
nullable: true
type: array
required:
- entryPoints
type: object
version:
minLength: 1
type: string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -863,12 +863,20 @@ spec:
type: array
type: object
type: object
annotations:
additionalProperties:
type: string
nullable: true
type: object
args:
description: Arguments to the entrypoint. The container image's CMD
is used if this is not provided.
items:
type: string
type: array
chaincodeServerPort:
default: 7052
type: integer
command:
description: Entrypoint array. Not executed within a shell. The container
image's ENTRYPOINT is used if this is not provided.
Expand All @@ -888,6 +896,20 @@ spec:
properties:
cacert:
type: string
secretRef:
nullable: true
properties:
key:
type: string
name:
type: string
namespace:
type: string
required:
- key
- name
- namespace
type: object
required:
- cacert
type: object
Expand Down Expand Up @@ -1056,9 +1078,26 @@ spec:
type: object
nullable: true
type: array
labels:
additionalProperties:
type: string
nullable: true
type: object
mspID:
type: string
packageId:
minLength: 1
type: string
podAnnotations:
additionalProperties:
type: string
nullable: true
type: object
podLabels:
additionalProperties:
type: string
nullable: true
type: object
replicas:
type: integer
resources:
Expand Down Expand Up @@ -1088,6 +1127,17 @@ spec:
to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/'
type: object
type: object
template:
nullable: true
properties:
name:
type: string
namespace:
type: string
required:
- name
- namespace
type: object
tolerations:
items:
description: The pod this Toleration is attached to tolerates any
Expand Down Expand Up @@ -1129,6 +1179,7 @@ spec:
nullable: true
type: array
required:
- chaincodeServerPort
- image
- imagePullPolicy
- packageId
Expand Down
Loading
Loading