Use the Security scan integrated service to automatically check the images used in your pods before they are deployed. That way you can prevent deploying pods that contain known security vulnerabilities, based on the Common Vulnerabilities and Exposures (CVE) database. Read a more detailed overview.

Activate the Cluster monitoring integrated service 🔗︎

Open a shell and run the following command:

% banzai cluster service monitoring activate

Complete the interactive wizard, or specify the options in a file or on standard input:

% banzai cluster service monitoring activate --file - <<EOF
{
  "prometheus": {
      "enabled": true,
      "storage": {
          "size": 1000,
          "retention": "10d"
      }
  },
  "exporters": {
      "enabled": true,
      "nodeExporter": {
          "enabled": true
      },
      "kubeStateMetrics": {
          "enabled": true
      }
  }
}
EOF

Deactivate the Cluster monitoring integrated service 🔗︎

Open a shell and run the following command:

% banzai cluster service monitoring deactivate