Hey folks, I have a self managed fleet instance de...
# fleet
a
Hey folks, I have a self managed fleet instance deployed via helm charts. I wanted to apply a premium license. The helm charts don’t have this capability, AFAIK, and applying them via
fleetctl
didn’t work:
Copy code
apiVersion: v1
kind: config
spec:

license:
  key: key_string
  enforce_host_limit: true
What I did in end effect was to edit the fleet deployment k8s resource in place to add the license variables
FLEET_LICENSE_KEY
and
FLEET_LICENSE_ENFORCE_HOST_LIMIT
and this worked but this isn’t a manageable and permanent solution. Are there any workarounds? What did I wrong with the config file?