Open
Description
Describe the problem/challenge you have
I want to use OpenEBS Jiva in my cluster and use only helm to install it. My Cluster is built with Sidero and uses Talos Linux.
In the documentation of Talos, they explain how to install OpenEBS Jiva but it requires two small patches:
- Re-Configure the ConfigMap openebs-jiva-csi-iscsiadm ( to be able to use iscsiadm )
apiVersion: v1
kind: ConfigMap
metadata:
name: openebs-jiva-csi-iscsiadm
namespace: openebs
data:
iscsiadm: |
#!/bin/sh
iscsid_pid=$(pgrep iscsid)
nsenter --mount="/proc/${iscsid_pid}/ns/mnt" --net="/proc/${iscsid_pid}/ns/net" -- /usr/local/sbin/iscsiadm "$@"
- Re-Configure the DaemonSet openebs-jiva-csi-node to access to the hostPID
kubectl --namespace openebs patch daemonset openebs-jiva-csi-node --type=json --patch '[{"op": "add", "path": "/spec/template/spec/hostPID", "value": true}]'
Describe the solution you'd like
- Add in the helm template, the capacity to overwrite the value of the ConfigMap
- Add in the helm template, the value of hostPID to false by default in the DaemonSet Specs Template.
Environment:
no relevant
Thanks for your advice and help.
Metadata
Metadata
Assignees
Labels
No labels