Skip to content
Open
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
6 changes: 3 additions & 3 deletions charts/synthetics-job-manager/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: synthetics-job-manager
description: New Relic Synthetics Containerized Job Manager
type: application
version: 3.0.54
version: 3.0.55
appVersion: release-513
home: https://github.com/orgs/newrelic/teams/proactive-monitoring
maintainers:
Expand Down Expand Up @@ -31,8 +31,8 @@ dependencies:
version: 1.0.34
condition: ping-runtime.enabled
- name: node-api-runtime
version: 1.0.47
version: 1.0.48
condition: node-api-runtime.enabled
- name: node-browser-runtime
version: 2.0.12
version: 2.0.13
condition: node-browser-runtime.enabled
2 changes: 2 additions & 0 deletions charts/synthetics-job-manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ This chart will deploy the New Relic Synthetics Containerized Private Job Manage
|----------------------------------------|------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------|
| `node-api-runtime.parallelism` | Number of node-api-runtime jobs to execute in parallel | `1` |
| `node-api-runtime.completions` | Number of node-api-runtime jobs that you expect to execute per minute (multiplied by the value of `parallelism` above) | `6` |
| `node-api-runtime.schedule` | [Cron](https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/#schedule-syntax) expression for the node-api-runtime CronJob that polls for work | `* * * * *` (every minute) |
| `node-api-runtime.imagePullSecrets` | The name of a Secret object used to pull an image from a specified container registry | |
| `node-api-runtime.nameOverride` | The nameOverride replaces the name of the chart in the Chart.yaml file. | |
| `node-api-runtime.fullnameOverride` | Name override used for your installation in place of the default | |
Expand All @@ -109,6 +110,7 @@ This chart will deploy the New Relic Synthetics Containerized Private Job Manage
|--------------------------------------------|----------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------|
| `node-browser-runtime.parallelism` | Number of node-browser-runtime jobs to execute in parallel | `1` |
| `node-browser-runtime.completions` | Number of node-browser-runtime jobs that you expect to execute per minute (multiplied by the value of `parallelism` above) | `6` |
| `node-browser-runtime.schedule` | [Cron](https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/#schedule-syntax) expression for the node-browser-runtime CronJob that polls for work | `* * * * *` (every minute) |
| `node-browser-runtime.imagePullSecrets` | The name of a Secret object used to pull an image from a specified container registry | |
| `node-browser-runtime.nameOverride` | The nameOverride replaces the name of the chart in the Chart.yaml file. | |
| `node-browser-runtime.fullnameOverride` | Name override used for your installation in place of the default | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: node-api-runtime
description: New Relic Synthetics Api Runtime
type: application
version: 1.0.47
version: 1.0.48
appVersion: 1.2.134
home: https://github.com/orgs/newrelic/teams/proactive-monitoring
maintainers:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
|-----------------------|------------------------------------------------------------------------------------------------------------------------|----------------------------------------|
| `parallelism` | Number of node-api-runtime jobs to execute in parallel | `1` |
| `completions` | Number of node-api-runtime jobs that you expect to execute per minute (multiplied by the value of `parallelism` above) | `6` |
| `schedule` | Cron expression for the CronJob that polls for work ([Kubernetes cron syntax](https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/#schedule-syntax)) | `* * * * *` |
| `imagePullSecrets` | The name of a Secret object used to pull an image from a specified container registry | |
| `nameOverride` | The nameOverride replaces the name of the chart in the Chart.yaml file. | |
| `fullnameOverride` | Name override used for your installation in place of the default | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ metadata:
{{ toYaml . | nindent 4 }}
{{- end }}
spec:
schedule: "* * * * *"
schedule: {{ .Values.schedule | quote }}
concurrencyPolicy: Forbid
jobTemplate:
spec:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ parallelism: 1
# Set this to the maximum number of node-api-runtime jobs you expect to execute per minute (multiplied by the value of `parallelism` above)
completions: 6

# Cron schedule for the Kubernetes CronJob that polls for script_api work (standard cron syntax).
schedule: "* * * * *"

# The number of seconds after job execution to wait before cleaning up a finished job. The default value of 0 cleans up jobs immediately after they finish.
ttlSecondsAfterFinished: 0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: node-browser-runtime
description: New Relic Synthetics Browser Runtime
type: application
version: 2.0.12
version: 2.0.13
appVersion: 3.0.55
home: https://github.com/orgs/newrelic/teams/proactive-monitoring
maintainers:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
|-----------------------|----------------------------------------------------------------------------------------------------------------------------|--------------------------------------------|
| `parallelism` | Number of node-browser-runtime jobs to execute in parallel | `1` |
| `completions` | Number of node-browser-runtime jobs that you expect to execute per minute (multiplied by the value of `parallelism` above) | `6` |
| `schedule` | Cron expression for the CronJob that polls for work ([Kubernetes cron syntax](https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/#schedule-syntax)) | `* * * * *` |
| `imagePullSecrets` | The name of a Secret object used to pull an image from a specified container registry | |
| `nameOverride` | The nameOverride replaces the name of the chart in the Chart.yaml file. | |
| `fullnameOverride` | Name override used for your installation in place of the default | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ metadata:
{{ toYaml . | nindent 4 }}
{{- end }}
spec:
schedule: "* * * * *"
schedule: {{ .Values.schedule | quote }}
concurrencyPolicy: Forbid
jobTemplate:
spec:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ parallelism: 1
# Set this to the maximum number of node-browser-runtime jobs you expect to execute per minute (multiplied by the value of `parallelism` above)
completions: 6

# Cron schedule for the Kubernetes CronJob that polls for browser/script_browser work (standard cron syntax).
schedule: "* * * * *"

# The number of seconds after job execution to wait before cleaning up a finished job. The default value of 0 cleans up jobs immediately after they finish.
ttlSecondsAfterFinished: 0

Expand Down
6 changes: 6 additions & 0 deletions charts/synthetics-job-manager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,9 @@ node-api-runtime:
# Set this to the maximum number of node-api-runtime jobs you expect to execute per minute (multiplied by the value of `parallelism` above)
completions: 6

# Cron schedule for the node-api-runtime CronJob (standard cron syntax).
schedule: "* * * * *"

# The imagePullSecrets stores Docker credentials that are used for accessing a registry.
imagePullSecrets: []

Expand Down Expand Up @@ -315,6 +318,9 @@ node-browser-runtime:
# Set this to the maximum number of node-browser-runtime jobs you expect to execute per minute (multiplied by the value of `parallelism` above)
completions: 6

# Cron schedule for the node-browser-runtime CronJob (standard cron syntax).
schedule: "* * * * *"

# The imagePullSecrets stores Docker credentials that are used for accessing a registry.
imagePullSecrets: []

Expand Down