Description
When creating a new project in litmus the default chaoshub is created.
But it is not configurable for disconnected environments when customers want to use only own private/public repos.
This default public chaoshub is impossible to remove.
It is not visible in the mongodb document in the dedecated chaoshub collection
Default configuration in the helm chart uses the emptydir volume type. It means that after restart everything is cleaned.
volumes:
- name: hub-storage
emptyDir: {}
So every change here is gone after pod restarts.
I'd like to have capability to create my own repository with chaos faults and use it as a private or internal public repo and as a default one.
From not only my perspective it should be configurable via dedicated environment variables for server deployment or server binary should accept several configuration flags. It is a common way to build kubernetes operators using kubebuilder or simmilar tools. I cannot uderstand this.
Maybe dedicated env variable for the first iteration of this feature request..
DISABLE_DEFAULT_CHAOSHUB: false
should be prepared