UNCLASSIFIED

Commit 16fcbf85 authored by jtcarnes's avatar jtcarnes
Browse files

feat(renovate): updated renovate to change all references to base image and tool image

parent 238a1d95
Pipeline #252856 failed with stages
in 1 minute and 6 seconds
...@@ -23,7 +23,7 @@ labels: ...@@ -23,7 +23,7 @@ labels:
org.opencontainers.image.url: "https://github.com/GoogleContainerTools/kaniko" org.opencontainers.image.url: "https://github.com/GoogleContainerTools/kaniko"
## Name of the distributing entity, organization or individual ## Name of the distributing entity, organization or individual
org.opencontainers.image.vendor: "Google" org.opencontainers.image.vendor: "Google"
org.opencontainers.image.version: "v1.6.0" org.opencontainers.image.version: "v1.6.0-debug"
## Keywords to help with search (ex. "cicd,gitops,golang") ## Keywords to help with search (ex. "cicd,gitops,golang")
mil.dso.ironbank.image.keywords: "docker,google,rootless,cicd" mil.dso.ironbank.image.keywords: "docker,google,rootless,cicd"
## This value can be "opensource" or "commercial" ## This value can be "opensource" or "commercial"
...@@ -33,7 +33,7 @@ labels: ...@@ -33,7 +33,7 @@ labels:
resources: resources:
- tag: gcr.io/kaniko-project/executor:v1.6.0-debug - tag: gcr.io/kaniko-project/executor:v1.6.0-debug
url: docker://gcr.io/kaniko-project/executor@sha256:27f62896190a10c05e84a6cb602392c07176f4c4fa241a72a6ab424a3865ca34 url: docker://gcr.io/kaniko-project/executor:v1.6.0-debug@sha256:27f62896190a10c05e84a6cb602392c07176f4c4fa241a72a6ab424a3865ca34
maintainers: maintainers:
- email: "joshua.t.carnes@lmco.com" - email: "joshua.t.carnes@lmco.com"
......
{
"assignees": [
"@vickie.shen"
],
"baseBranches": [
"development"
],
"regexManagers": [
{
"fileMatch": [
"^Dockerfile$"
],
"matchStrings": [
"version=\"(?<currentValue>.*?)\""
],
"depNameTemplate": "gcr.io/kaniko-project/executor",
"datasourceTemplate": "docker"
},
{
"fileMatch": [
"^hardening_manifest.yaml$"
],
"matchStrings": [
"org\\.opencontainers\\.image\\.version:\\s+\"(?<currentValue>.+?)\""
],
"depNameTemplate": "gcr.io/kaniko-project/executor",
"datasourceTemplate": "docker"
},
{
"fileMatch": [
"^hardening_manifest.yaml$"
],
"matchStrings": [
"tags:\\s+-\\s+\"(?<currentValue>.+?)\""
],
"depNameTemplate": "gcr.io/kaniko-project/executor",
"datasourceTemplate": "docker"
}
]
}
{
assignees: ["@sean.melissari"],
extends: ["config:base"],
baseBranches: ["development"],
regexManagers: [
// regex for tool
{
fileMatch: ["^hardening_manifest.yaml$"],
matchStrings: [
'tags:\\s+-\\s+"(?<currentValue>.+?)"',
"tag: .*:(?<currentValue>.*?)$",
'org\\.opencontainers\\.image\\.version:\\s+"(?<currentValue>.+?)"',
"url: docker://.*:(?<currentValue>.+?)@(?<currentDigest>sha256:[a-f0-9]+)",
],
depNameTemplate: "gcr.io/kaniko-project/executor",
datasourceTemplate: "docker",
},
// Base image regex
{
fileMatch: ["^hardening_manifest.yaml$$", "^Dockerfile$"],
matchStrings: [
'BASE_TAG: "(?<currentValue>.*?)"',
"BASE_TAG=(?<currentValue>.*?)$",
],
depNameTemplate: "registry1.dso.mil/ironbank/google/distroless/static",
datasourceTemplate: "docker",
},
],
groupName: "all dependencies",
separateMajorMinor: false,
groupSlug: "all",
packageRules: [
{
matchPackagePatterns: ["*"],
groupName: "all dependencies",
groupSlug: "all",
},
],
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment