Skip to content

Commit

Permalink
chore: update default values
Browse files Browse the repository at this point in the history
  • Loading branch information
ialejandro committed Sep 5, 2024
1 parent 3d3c6cd commit 10c7f33
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/cp-schema-registry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ helm show values devops-ia/cp-schema-registry
|-----|------|---------|-------------|
| affinity | object | `{}` | Affinity for pod assignment </br> Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity |
| autoscaling | object | `{"enabled":false,"maxReplicas":100,"minReplicas":1,"targetCPUUtilizationPercentage":80}` | Autoscaling with CPU or memory utilization percentage </br> Ref: https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/ |
| env | object | `{"SCHEMA_REGISTRY_HEAP_OPTS":"-Xms512M -Xmx512M","SCHEMA_REGISTRY_MASTER_ELIGIBILITY":"true"}` | Environment variables to configure application </br> Ref: https://docs.cp-schema-registry.io/latest/deployment/configuration/#platform |
| env | object | `{"SCHEMA_REGISTRY_HEAP_OPTS":"-Xms512M -Xmx512M","SCHEMA_REGISTRY_MASTER_ELIGIBILITY":"true"}` | Environment variables to configure application </br> Ref: https://docs.confluent.io/platform/current/schema-registry/installation/config.html#schemaregistry-config |
| envFromSecrets | object | `{}` | Secrets from variables |
| fullnameOverride | string | `""` | String to fully override cp-schema-registry.fullname template |
| image | object | `{"pullPolicy":"IfNotPresent","repository":"confluentinc/cp-schema-registry","tag":""}` | Image registry The image configuration for the base service |
Expand Down
13 changes: 12 additions & 1 deletion charts/cp-schema-registry/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,21 @@ serviceAccount:
testConnection: false

# -- Environment variables to configure application
# </br> Ref: https://docs.cp-schema-registry.io/latest/deployment/configuration/#platform
# </br> Ref: https://docs.confluent.io/platform/current/schema-registry/installation/config.html#schemaregistry-config
env:
SCHEMA_REGISTRY_MASTER_ELIGIBILITY: "true"
SCHEMA_REGISTRY_HEAP_OPTS: "-Xms512M -Xmx512M"
#SCHEMA_REGISTRY_SCHEMA_COMPATIBILITY_LEVEL: "full_transitive"
#SCHEMA_REGISTRY_KAFKASTORE_SECURITY_PROTOCOL: "SSL"
#SCHEMA_REGISTRY_MASTER_ELIGIBILITY: "true"
#SCHEMA_REGISTRY_KAFKASTORE_TIMEOUT_MS: 1000
#SCHEMA_REGISTRY_KAFKASTORE_BOOTSTRAP_SERVERS: ref+tfstates3://{{ .Values.aws.tfstateBucket }}/{{ .Environment.Name }}/msk/terraform.tfstate/output.bootstrap_brokers_sasl_iam
#SCHEMA_REGISTRY_LOG4J_LOGGERS: "org.apache.kafka=ERROR,io.confluent.rest.exceptions=FATAL,io.confluent.admin.utils.ClusterStatus=ERROR"
## IAM
#SCHEMA_REGISTRY_KAFKASTORE_SECURITY_PROTOCOL: "SASL_SSL"
#SCHEMA_REGISTRY_KAFKASTORE_SASL_CLIENT_CALLBACK_HANDLER_CLASS: "software.amazon.msk.auth.iam.IAMClientCallbackHandler"
#SCHEMA_REGISTRY_KAFKASTORE_SASL_JAAS_CONFIG: "software.amazon.msk.auth.iam.IAMLoginModule required;"
#SCHEMA_REGISTRY_KAFKASTORE_SASL_MECHANISM: "AWS_MSK_IAM"

# -- Secrets from variables
envFromSecrets: {}
Expand Down

0 comments on commit 10c7f33

Please sign in to comment.