I am trying to migrate cassandra DB to AKS using k8ssandra. I would like to retain the source DB's cassandra.yaml configuration in the target as well, like increase the timeout parameters ( to handle client requests). I see the configmap placeholder in the k8ssandra's values.yaml file. Would it help to retain the source configurations? Detailed guideline on how to use it is much appreciated :)
How do we use Configmap utility in k8ssandra helm?
301 Views Asked by Jeya At
1
There are 1 best solutions below
Related Questions in K8SSANDRA
- add fo:marker marker-class-name="section.head.marker" to specific sections
- Using Schematron to identify a space as first character in element
- SVG To Multipage PDF
- Define a Linux manual page's TITLE text when using docbook2man?
- docbook saxon toolchain extension jar file -- cannot find same
- docbook style sheets param.xsl
- Maven docbkx plugin and Eclipse
- Numbering of figures in DocBook
- xslt flattening and unflattening DocBook para element
- Remove Caption from one Figure
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Support for specifying Casssandra configs via a ConfigMap was added in this PR and made available in K8ssandra 1.4.0.
The new chart property name is
cassandraYamlConfigMap
. Here is what the docs for the property say:Here is an example ConfigMap:
Here's how this works. The cassandra.yaml, jvm-server-options, etc. are generated as normal when
cassandraYamlConfigMap
is set. After theserver-config-init
init container generates the configs, then a new init container calledapply-custom-config
does a merge using yq of the cassandra.yaml in the ConfigMap and the cassandra.yaml generated byserver-config-init
. The ConfigMap takes precedence.Make sure to pay attention to the properties that should not be specified. No validation checks are performed on the ConfigMap.
Note that you will need to use the
cassandraYamlConfigMap
property if you want to configure internode encryption. See this post for a detailed explanation.Lastly, I want to point out that there is improved support for configuring cassandra.yaml in K8ssandra Operator. The operator does not allow you to specify a custom ConfigMap but all cassandra.yaml properties are available in the K8ssandraCluster CRD. See here for an example.