this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fixing up parsing failures.

+30 -34
+8 -6
.github/renovate.json5
··· 39 39 }, 40 40 "regexManagers": [ 41 41 { 42 - "description": "Process various dependencies", 42 + "description": "Process custom dependencies", 43 43 "fileMatch": [ 44 44 "ansible/.+\\.ya?ml$", 45 45 "cluster/.+\\.ya?ml$" ··· 51 51 "versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}" 52 52 }, 53 53 { 54 - "description": "Process raw GitHub URLs", 55 - "fileMatch": ["cluster/.+\\.ya?ml$"], 54 + "description": "Process imageName values", 55 + "fileMatch": [ 56 + "cluster/.+\\.ya?ml$" 57 + ], 56 58 "matchStrings": [ 57 - "https:\\/\\/raw.githubusercontent.com\\/(?<depName>[\\w\\d\\-_]+\\/[\\w\\d\\-_]+)\\/(?<currentValue>[\\w\\d\\.\\-_]+)\\/.*" 59 + "imageName: (?<depName>\\S+):(?<currentValue>.*\\-.*)" 58 60 ], 59 - "datasourceTemplate": "github-releases", 60 - "versioningTemplate": "semver" 61 + "datasourceTemplate": "docker", 62 + "versioningTemplate": "redhat" 61 63 } 62 64 ] 63 65 }
+1 -1
.github/renovate/looseVersioning.json5
··· 5 5 "description": "Loose versioning for non-semver packages", 6 6 "matchDatasources": ["docker"], 7 7 "versioning": "loose", 8 - "matchPackagePatterns": ["changedetection", "qbittorrent"] 8 + "matchPackagePatterns": ["changedetection", "plex", "qbittorrent"] 9 9 }] 10 10 }
-6
cluster/flux/add-ons/notifications/forego/kustomization.yaml
··· 1 - --- 2 - apiVersion: kustomize.config.k8s.io/v1beta1 3 - kind: Kustomization 4 - namespace: flux-system 5 - resources: 6 - - notify.yaml
cluster/flux/add-ons/notifications/forego/notify.yaml

This is a binary file and will not be displayed.

+2 -2
cluster/flux/add-ons/notifications/kustomization.yaml
··· 3 3 kind: Kustomization 4 4 namespace: flux-system 5 5 resources: 6 - - forego 7 - # - github 6 + # - forego 7 + - github
+1
cluster/flux/repositories/git/kustomization.yaml
··· 3 3 kind: Kustomization 4 4 resources: 5 5 - flux-system-private-ssh.sops.yaml 6 + - private-git-repo.yaml 6 7 - private-cluster.yaml
-19
cluster/flux/repositories/git/private-cluster.yaml
··· 1 - --- 2 - apiVersion: source.toolkit.fluxcd.io/v1 3 - kind: GitRepository 4 - metadata: 5 - name: private-cluster 6 - namespace: flux-system 7 - spec: 8 - interval: 30m 9 - url: ssh://git@git.skym.fi/kryptonian/k3s-cluster 10 - secretRef: 11 - name: private-cluster-ssh-credentials 12 - ref: 13 - branch: main 14 - ignore: | 15 - # exclude all 16 - /* 17 - # include cluster directory 18 - !/cluster 19 - 20 1 --- 21 2 apiVersion: kustomize.toolkit.fluxcd.io/v1beta2 22 3 kind: Kustomization
+18
cluster/flux/repositories/git/private-git-repo.yaml
··· 1 + --- 2 + apiVersion: source.toolkit.fluxcd.io/v1 3 + kind: GitRepository 4 + metadata: 5 + name: private-cluster 6 + namespace: flux-system 7 + spec: 8 + interval: 30m 9 + url: ssh://git@git.skym.fi/kryptonian/k3s-cluster 10 + secretRef: 11 + name: private-cluster-ssh-credentials 12 + ref: 13 + branch: main 14 + ignore: | 15 + # exclude all 16 + /* 17 + # include cluster directory 18 + !/cluster