Can the software inventory be enabled via the conf...
# fleet
d
Can the software inventory be enabled via the config file instead of environment variable?
z
You can enable it via
fleetctl
.
fleetctl apply -f config.yml
with this config:
Copy code
apiVersion: v1
kind: config
spec:
  host_settings:
    enable_host_users: true
    enable_software_inventory: true
d
What is fleetctl modifying with these settings?
Copy code
root@tafleet01:/etc/fleetdm# /usr/local/bin/fleetctl apply -f test.yaml
set the Fleet API address with: fleetctl config set --address <https://localhost:8080>
root@tafleet01:/etc/fleetdm# cat test.yaml
apiVersion: v1
kind: config
spec:
  host_settings:
    enable_host_users: true
    enable_software_inventory: true
I got those settings applied via fleetctl
Are those stored in the DB?
I now have software showing up in FleetDM.
Vulns are starting to populate now, awesome, thank you.
🍻 1
z
Yes, Fleet stores those configs in the DB.