UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 41cef0b8 authored by Micah Nagel's avatar Micah Nagel :moneybag:
Browse files

Merge branch 'renovate_addition' into 'main'

Adding initial renovate configuration

See merge request !11
parents 7401dbab ea49a00d
No related branches found
No related tags found
1 merge request!11Adding initial renovate configuration
Pipeline #1591983 passed
......@@ -2,6 +2,10 @@
Format: [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
## [32.71.3-bb.0] - 2022-06-09
## [32.38.0-bb.1] - 2023-03-22
### Added
- Added `renovate.json` configuration to project root for renovate updates
- Initial renovate release
\ No newline at end of file
## [32.38.0-bb.0] - 2022-06-09
### Added
- Initial renovate release
# renovate
![Version: 32.38.0-bb.0](https://img.shields.io/badge/Version-32.38.0--bb.0-informational?style=flat-square) ![AppVersion: 32.38.0](https://img.shields.io/badge/AppVersion-32.38.0-informational?style=flat-square)
![Version: 32.38.0-bb.1](https://img.shields.io/badge/Version-32.38.0--bb.1-informational?style=flat-square) ![AppVersion: 32.38.0](https://img.shields.io/badge/AppVersion-32.38.0-informational?style=flat-square)
Universal dependency update tool that fits into your workflows.
......@@ -53,7 +53,7 @@ helm install renovate chart/
| image.pullPolicy | string | `"IfNotPresent"` | |
| imagePullSecrets[0].name | string | `"private-registry"` | |
| renovate.existingConfigFile | string | `""` | Custom exiting global renovate config |
| renovate.config | string | `""` | Inline global renovate config.json |
| renovate.config | string | `"{}"` | Inline global renovate config.json |
| ssh_config.enabled | bool | `false` | |
| ssh_config.id_rsa | string | `""` | |
| ssh_config.id_rsa_pub | string | `""` | |
......@@ -75,7 +75,7 @@ helm install renovate chart/
| redis.architecture | string | `"standalone"` | Disable replication by default |
| redis.auth.enabled | bool | `false` | Don't require a password by default |
| redis.kubeVersion | string | `""` | Override Kubernetes version for redis chart |
| apiVersionOverrides.cronjob | string | `""` | String to override apiVersion of cronjob rendered by this helm chart |
| apiVersionOverrides.cronjob | string | `"batch/v1"` | String to override apiVersion of cronjob rendered by this helm chart |
| domain | string | `"bigbang.dev"` | Big Bang Values |
| istio.enabled | bool | `false` | |
| istio.mtls.mode | string | `"PERMISSIVE"` | STRICT = Allow only mutual TLS traffic, PERMISSIVE = Allow both plain text and mutual TLS traffic PERMISSIVE is required for any action which redeploys pods because STRICT interferes with initContainers Can be changed to STRICT after all initContainers have finished but will interfere with upgrades/pod deployments that have initContainers |
......
......@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: '32.38.0'
description: Universal dependency update tool that fits into your workflows.
name: renovate
version: '32.38.0-bb.0'
version: '32.38.0-bb.1'
icon: https://docs.renovatebot.com/assets/images/logo.png
home: https://github.com/renovatebot/renovate
keywords:
......
{
"baseBranches": ["main"],
"configWarningReuseIssue": false,
"dependencyDashboard": true,
"dependencyDashboardHeader": "- [ ] Update Helm chart from upstream to match new version.",
"dependencyDashboardTitle": "Renovate: Upgrade Renovate Images",
"draftPR": true,
"enabledManagers": ["helm-values","regex"],
"ignorePaths": ["chart/charts/**"],
"labels": ["renovate"],
"commitMessagePrefix": "SKIP UPDATE CHECK",
"packageRules": [
{
"matchDatasources": ["docker"],
"groupName": "Ironbank",
"registryUrls": ["https://registry1.dso.mil"]
}
],
"regexManagers": [
{
"fileMatch": ["^chart/values\\.yaml$"],
"matchStrings": [
"image:\\s+repository:\\s+[^/]+/(?<depName>.+)\\s+tag:\\s+(?<currentValue>.+)"
],
"datasourceTemplate": "docker"
},
{
"fileMatch": ["^chart/Chart\\.yaml$"],
"matchStrings": [
"appVersion:\\s+(?<currentValue>.+)",
"- Renovate:\\s+(?<currentValue>.+)",
"image:[^\\S\\r\\n]+(?<depName>.+):(?<currentValue>.+)"
],
"depNameTemplate": "registry1.dso.mil/ironbank/container-hardening-tools/renovate/renovate",
"datasourceTemplate": "docker"
}
],
"separateMajorMinor": false
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment