On Wed, 2020-04-22 at 15:28 +0200, Erik Skultety wrote: > +[gitlab] > +# GitLab runner agent registration options, applies only if flavor == 'gitlab'. > + > +# GitLab server URL to register the runner. > +#gitlab_url = "https://gitlab.com" > + > +# GitLab runner registration token. (mandatory) > +#gitlab_runner_secret = "" Additional nit: since TOML is organized in sections, it doesn't make sense to include the section name in the key name, so this should look like [gitlab] url = "https://gitlab.com" runner_secret = "..." -- Andrea Bolognani / Red Hat / Virtualization