Replies: 2 comments 4 replies
-
Hi @ss85705 I am just looking at this now to see if I can spot any issues. |
Beta Was this translation helpful? Give feedback.
-
Hey @ss85705 I spent some time yesterday to find the best way to externalize configuration for Klaw in K8s. Their are a few ways to do so, but the cleanest way available to us at the moment, is to use the envFrom method. e.g. create your configmap with your configuration the core-config is an example of how to define the variables you want to alter in this case it is the postgres connection.. Then in the deploy-kubernetes.yaml the environment variables are replaced with envFrom this loads all of the data from the config maps making changes to the configmap will require you to scale your pods to zero and then back to 1 Deployment Klaw-core e.g. apiVersion: apps/v1 |
Beta Was this translation helpful? Give feedback.
-
Hi @aindriu-aiven @muralibasani
I am using kubernetes deployment file for deploying KLAW. I am able to connect PLAINTEXT kafka clusters but unable to deploy Cluster api and klaw core with PEM environment variables.
i am using below env in my kubernetes deployment.
value: "PEM"
value: "klaw-tls-cert"
value: "klaw-tls-cert"
This config is giving parsing error in deployment file.
I am taking reference from one of the post about PEM support
#511
Beta Was this translation helpful? Give feedback.
All reactions