Customizing kn¶
You can customize your kn CLI setup by creating a config.yaml configuration file. You can provide this configuration by using the --config flag, otherwise the configuration is picked up from a default location. The default configuration location conforms to the XDG Base Directory Specification, and is different for Unix systems and Windows systems.
- If the
XDG_CONFIG_HOMEenvironment variable is set, the default configuration location thatknlooks for is$XDG_CONFIG_HOME/kn. - If the
XDG_CONFIG_HOMEenvironment variable is not set,knlooks for the configuration in the home directory of the user at$HOME/.config/kn/config.yaml. - For Windows systems, the default
knconfiguration location is%APPDATA%\kn.
Example configuration file¶
plugins:
path-lookup: true
directory: ~/.config/kn/plugins
eventing:
sink-mappings:
- prefix: svc
group: core
version: v1
resource: services
Where
path-lookupspecifies whetherknshould look for plugins in thePATHenvironment variable. This is a boolean configuration option. The default value isfalse.directoryspecifies the directory whereknwill look for plugins. The default path depends on the operating system, as described earlier. This can be any directory that is visible to the user.sink-mappingsdefines the Kubernetes Addressable resource that is used when you use the--sinkflag with aknCLI command.prefix: The prefix you want to use to describe your sink. Service,svc,channel, andbrokerare predefined prefixes inkn.group: The API group of the Kubernetes resource.version: The version of the Kubernetes resource.resource: The plural name of the Kubernetes resource type. For example,servicesorbrokers.