* feat(cert-manager): add Cert-Manager configuration App * eof * pre-commit cleanup * add temp crds folder * patch mistake * restructure * add route53 support * add some fails * fixes and add route53 to GUI * end * add experimental HTTP01 support * fix bug * add buypass acme to dropdown * add akamai support * add Digitalocean * add rfc2136 support * fix some issues and add self-signed issuer * add metrics and fix selfsigned * whoops * Add CA certificate system * whoops * benc stuff * actually load CA * fix * fix ca * bool -> boolean * also test CA * wait for pod to be ready * sleep more agressively on cert-Manger itself * some more fixes * whoops * fix mistakes * all waits test * add cmctl * increase scope for now and some fixes * simplify * dont wait on non-existing pods * make it non-failing * fix typo
24 lines
501 B
JavaScript
24 lines
501 B
JavaScript
module.exports = {
|
|
dryRun: false,
|
|
username: "truecharts-admin",
|
|
gitAuthor: "truecharts-admin <bot@truecharts.org>",
|
|
onboarding: false,
|
|
platform: "github",
|
|
repositories: ["truecharts/charts"],
|
|
packageRules: [
|
|
{
|
|
description: "lockFileMaintenance",
|
|
matchUpdateTypes: [
|
|
"pin",
|
|
"digest",
|
|
"patch",
|
|
"minor",
|
|
"major",
|
|
"lockFileMaintenance",
|
|
],
|
|
dependencyDashboardApproval: false,
|
|
stabilityDays: 0,
|
|
},
|
|
],
|
|
};
|