Skip to content

Commit

Permalink
Add default values
Browse files Browse the repository at this point in the history
  • Loading branch information
nysthee committed Dec 23, 2018
1 parent b611ce3 commit fc1bcfe
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 1 deletion.
3 changes: 3 additions & 0 deletions charts/cp-kafka-connect/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ configurationOverrides:
"offset.storage.replication.factor": "3"
"status.storage.replication.factor": "3"

## Kafka Connect JVM Heap Option
heapOptions: "-Xms512M -Xmx512M"

## Additional env variables
customEnv: {}

Expand Down
3 changes: 3 additions & 0 deletions charts/cp-kafka-rest/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ imagePullSecrets:

servicePort: 8082

## Kafka rest JVM Heap Option
heapOptions: "-Xms512M -Xmx512M"

resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
Expand Down
2 changes: 1 addition & 1 deletion charts/cp-kafka/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ persistence:
disksPerBroker: 1

## Kafka JVM Heap Option
heapOptions: "-Xms1G -Xmx1G"
heapOptions: "-Xms512M -Xmx512M"

resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
Expand Down
3 changes: 3 additions & 0 deletions charts/cp-ksql-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ imagePullSecrets:

servicePort: 8088

## KSQL JVM Heap Option
heapOptions: "-Xms512M -Xmx512M"

resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
Expand Down
3 changes: 3 additions & 0 deletions charts/cp-schema-registry/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ customEnv: {}
## The port on which the Schema Registry will be available and serving requests
servicePort: 8081

## Schema registry JVM Heap Option
heapOptions: "-Xms512M -Xmx512M"

## You can list load balanced service endpoint, or list of all brokers (which is hard in K8s). e.g.:
## bootstrapServers: "PLAINTEXT://dozing-prawn-kafka-headless:9092"
## Charts uses Kafka Coordinator Master Election: https://docs.confluent.io/current/schema-registry/docs/design.html#kafka-coordinator-master-election
Expand Down
3 changes: 3 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ cp-kafka-rest:
## https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod
imagePullSecrets:
# - name: "regcred"
heapOptions: "-Xms512M -Xmx512M"
resources: {}
## If you do want to specify resources, uncomment the following lines, adjust them as necessary,
## and remove the curly braces after 'resources:'
Expand All @@ -115,6 +116,7 @@ cp-kafka-connect:
## https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod
imagePullSecrets:
# - name: "regcred"
heapOptions: "-Xms512M -Xmx512M"
resources: {}
## If you do want to specify resources, uncomment the following lines, adjust them as necessary,
## and remove the curly braces after 'resources:'
Expand All @@ -136,5 +138,6 @@ cp-ksql-server:
## https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod
imagePullSecrets:
# - name: "regcred"
heapOptions: "-Xms512M -Xmx512M"
ksql:
headless: false

0 comments on commit fc1bcfe

Please sign in to comment.