Mounting of truststore / keystore #1300
-
According to the official example, the How is this mount achieved in the corresponding pod since from what I can see in the deployment template there is no such volume created? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
You should mount it yourself using volume & volume mount, see here: Lines 66 to 70 in 5c4b3e6 |
Beta Was this translation helpful? Give feedback.
-
Thanks for this. I assume these two values will take care both the volume and the volumeMount. Will the volume be of type secret? (citing the official example) apiVersion: v1
kind: Pod
metadata:
name: mypod
spec:
containers:
- name: mypod
image: redis
volumeMounts:
- name: foo
mountPath: "/etc/foo"
readOnly: true
volumes:
- name: foo
secret:
secretName: mysecret
optional: false # default setting; "mysecret" must exist |
Beta Was this translation helpful? Give feedback.
-
Is there somewhere a complete example with a |
Beta Was this translation helpful? Give feedback.
-
You can find it here : https://akhq.io/docs/configuration/brokers.html#example-for-confluent-cloud |
Beta Was this translation helpful? Give feedback.
You can find it here : https://akhq.io/docs/configuration/brokers.html#example-for-confluent-cloud