Alexander Hoem Rosbach
Alexander Hoem Rosbach
Yesterday I also realized that we would need the cassandra containers to support running as non-root, e.g. the cassandra user. This [PR](https://github.com/datastax/management-api-for-apache-cassandra/pull/43) seems to solve it, but it's been stagnant...
Thanks. I've gotten that part to work now. I tested it against our PSP, and found that container also needs write access to /opt/mcac-agent/config/metric-collector.yaml. Do you know if it is...
If you're not sure, I could add an init container like so: ``` - name: mcac-agent-config image: datastax/cassandra-mgmtapi-3_11_9:v0.1.17 volumeMounts: - name: mcac-agent-config mountPath: /config command: ['/bin/sh'] args: ['-c', 'cp -r...
The logs of the server-system-logger container is filled with the following error messages when deploying with the changes I've made. I don't know if this actually is a problem yet,...
@emerkle826 I've rebased the changes onto master in https://github.com/datastax/management-api-for-apache-cassandra/pull/69
I'll test copying the files in /opt/mcac-agent/config from the container and into the emptyDir volume I've mounted there. e.g. something like: ``` - name: mcac-agent-config image: datastax/cassandra-mgmtapi-3_11_9:v0.1.17 volumeMounts: - name:...
Ref: https://github.com/k8ssandra/k8ssandra/pull/301#issuecomment-777467013 Reaper still won't start with a PSP that has readOnlyRootFilesystem=true and nonRoot user. To fix it we need modifications to both [k8ssandra/reaper-operator](https://github.com/k8ssandra/reaper-operator) and [thelastpickle/cassandra-reaper](https://github.com/thelastpickle/cassandra-reaper/): 1. reaper-operator must add...