Skip to content

Commit

Permalink
Merge pull request #346 from mend/Gabriel-Ladzaretti-patch-1
Browse files Browse the repository at this point in the history
chore(helm): Update values.yaml
  • Loading branch information
Gabriel-Ladzaretti authored Oct 4, 2023
2 parents 8f9f19e + 7143246 commit 9bfb8be
Showing 1 changed file with 36 additions and 21 deletions.
57 changes: 36 additions & 21 deletions helm-charts/whitesource-renovate/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
image:
repository: whitesource/renovate
tag: 5.1.0
repository: ghcr.io/mend/renovate-ce
tag: 6.1.0-full
pullPolicy: IfNotPresent

nameOverride: ""
Expand All @@ -13,49 +13,64 @@ renovate:
# You must accept the Mend Terms of Service to use the image.
# Please read https://www.mend.io/terms-of-service/
# Set this value to 'y' to consent.
acceptWhiteSourceTos:
mendRnvAcceptTos:

# Set this to the key you received by email.
# You can request a license key by submitting the form at https://www.mend.io/renovate-community/.
# Please allow up to 24 hours to receive your license key by email.
licenseKey:
mendRnvLicenseKey:

# Which platform Mend Renovate will connect to. For example "github" or "gitlab"
renovatePlatform:
mendRnvPlatform:

# API endpoint, include trailing slash. Examples: https://api.github.com/, https://gitlab.com/api/v4/
renovateEndpoint:
mendRnvEndpoint:

# Personal Access Token for bot account (GitLab only)
renovateToken:
mendRnvGitlabPat:

# The GitHub App ID provided when you provisioned the Mend Renovate app. Force string format by quoting value.
githubAppId:
# The GitHub App ID provided when you provisioned the Mend Renovate app. Force string format by quoting value.
mendRnvGithubAppId:

# A string representation of the private key provided by GitHub Enterprise when you provisioned Mend Renovate
githubAppKey:
mendRnvGithubAppKey:

# Personal Access Token for github.com (used for retrieving changelogs)
githubComToken:
# Optional: Provide a path to persist the SQLite database (eg. '/db/renovate-ce.sqlite', where 'db' is defined as a volume)
mendRnvSqliteFilePath:

# Optional: Set User Agent Mend Renovate-ce will use to query the registries, Defaults to 'mend-renovate'
mendRnvUserAgent:

# Optional: Set to 'true' to enable Admin APIs. Defaults to 'false'.
mendRnvAdminApiEnabled:

# Required if Admin APIs are enabled.
mendRnvServerApiSecret:

# Optional, defaults to 'renovate'
webhookSecret:
mendRnvWebhookSecret:

# Personal Access Token for github.com (used for retrieving changelogs)
githubComToken:

# PIP index url to get packages from. Will be mounted as a secret
pipIndexUrl:

# Existing secret with secret values with the following keys:
# licenseKey:
# renovateToken:
# githubAppId:
# githubAppKey:
# mendRnvLicenseKey:
# mendRnvGitlabPat:
# mendRnvGithubAppId:
# mendRnvGithubAppKey:
# mendRnvWebhookSecret:
# githubComToken:
# webhookSecret:
# pipIndexUrl:
existingSecret:

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

# Optional, defaults to '0 0,4,8,12,16,20 * * *' (every 4 hours)
mendRnvCronAppSync:

# Self hosted renovate configuration file, will be mounted as a config map
config: |
Expand Down Expand Up @@ -146,7 +161,7 @@ terminationGracePeriodSeconds: 60
livenessProbe:
initialDelaySeconds: 60
httpGet:
path: /
path: /health
port: http
periodSeconds: 10
timeoutSeconds: 1
Expand All @@ -155,7 +170,7 @@ livenessProbe:

readinessProbe:
httpGet:
path: /
path: /health
port: http
periodSeconds: 10
timeoutSeconds: 1
Expand Down

0 comments on commit 9bfb8be

Please sign in to comment.