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

Fix #2486: make kamelet binding scalable #2582

Merged
merged 4 commits into from
Aug 23, 2021
Merged
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
19 changes: 19 additions & 0 deletions config/crd/bases/camel.apache.org_kameletbindings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ spec:
jsonPath: .status.phase
name: Phase
type: string
- description: The number of pods
jsonPath: .status.replicas
name: Replicas
type: integer
name: v1alpha1
schema:
openAPIV3Schema:
Expand Down Expand Up @@ -5643,6 +5647,10 @@ spec:
type: object
type: object
type: object
replicas:
description: Replicas is the number of desired replicas for the binding
format: int32
type: integer
sink:
description: Sink is the destination of the integration defined by
this binding
Expand Down Expand Up @@ -6331,9 +6339,20 @@ spec:
phase:
description: Phase --
type: string
replicas:
description: Replicas is the number of actual replicas of the binding
format: int32
type: integer
selector:
description: Selector allows to identify pods belonging to the binding
type: string
type: object
type: object
served: true
storage: true
subresources:
scale:
labelSelectorPath: .status.selector
specReplicasPath: .spec.replicas
statusReplicasPath: .status.replicas
status: {}
1 change: 1 addition & 0 deletions docs/modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
*** xref:observability/monitoring/integration.adoc[Integration]
* Scaling
** xref:scaling/integration.adoc[Integration]
** xref:scaling/binding.adoc[Binding]
* xref:traits:traits.adoc[Traits]
// Start of autogenerated code - DO NOT EDIT! (trait-nav)
** xref:traits:3scale.adoc[3scale]
Expand Down
Loading