better-fireman-33387
08/28/2022, 1:09 PMbetter-fireman-33387
08/28/2022, 1:10 PM# Default configuration for pre-requisites to get you started
# Copy this file and update to the configuration of choice
elasticsearch:
enabled: true # set this to false, if you want to provide your own ES instance.
replicas: 3
minimumMasterNodes: 1
# Set replicas to 1 and uncomment this to allow the instance to be scheduled on
# a master node when deploying on a single node Minikube / Kind / etc cluster.
# antiAffinity: "soft"
# # If your running a single replica cluster add the following helm value
# clusterHealthCheckParams: "wait_for_status=yellow&timeout=1s"
# # Shrink default JVM heap.
# esJavaOpts: "-Xmx128m -Xms128m"
# # Allocate smaller chunks of memory per pod.
resources:
requests:
cpu: "100m"
memory: "100M"
limits:
cpu: "1000m"
memory: "512M"
# # Request smaller persistent volumes.
volumeClaimTemplate:
accessModes: ["ReadWriteOnce"]
storageClassName: "rook-ceph-block"
resources:
requests:
storage: 100M
# Official neo4j chart uses the Neo4j Enterprise Edition which requires a license
neo4j:
enabled: false # set this to true, if you have a license for the enterprise edition
acceptLicenseAgreement: "yes"
defaultDatabase: "graph.db"
neo4jPassword: "datahub"
# For better security, add password to neo4j-secrets k8s secret and uncomment below
# existingPasswordSecret: neo4j-secrets
core:
standalone: true
# Deploys neo4j community version. Only supports single node
neo4j-community:
enabled: false # set this to false, if you have a license for the enterprise edition
acceptLicenseAgreement: "yes"
defaultDatabase: "graph.db"
# For better security, add password to neo4j-secrets k8s secret and uncomment below
existingPasswordSecret: neo4j-secrets
# resources:
# requests:
# cpu: 0.5
# memory: "512M"
# limits:
# cpu: 1
# memory: "1000M"
# # # Request smaller persistent volumes.
# volumeClaimTemplate:
# accessModes: ["ReadWriteOnce"]
# storageClassName: "rook-ceph-block"
# resources:
# requests:
# storage: 200M
mysql:
enabled: true
auth:
# For better security, add mysql-secrets k8s secret with mysql-root-password, mysql-replication-password and mysql-password
existingSecret: mysql-secrets
resources:
requests:
cpu: 0.5
memory: "512M"
limits:
cpu: 1
memory: "1000M"
# # Request smaller persistent volumes.
volumeClaimTemplate:
accessModes: ["ReadWriteOnce"]
storageClassName: "rook-ceph-block"
resources:
requests:
storage: 200M
cp-helm-charts:
# Schema registry is under the community license
cp-schema-registry:
enabled: true
kafka:
bootstrapServers: "prerequisites-kafka:9092" # <<release-name>>-kafka:9092
cp-kafka:
enabled: false
cp-zookeeper:
enabled: false
cp-kafka-rest:
enabled: false
cp-kafka-connect:
enabled: false
cp-ksql-server:
enabled: false
cp-control-center:
enabled: false
# Bitnami version of Kafka that deploys open source Kafka <https://artifacthub.io/packages/helm/bitnami/kafka>
kafka:
enabled: true
resources:
requests:
cpu: 0.5
memory: "512M"
limits:
cpu: 1
memory: "1000M"
# # Request smaller persistent volumes.
volumeClaimTemplate:
accessModes: ["ReadWriteOnce"]
storageClassName: "rook-ceph-block"
resources:
requests:
storage: 300M
bumpy-needle-3184
08/29/2022, 6:24 AMpersistence.enabled: true
, You need to set these configurations in values.yaml to use persistent volume with kafkabetter-fireman-33387
08/29/2022, 8:19 AMbetter-fireman-33387
08/29/2022, 9:30 AMbumpy-needle-3184
08/29/2022, 10:20 AMbetter-fireman-33387
08/29/2022, 11:14 AMbumpy-needle-3184
08/29/2022, 11:15 AMbetter-fireman-33387
08/29/2022, 11:15 AMbetter-fireman-33387
08/29/2022, 11:15 AMbumpy-needle-3184
08/29/2022, 11:17 AMbetter-fireman-33387
08/29/2022, 11:19 AMLAST SEEN TYPE REASON OBJECT MESSAGE
24m Normal FailedBinding persistentvolumeclaim/data-prerequisites-kafka-0 no persistent volumes available for this claim and no storage class is set
9m6s Normal FailedBinding persistentvolumeclaim/data-prerequisites-kafka-0 no persistent volumes available for this claim and no storage class is set
6s Normal FailedBinding persistentvolumeclaim/data-prerequisites-kafka-0 no persistent volumes available for this claim and no storage class is set
24m Normal FailedBinding persistentvolumeclaim/data-prerequisites-mysql-0 no persistent volumes available for this claim and no storage class is set
9m6s Normal FailedBinding persistentvolumeclaim/data-prerequisites-mysql-0 no persistent volumes available for this claim and no storage class is set
6s Normal FailedBinding persistentvolumeclaim/data-prerequisites-mysql-0 no persistent volumes available for this claim and no storage class is set
24m Normal FailedBinding persistentvolumeclaim/data-prerequisites-zookeeper-0 no persistent volumes available for this claim and no storage class is set
9m6s Normal FailedBinding persistentvolumeclaim/data-prerequisites-zookeeper-0 no persistent volumes available for this claim and no storage class is set
6s Normal FailedBinding persistentvolumeclaim/data-prerequisites-zookeeper-0 no persistent volumes available for this claim and no st
better-fireman-33387
08/29/2022, 11:19 AMbumpy-needle-3184
08/29/2022, 11:21 AMvolumeClaimTemplate:
accessModes: ["ReadWriteOnce"]
storageClassName: "rook-ceph-block"
resources:
requests:
storage: 200M
bumpy-needle-3184
08/29/2022, 11:23 AMkafka:
enabled: true
persistence:
enabled: true
storageClass: "rook-ceph-block"
accessModes:
- ReadWriteOnce
size: 200M
better-fireman-33387
08/29/2022, 11:35 AMbetter-fireman-33387
08/29/2022, 11:38 AMbetter-fireman-33387
08/29/2022, 11:39 AM# Default configuration for pre-requisites to get you started
# Copy this file and update to the configuration of choice
elasticsearch:
enabled: true # set this to false, if you want to provide your own ES instance.
replicas: 3
minimumMasterNodes: 1
# Set replicas to 1 and uncomment this to allow the instance to be scheduled on
# a master node when deploying on a single node Minikube / Kind / etc cluster.
# antiAffinity: "soft"
# # If your running a single replica cluster add the following helm value
# clusterHealthCheckParams: "wait_for_status=yellow&timeout=1s"
# # Shrink default JVM heap.
# esJavaOpts: "-Xmx128m -Xms128m"
# # Allocate smaller chunks of memory per pod.
resources:
requests:
cpu: "0.1"
memory: "100M"
limits:
cpu: "1000m"
memory: "512M"
# # Request smaller persistent volumes.
# volumeClaimTemplate:
# accessModes: ["ReadWriteOnce"]
# storageClassName: "rook-ceph-block"
# resources:
# requests:
# storage: 100M
# Official neo4j chart uses the Neo4j Enterprise Edition which requires a license
neo4j:
enabled: false # set this to true, if you have a license for the enterprise edition
acceptLicenseAgreement: "yes"
defaultDatabase: "graph.db"
neo4jPassword: "datahub"
# For better security, add password to neo4j-secrets k8s secret and uncomment below
# existingPasswordSecret: neo4j-secrets
core:
standalone: true
# Deploys neo4j community version. Only supports single node
neo4j-community:
enabled: false # set this to false, if you have a license for the enterprise edition
acceptLicenseAgreement: "yes"
defaultDatabase: "graph.db"
# For better security, add password to neo4j-secrets k8s secret and uncomment below
existingPasswordSecret: neo4j-secrets
# resources:
# requests:
# cpu: 0.5
# memory: "512M"
# limits:
# cpu: 1
# memory: "1000M"
mysql:
enabled: true
auth:
# For better security, add mysql-secrets k8s secret with mysql-root-password, mysql-replication-password and mysql-password
existingSecret: mysql-secrets
resources:
requests:
cpu: 0.5
memory: "512M"
limits:
cpu: 1
memory: "1000M"
cp-helm-charts:
# Schema registry is under the community license
cp-schema-registry:
enabled: true
kafka:
bootstrapServers: "prerequisites-kafka:9092" # <<release-name>>-kafka:9092
cp-kafka:
enabled: false
cp-zookeeper:
enabled: false
cp-kafka-rest:
enabled: false
cp-kafka-connect:
enabled: false
cp-ksql-server:
enabled: false
cp-control-center:
enabled: false
# Bitnami version of Kafka that deploys open source Kafka <https://artifacthub.io/packages/helm/bitnami/kafka>
kafka:
enabled: true
resources:
requests:
cpu: 0.5
memory: "512M"
limits:
cpu: 1
memory: "1000M"
persistence:
enabled: true
storageClass: "rook-ceph-block"
accessModes:
- ReadWriteOnce
size: 200M
# # Request smaller persistent volumes.
# volumeClaimTemplate:
# accessModes: ["ReadWriteOnce"]
# storageClassName: "rook-ceph-block"
# resources:
# requests:
# storage: 300M
better-fireman-33387
08/29/2022, 11:54 AMbumpy-needle-3184
08/29/2022, 11:55 AMbumpy-needle-3184
08/29/2022, 11:57 AMbetter-fireman-33387
08/29/2022, 12:20 PMbetter-fireman-33387
08/29/2022, 1:10 PMbetter-fireman-33387
08/29/2022, 2:52 PMkafka:
enabled: true
resources:
requests:
cpu: 0.5
memory: "512M"
limits:
cpu: 1
memory: "1000M"
persistence:
enabled: true
storageClass: "rook-ceph-block"
accessModes:
- ReadWriteOnce
size: 200M
zookeeper:
enabled: true
persistence:
enabled: true
storageClass: "rook-ceph-block"
accessModes: ["ReadWriteOnce"]
size: 200M