Enabling/disabling reports to be sent to Domino ================================================= By default each newly-generated Toolkit report is securely sent to Domino Support and Engineering. This allows Domino engineers to gain access to the reports faster during an outage and get historical context to previous outages. You can opt out of this service (or opt in again) with an applied Kubernetes `ConfigMap` or by selecting the opt in or opt out button in the toolkit UI. Web Interface -------------- You can either do this in the toolkit UI by selecting the opt_in or opt_out button depending on your current settings. This will either delete the config map which will cause reports to be sent or create the config map with the flag set to False. CLI ---- You can also do this for the CLI command line by doing the following For all of the below please replace {platform-namespace} with the name of your platform namespace - Copy and paste the following template into a file, changing the namespace to meet your deployment's platform namespace: .. code-block:: yaml kind: ConfigMap apiVersion: v1 metadata: name: domino-admin-toolkit-cm namespace: {platform-namespace} data: send_to_domino: "False" - Then apply: .. code-block:: bash kubectl apply -f {configmap}.yaml The requirements are: - `ConfigMap` type - Metadata name: `domino-admin-toolkit-cm` - Data must only use key `send_to_domino` and the value is a *boolean* type(True or False): .. code-block:: yaml send_to_domino: "False" Removing the Config Map entirely will also default to sending the reports .. code-block:: bash kubectl delete cm -n {platform-namespace} domino-admin-toolkit-cm