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

feat: bump CE and EE charts to 8.0.0 #558

Merged
merged 1 commit into from
Aug 14, 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
4 changes: 2 additions & 2 deletions helm-charts/mend-renovate-ce/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: mend-renovate-ce
version: 8.0.0-beta
appVersion: 8.0.0-beta
version: 8.0.0
appVersion: 8.0.0
description: Mend Renovate Community Edition
home: https://github.com/mend/renovate-ce-ee
sources:
Expand Down
10 changes: 7 additions & 3 deletions helm-charts/mend-renovate-ce/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@ spec:
key: mendRnvWebhookSecret
optional: true
{{- end }}
{{- if .Values.renovate.mendRnvCronJobScheduler }}
- name: MEND_RNV_CRON_JOB_SCHEDULER
value: {{ .Values.renovate.mendRnvCronJobScheduler | quote }}
{{- if .Values.renovate.mendRnvCronJobSchedulerAll }}
- name: MEND_RNV_CRON_JOB_SCHEDULER_ALL
value: {{ .Values.renovate.mendRnvCronJobSchedulerAll | quote }}
{{- end }}
{{- if .Values.renovate.mendRnvCronAppSync }}
- name: MEND_RNV_CRON_APP_SYNC
Expand Down Expand Up @@ -248,6 +248,10 @@ spec:
- name: MEND_RNV_LOG_HISTORY_CLEANUP_CRON
value: {{ .Values.renovate.mendRnvLogHistoryCleanupCron }}
{{- end }}
{{- if .Values.renovate.mendRnvForksProcessing }}
- name: MEND_RENOVATE_FORKS_PROCESSING
value: {{ .Values.renovate.mendRnvForksProcessing }}
{{- end }}
{{- if .Values.renovate.mendRnvWorkerExecutionTimeout }}
- name: MEND_RNV_WORKER_EXECUTION_TIMEOUT
value: {{ .Values.renovate.mendRnvWorkerExecutionTimeout | quote }}
Expand Down
7 changes: 5 additions & 2 deletions helm-charts/mend-renovate-ce/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
image:
repository: ghcr.io/mend/renovate-ce
tag: 8.0.0-beta-full
tag: 8.0.0-full
pullPolicy: IfNotPresent

nameOverride: ""
Expand Down Expand Up @@ -88,7 +88,7 @@ renovate:
existingSecret:

# Optional, defaults to '0 * * * *' (hourly)
mendRnvCronJobScheduler:
mendRnvCronJobSchedulerAll:

# Optional, defaults to '0 0,4,8,12,16,20 * * *' (every 4 hours)
mendRnvCronAppSync:
Expand Down Expand Up @@ -126,6 +126,9 @@ renovate:
# It deletes any log file that exceeds the `mendRnvLogHistoryTTLDays` value.
mendRnvLogHistoryCleanupCron:

# Optional. valid values: 'disabled', 'enabled', 'managed' and default to unset (see documentation)
mendRnvForksProcessing:

# Optional: Sets the maximum execution duration of a Renovate CLI scan in minutes. Defaults to 60.
mendRnvWorkerExecutionTimeout:

