renovate: automerge renovate fix

This commit is contained in:
Vivian 2022-05-20 11:13:11 +02:00
parent 80344a8f44
commit b0aa339082

View file

@ -5,18 +5,18 @@ metadata:
name: renovate-infrastructure name: renovate-infrastructure
namespace: gitops namespace: gitops
spec: spec:
schedule: '@hourly' schedule: "@hourly"
concurrencyPolicy: Forbid concurrencyPolicy: Forbid
jobTemplate: jobTemplate:
spec: spec:
template: template:
spec: spec:
volumes: volumes:
- name: config-volume - name: config-volume
configMap: configMap:
name: renovate-config name: renovate-config
- name: work-volume - name: work-volume
emptyDir: {} emptyDir: {}
containers: containers:
- name: renovate - name: renovate
image: renovate/renovate:32.64 image: renovate/renovate:32.64
@ -29,17 +29,17 @@ spec:
- name: LOG_LEVEL - name: LOG_LEVEL
value: debug value: debug
- name: RENOVATE_ENDPOINT - name: RENOVATE_ENDPOINT
value: 'https://git.0x76.dev/api/v1/' value: "https://git.0x76.dev/api/v1/"
- name: RENOVATE_PLATFORM - name: RENOVATE_PLATFORM
value: gitea value: gitea
- name: RENOVATE_AUTODISCOVER - name: RENOVATE_AUTODISCOVER
value: 'false' value: "false"
- name: RENOVATE_GIT_AUTHOR - name: RENOVATE_GIT_AUTHOR
value: 'Renovate Bot <renovate@xirion.net>' value: "Renovate Bot <renovate@xirion.net>"
- name: RENOVATE_CONFIG_FILE - name: RENOVATE_CONFIG_FILE
value: '/opt/renovate/config.json' value: "/opt/renovate/config.json"
- name: RENOVATE_BASE_DIR - name: RENOVATE_BASE_DIR
value: '/tmp/renovate' value: "/tmp/renovate"
envFrom: envFrom:
- secretRef: - secretRef:
name: renovate name: renovate
@ -65,10 +65,12 @@ data:
"fileMatch": ["flux/.+\\.yaml$"] "fileMatch": ["flux/.+\\.yaml$"]
}, },
"packageRules": [ "packageRules": [
"automerge": true, {
"automergeType": "branch", "automerge": true,
"matchPackageNames": [ "automergeType": "branch",
"renovate/renovate" "matchPackageNames": [
] "renovate/renovate"
]
}
] ]
} }