Skip to content

Automated Dependency Updates for Rancher Fleet

Categories: cd, kubernetes

Renovate supports updating Rancher Fleet dependencies.

File Matching

By default, Renovate will check any files matching the following regular expression: /(^|/)fleet\.ya?ml/.

For details on how to extend a manager's managerFilePatterns value, please follow this link.

Supported datasources

This manager supports extracting the following datasources: git-tags, helm, docker.

Dependency types

This manager extracts the following depType values:

depType Description
git_repo Git repository reference in a Fleet GitRepo manifest
fleet Helm chart reference in a Fleet deployment

Default config

{
  "managerFilePatterns": [
    "/(^|/)fleet\\.ya?ml/"
  ]
}

Additional Information

Can upgrade bundle definitions and GitRepo YAML manifests of Rancher Fleet.

By default, only bundles with Helm references will be upgraded. To enable GitRepo updates you have to extend your managerFilePatterns configuration.

{
  "managerFilePatterns": ["/(^|/)fleet.ya?ml/", "/myGitRepoManifests\\.yaml/"]
}

In case pull through cache configured via internal registry, it is possible to setup registryAlias to query package updates via upstream source

{
  "registryAliases": {
    "https://registry.com/jetstack": "https://charts.jetstack.io",
    "registry.com/docker-io": "registry-1.docker.io"
  }
}