Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
],
matchStrings: [
'//\\s*renovate:\\s*datasource=(?<datasource>[a-z-.]+?)\\s+depName=(?<depName>[^\\s]+?)(?:\\s+versioning=(?<versioning>[^\\s]+?))?\\s*\\n\\s*//\\s*Version:\\s*(?<currentValue>[^\\s]+?)\\s*\\n\\s*Image:\\s*"[^@]+@(?<currentDigest>sha256:[a-f0-9]+)"',
'//\\s*renovate:\\s*datasource=(?<datasource>[a-z-.]+?)\\s+depName=(?<depName>[^\\s]+?)(?:\\s+versioning=(?<versioning>[^\\s]+?))?\\s*\\n\\s*const\\s+\\w+\\s*=\\s*"(?<currentValue>[^"]+?)"',
],
},
{
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/internal/certmanager/certmanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ func WithIgnoreExistingResources(ignore bool) InstallOption {
}
}

// TODO: renovate

// DefaultVersion is the default version of cert-manager to install.
//
// renovate: datasource=github-releases depName=cert-manager/cert-manager
const DefaultVersion = "v1.15.1"

// Install installs cert-manager using kubectl.
Expand Down
3 changes: 1 addition & 2 deletions test/e2e/internal/e2etestenv/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,8 @@ func WithIgnoreExistingResources(ignore bool) SetupOption {
}

func defaultSetupOptions() SetupOptions {
// TODO: renovate
return SetupOptions{
CertManagerVersion: "v1.15.1",
CertManagerVersion: certmanager.DefaultVersion,
}
}

Expand Down
Loading