Expand Down
4 changes: 2 additions & 2 deletions helm-charts/mend-renovate-ee/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: mend-renovate-enterprise-edition
version: 1.6.4
appVersion: 7.6.1
version: 2.0.0
appVersion: 8.0.0
description: Mend Renovate Enterprise Edition
home: https://github.com/mend/renovate-ce-ee
sources:
Expand Down
26 changes: 23 additions & 3 deletions helm-charts/mend-renovate-ee/templates/server-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,21 @@ spec:
key: mendRnvWebhookSecret
optional: true
{{- end }}
{{- if .Values.renovateServer.mendRnvCronJobScheduler }}
- name: MEND_RNV_CRON_JOB_SCHEDULER
value: {{ .Values.renovateServer.mendRnvCronJobScheduler | quote }}
{{- if .Values.renovateServer.mendRnvCronJobSchedulerHot }}
- name: MEND_RNV_CRON_JOB_SCHEDULER_HOT
value: {{ .Values.renovateServer.mendRnvCronJobSchedulerHot | quote }}
{{- end }}
{{- if .Values.renovateServer.mendRnvCronJobSchedulerCold }}
- name: MEND_RNV_CRON_JOB_SCHEDULER_COLD
value: {{ .Values.renovateServer.mendRnvCronJobSchedulerCold | quote }}
{{- end }}
{{- if .Values.renovateServer.mendRnvCronJobSchedulerCapped }}
- name: MEND_RNV_CRON_JOB_SCHEDULER_CAPPED
value: {{ .Values.renovateServer.mendRnvCronJobSchedulerCapped | quote }}
{{- end }}
{{- if .Values.renovateServer.mendRnvCronJobSchedulerAll }}
- name: MEND_RNV_CRON_JOB_SCHEDULER_ALL
value: {{ .Values.renovateServer.mendRnvCronJobSchedulerAll | quote }}
{{- end }}
{{- if .Values.renovateServer.mendRnvCronAppSync }}
- name: MEND_RNV_CRON_APP_SYNC
Expand All @@ -177,6 +189,10 @@ spec:
- name: MEND_RNV_MC_TOKEN
value: {{ .Values.renovateServer.mendRnvMergeConfidenceToken | quote }}
{{- end }}
{{- if .Values.renovateServer.mendRnvMergeConfidenceEndpoint }}
- name: MEND_RNV_MERGE_CONFIDENCE_ENDPOINT
value: {{ .Values.renovateServer.mendRnvMergeConfidenceEndpoint | quote }}
{{- end }}
{{- if .Values.renovateServer.mendRnvReportingEnabled }}
- name: MEND_RNV_REPORTING_ENABLED
value: {{ .Values.renovateServer.mendRnvReportingEnabled | quote }}
Expand Down Expand Up @@ -209,6 +225,10 @@ spec:
- name: MEND_RNV_LOG_HISTORY_CLEANUP_CRON
value: {{ .Values.renovateServer.mendRnvLogHistoryCleanupCron }}
{{- end }}
{{- if .Values.renovateServer.mendRnvForksProcessing }}
- name: MEND_RENOVATE_FORKS_PROCESSING
value: {{ .Values.renovateServer.mendRnvForksProcessing }}
{{- end }}
{{- if .Values.renovateServer.logLevel }}
- name: LOG_LEVEL
value: {{ .Values.renovateServer.logLevel | quote }}
Expand Down
21 changes: 18 additions & 3 deletions helm-charts/mend-renovate-ee/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ postgresql:
renovateServer:
image:
repository: ghcr.io/mend/renovate-ee-server
tag: 7.6.1
tag: 8.0.0
pullPolicy: IfNotPresent

# Number of renovate-ee-server (for SQLite only 1 replica is allowed)
Expand Down Expand Up @@ -97,7 +97,16 @@ renovateServer:
existingSecret:

# Optional, defaults to '0 * * * *' (hourly)
mendRnvCronJobScheduler:
mendRnvCronJobSchedulerHot:

# Optional, defaults to '10 0 * * *' daily at 00:10
mendRnvCronJobSchedulerCold:

# Optional, defaults to '20 0 * * 0' weekly at 00:20
mendRnvCronJobSchedulerCapped:

# Optional, defaults to '30 0 1 * *' monthly at 00:30
mendRnvCronJobSchedulerAll:

# Optional, defaults to '0 0,4,8,12,16,20 * * *' (every 4 hours)
mendRnvCronAppSync:
Expand All @@ -109,6 +118,9 @@ renovateServer:
# GitHub users only: can be set to 'batch'
mendRnvSyncMode:

# Optional: defines the endpoint used to retrieve Merge Confidence data by querying this API.
mendRnvMergeConfidenceEndpoint:

# Optional: Set to 'auto' to enable automatic token generation. Defaults to off
mendRnvMergeConfidenceToken:

Expand Down Expand Up @@ -136,6 +148,9 @@ renovateServer:
# It deletes any log file that exceeds the `mendRnvLogHistoryTTLDays` value.
mendRnvLogHistoryCleanupCron:

# Optional. valid values: 'disabled', 'enabled', 'managed' and default to unset (see documentation)
mendRnvForksProcessing:

# Set log level, defaults to 'info'. Allowed values: fatal, error, warn, info, debug, trace
logLevel: info
# Set log format, defaults to pretty format. Allowed values: undefined or 'json'
Expand Down Expand Up @@ -214,7 +229,7 @@ renovateServer:
renovateWorker:
image:
repository: ghcr.io/mend/renovate-ee-worker
tag: 7.6.1-full
tag: 8.0.0-full
pullPolicy: IfNotPresent

# Optional: Sets the maximum execution duration of a Renovate CLI scan in minutes. Defaults to 60.
Expand Down
Loading