Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apprise #15

Merged
merged 4 commits into from
Dec 27, 2024
Merged
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
16 changes: 14 additions & 2 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,21 @@
"dependencyDashboard": true,
"labels": ["dependencies"],
"enabledManagers": [
"custom.regex",
"github-actions",
"terraform"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"\\.tfvars$"
],
"matchStrings": [
"\\s*# renovate: datasource=(?<datasource>[a-z-.]+?) depName=(?<depName>[^\\s]+?)(?: (?:packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[^\\s]+?))?(?: extractVersion=(?<extractVersion>[^\\s]+?))?(?: registryUrl=(?<registryUrl>[^\\s]+?))?\\s+[A-Za-z0-9_]+?_(VERSION|version)\\s*:*\\??=\\s*[\"']?(?<currentValue>.+?)[\"']?\\s"
]
}
],
"github-actions": {
"fileMatch": [
"(^|/)(workflow-templates|\\.(?:github|gitea|forgejo)/(?:workflows|actions))/.+\\.ya?ml$",
Expand All @@ -24,11 +36,11 @@
},
"packageRules": [
{
"matchManagers": ["github-actions", "terraform"],
"matchManagers": ["custom.regex", "github-actions", "terraform"],
"separateMinorPatch": true
},
{
"matchManagers": ["github-actions", "terraform"],
"matchManagers": ["custom.regex", "github-actions", "terraform"],
"matchUpdateTypes": ["patch"],
"automerge": true
}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Renovate
# on: workflow_dispatch
on:
workflow_dispatch:
schedule:
# The "*" (#42, asterisk) character has special semantics in YAML, so this
# string has to be quoted.
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ source: https://github.com/mrsauravsahu/kube-homelab/tree/main

| Name | Source | Version |
|------|--------|---------|
| <a name="module_apprise"></a> [apprise](#module\_apprise) | ../terraformmodules/apprise/ | n/a |
| <a name="module_cert_manager_cloudflare"></a> [cert\_manager\_cloudflare](#module\_cert\_manager\_cloudflare) | [email protected]:steled/terraformmodules.git//cert-manager_cloudflare | v0.6 |
| <a name="module_hashicorp_vault"></a> [hashicorp\_vault](#module\_hashicorp\_vault) | [email protected]:steled/terraformmodules.git//hashicorp-vault | v0.6 |
| <a name="module_hassio"></a> [hassio](#module\_hassio) | [email protected]:steled/terraformmodules.git//hassio | v0.5 |
Expand Down
13 changes: 13 additions & 0 deletions apprise.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module "apprise" {
# source = "[email protected]:steled/terraformmodules.git//authentik?ref=v0.5"
source = "../terraformmodules/apprise/"

# renovate: datasource=docker depName=apprise packageName=caronc/apprise
apprise_version = "1.1.4" # check version here: https://registry.hub.docker.com/r/caronc/apprise/tags
kubernetes_namespace_name = "apprise"
apprise_api_htpasswd_secret = var.apprise_api_htpasswd_secret
environment = var.apprise_env_prd
domain = var.apprise_domain

depends_on = [module.cert_manager_cloudflare]
}