Charts CI

```
Updated:
  argo/argo-cd:
    - 6.7.15
  clastix/kamaji:
    - 0.15.3
  jfrog/artifactory-ha:
    - 107.77.10
  jfrog/artifactory-jcr:
    - 107.77.10
  new-relic/nri-bundle:
    - 5.0.74
  speedscale/speedscale-operator:
    - 2.1.270
```
pull/1015/head
github-actions[bot] 2024-04-25 00:55:23 +00:00
parent 07bc7ff6e7
commit aadfcef4ed
35 changed files with 330 additions and 40 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,7 +1,7 @@
annotations:
artifacthub.io/changes: |
- kind: changed
description: Pre-set statusbadge.url value to global.domain value
description: Pre-set statusbadge.url to global.domain when statusbadge is enabled
artifacthub.io/signKey: |
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
@ -33,4 +33,4 @@ name: argo-cd
sources:
- https://github.com/argoproj/argo-helm/tree/main/charts/argo-cd
- https://github.com/argoproj/argo-cd
version: 6.7.14
version: 6.7.15

View File

@ -663,6 +663,7 @@ NAME: my-release
| configs.cm."application.instanceLabelKey" | string | `"argocd.argoproj.io/instance"` | The name of tracking label used by Argo CD for resource pruning |
| configs.cm."exec.enabled" | bool | `false` | Enable exec feature in Argo UI |
| configs.cm."server.rbac.log.enforce.enable" | bool | `false` | Enable logs RBAC enforcement |
| configs.cm."statusbadge.enabled" | bool | `false` | Enable Status Badge |
| configs.cm."timeout.hard.reconciliation" | string | `"0s"` | Timeout to refresh application data as well as target manifests cache |
| configs.cm."timeout.reconciliation" | string | `"180s"` | Timeout to discover if a new manifests version got published to the repository |
| configs.cm.annotations | object | `{}` | Annotations to be added to argocd-cm configmap |

View File

@ -159,12 +159,14 @@ Create the name of the notifications service account to use
{{- end -}}
{{/*
Argo Configuration Preset Values (Incluenced by Values configuration)
Argo Configuration Preset Values (Influenced by Values configuration)
*/}}
{{- define "argo-cd.config.cm.presets" -}}
{{- $presets := dict -}}
{{- $_ := set $presets "url" (printf "https://%s" .Values.global.domain) -}}
{{- if index .Values.configs.cm "statusbadge.enabled" | eq true -}}
{{- $_ := set $presets "statusbadge.url" (printf "https://%s/" .Values.global.domain) -}}
{{- end -}}
{{- if .Values.configs.styles -}}
{{- $_ := set $presets "ui.cssurl" "./custom/custom.styles.css" -}}
{{- end -}}

View File

@ -180,6 +180,10 @@ configs:
# -- Timeout to refresh application data as well as target manifests cache
timeout.hard.reconciliation: 0s
# -- Enable Status Badge
## Ref: https://argo-cd.readthedocs.io/en/stable/user-guide/status-badge/
statusbadge.enabled: false
# Dex configuration
# dex.config: |
# connectors:

View File

@ -4,7 +4,7 @@ annotations:
catalog.cattle.io/kube-version: '>=1.21.0-0'
catalog.cattle.io/release-name: kamaji
apiVersion: v2
appVersion: v0.5.0
appVersion: v0.5.1
description: Kamaji is the Hosted Control Plane Manager for Kubernetes.
home: https://github.com/clastix/kamaji
icon: https://github.com/clastix/kamaji/raw/master/assets/logo-colored.png
@ -22,4 +22,4 @@ name: kamaji
sources:
- https://github.com/clastix/kamaji
type: application
version: 0.15.2
version: 0.15.3

View File

@ -1,6 +1,6 @@
# kamaji
![Version: 0.15.2](https://img.shields.io/badge/Version-0.15.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.5.0](https://img.shields.io/badge/AppVersion-v0.5.0-informational?style=flat-square)
![Version: 0.15.3](https://img.shields.io/badge/Version-0.15.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.5.1](https://img.shields.io/badge/AppVersion-v0.5.1-informational?style=flat-square)
Kamaji is the Hosted Control Plane Manager for Kubernetes.

View File

@ -1,11 +1,12 @@
# JFrog Artifactory-ha Chart Changelog
All changes to this chart will be documented in this file
## [107.77.9] - Feb 20, 2024
## [107.77.10] - April 22, 2024
* Removed integration service
* Added recommended postgresql sizing configurations under sizing directory
* Updated artifactory-federation (probes, port, embedded mode)
* Fixing broken nginx port [GH-1860](https://github.com/jfrog/charts/issues/1860)
* Added nginx.customCommand to use custom commands for the nginx container
## [107.76.0] - Dec 13, 2023
* Added connectionTimeout and socketTimeout paramaters under AWSS3 binarystore section

View File

@ -4,7 +4,7 @@ annotations:
catalog.cattle.io/kube-version: '>= 1.19.0-0'
catalog.cattle.io/release-name: artifactory-ha
apiVersion: v2
appVersion: 7.77.9
appVersion: 7.77.10
dependencies:
- condition: postgresql.enabled
name: postgresql
@ -26,4 +26,4 @@ name: artifactory-ha
sources:
- https://github.com/jfrog/charts
type: application
version: 107.77.9
version: 107.77.10

View File

@ -896,7 +896,9 @@ setupScriptLogsRedirection() {
# Returns Y if this method is run inside a container
isRunningInsideAContainer() {
if [ -f "/.dockerenv" ]; then
local check1=$(grep -sq 'docker\|kubepods' /proc/1/cgroup; echo $?)
local check2=$(grep -sq 'containers' /proc/self/mountinfo; echo $?)
if [[ $check1 == 0 || $check2 == 0 || -f "/.dockerenv" ]]; then
echo -n "$FLAG_Y"
else
echo -n "$FLAG_N"

View File

@ -398,6 +398,16 @@ nginx scheme (http/https)
{{- end -}}
{{- end -}}
{{/*
nginx command
*/}}
{{- define "nginx.command" -}}
{{- if .Values.nginx.customCommand }}
{{ toYaml .Values.nginx.customCommand }}
{{- end }}
{{- end -}}
{{/*
nginx port (8080/8443) based on http/https enabled
*/}}

View File

@ -85,6 +85,10 @@ spec:
imagePullPolicy: {{ .Values.nginx.image.pullPolicy }}
{{- if .Values.nginx.containerSecurityContext.enabled }}
securityContext: {{- omit .Values.nginx.containerSecurityContext "enabled" | toYaml | nindent 10 }}
{{- end }}
{{- if .Values.nginx.customCommand }}
command:
{{- tpl (include "nginx.command" .) . | indent 10 }}
{{- end }}
ports:
{{ if .Values.nginx.customPorts }}

View File

@ -1,7 +1,7 @@
# JFrog Container Registry Chart Changelog
All changes to this chart will be documented in this file.
## [107.77.9] - Nov 23, 2023
## [107.77.10] - Nov 23, 2023
* **IMPORTANT**
* Added min kubeVersion ">= 1.19.0-0" in chart.yaml

View File

@ -4,11 +4,11 @@ annotations:
catalog.cattle.io/kube-version: '>= 1.19.0-0'
catalog.cattle.io/release-name: artifactory-jcr
apiVersion: v2
appVersion: 7.77.9
appVersion: 7.77.10
dependencies:
- name: artifactory
repository: file://./charts/artifactory
version: 107.77.9
version: 107.77.10
description: JFrog Container Registry
home: https://jfrog.com/container-registry/
icon: https://raw.githubusercontent.com/jfrog/charts/ea5c3112c24a973f64f3ccd99747323db292a369/stable/artifactory-jcr/logo/jcr-logo.png
@ -27,4 +27,4 @@ name: artifactory-jcr
sources:
- https://github.com/jfrog/charts
type: application
version: 107.77.9
version: 107.77.10

View File

@ -1,12 +1,13 @@
# JFrog Artifactory Chart Changelog
All changes to this chart will be documented in this file.
## [107.77.9] - Feb 20, 2024
## [107.77.10] - April 22, 2024
* Removed integration service
* Added recommended postgresql sizing configurations under sizing directory
* Updated artifactory-federation (probes, port, embedded mode)
* Fixed - Removed duplicate keys of the sizing yaml file
* Fixing broken nginx port [GH-1860](https://github.com/jfrog/charts/issues/1860)
* Added nginx.customCommand to use custom commands for the nginx container
## [107.76.0] - Dec 13, 2023
* Added connectionTimeout and socketTimeout paramaters under AWSS3 binarystore section

View File

@ -1,5 +1,5 @@
apiVersion: v2
appVersion: 7.77.9
appVersion: 7.77.10
dependencies:
- condition: postgresql.enabled
name: postgresql
@ -21,4 +21,4 @@ name: artifactory
sources:
- https://github.com/jfrog/charts
type: application
version: 107.77.9
version: 107.77.10

View File

@ -896,7 +896,9 @@ setupScriptLogsRedirection() {
# Returns Y if this method is run inside a container
isRunningInsideAContainer() {
if [ -f "/.dockerenv" ]; then
local check1=$(grep -sq 'docker\|kubepods' /proc/1/cgroup; echo $?)
local check2=$(grep -sq 'containers' /proc/self/mountinfo; echo $?)
if [[ $check1 == 0 || $check2 == 0 || -f "/.dockerenv" ]]; then
echo -n "$FLAG_Y"
else
echo -n "$FLAG_N"

View File

@ -368,6 +368,15 @@ nginx scheme (http/https)
{{- end -}}
{{- end -}}
{{/*
nginx command
*/}}
{{- define "nginx.command" -}}
{{- if .Values.nginx.customCommand }}
{{ toYaml .Values.nginx.customCommand }}
{{- end }}
{{- end -}}
{{/*
nginx port (8080/8443) based on http/https enabled
*/}}

View File

@ -88,6 +88,10 @@ spec:
imagePullPolicy: {{ .Values.nginx.image.pullPolicy }}
{{- if .Values.nginx.containerSecurityContext.enabled }}
securityContext: {{- omit .Values.nginx.containerSecurityContext "enabled" | toYaml | nindent 10 }}
{{- end }}
{{- if .Values.nginx.customCommand }}
command:
{{- tpl (include "nginx.command" .) . | indent 10 }}
{{- end }}
ports:
{{ if .Values.nginx.customPorts }}

View File

@ -1,7 +1,7 @@
dependencies:
- name: newrelic-infrastructure
repository: https://newrelic.github.io/nri-kubernetes
version: 3.33.2
version: 3.33.3
- name: nri-prometheus
repository: https://newrelic.github.io/nri-prometheus
version: 2.1.17
@ -19,7 +19,7 @@ dependencies:
version: 5.12.1
- name: nri-kube-events
repository: https://newrelic.github.io/nri-kube-events
version: 3.9.4
version: 3.9.5
- name: newrelic-logging
repository: https://newrelic.github.io/helm-charts
version: 1.21.2
@ -32,5 +32,5 @@ dependencies:
- name: newrelic-infra-operator
repository: https://newrelic.github.io/newrelic-infra-operator
version: 2.10.0
digest: sha256:9021d097f98f30a65409c8496ed09e8e5456a9f11bb30129c29d1021c96ba14d
generated: "2024-04-15T18:49:39.947112549Z"
digest: sha256:0c565318deb31a2ec54376d6ca173c4a2bcd44c3904ad5d9fbe315eabbbceeb2
generated: "2024-04-22T14:27:28.039217268Z"

View File

@ -7,7 +7,7 @@ dependencies:
- condition: infrastructure.enabled,newrelic-infrastructure.enabled
name: newrelic-infrastructure
repository: file://./charts/newrelic-infrastructure
version: 3.33.2
version: 3.33.3
- condition: prometheus.enabled,nri-prometheus.enabled
name: nri-prometheus
repository: file://./charts/nri-prometheus
@ -31,7 +31,7 @@ dependencies:
- condition: kubeEvents.enabled,nri-kube-events.enabled
name: nri-kube-events
repository: file://./charts/nri-kube-events
version: 3.9.4
version: 3.9.5
- condition: logging.enabled,newrelic-logging.enabled
name: newrelic-logging
repository: file://./charts/newrelic-logging
@ -77,4 +77,4 @@ sources:
- https://github.com/newrelic/helm-charts/tree/master/charts/newrelic-logging
- https://github.com/newrelic/helm-charts/tree/master/charts/newrelic-pixie
- https://github.com/newrelic/newrelic-infra-operator/tree/master/charts/newrelic-infra-operator
version: 5.0.73
version: 5.0.74

View File

@ -1,5 +1,5 @@
apiVersion: v2
appVersion: 3.28.2
appVersion: 3.28.3
dependencies:
- name: common-library
repository: https://helm-charts.newrelic.com
@ -23,4 +23,4 @@ sources:
- https://github.com/newrelic/nri-kubernetes/
- https://github.com/newrelic/nri-kubernetes/tree/main/charts/newrelic-infrastructure
- https://github.com/newrelic/infrastructure-agent/
version: 3.33.2
version: 3.33.3

View File

@ -1,5 +1,5 @@
apiVersion: v2
appVersion: 2.9.4
appVersion: 2.9.5
dependencies:
- name: common-library
repository: https://helm-charts.newrelic.com
@ -23,4 +23,4 @@ sources:
- https://github.com/newrelic/nri-kube-events/
- https://github.com/newrelic/nri-kube-events/tree/main/charts/nri-kube-events
- https://github.com/newrelic/infrastructure-agent/
version: 3.9.4
version: 3.9.5

View File

@ -1,6 +1,6 @@
# nri-kube-events
![Version: 3.9.4](https://img.shields.io/badge/Version-3.9.4-informational?style=flat-square) ![AppVersion: 2.9.4](https://img.shields.io/badge/AppVersion-2.9.4-informational?style=flat-square)
![Version: 3.9.5](https://img.shields.io/badge/Version-3.9.5-informational?style=flat-square) ![AppVersion: 2.9.5](https://img.shields.io/badge/AppVersion-2.9.5-informational?style=flat-square)
A Helm chart to deploy the New Relic Kube Events router

View File

@ -4,7 +4,7 @@ annotations:
catalog.cattle.io/kube-version: '>= 1.17.0-0'
catalog.cattle.io/release-name: speedscale-operator
apiVersion: v1
appVersion: 2.1.260
appVersion: 2.1.270
description: Stress test your APIs with real world scenarios. Collect and replay
traffic without scripting.
home: https://speedscale.com
@ -24,4 +24,4 @@ maintainers:
- email: support@speedscale.com
name: Speedscale Support
name: speedscale-operator
version: 2.1.20
version: 2.1.270

View File

@ -101,10 +101,10 @@ _See [helm upgrade](https://helm.sh/docs/helm/helm_upgrade/) for command documen
A major chart version change (like v1.2.3 -> v2.0.0) indicates that there is an
incompatible breaking change needing manual actions.
### Upgrade to 2.1.20
### Upgrade to 2.1.270
```bash
kubectl apply --server-side -f https://raw.githubusercontent.com/speedscale/operator-helm/main/2.1.20/templates/crds/trafficreplays.yaml
kubectl apply --server-side -f https://raw.githubusercontent.com/speedscale/operator-helm/main/2.1.270/templates/crds/trafficreplays.yaml
```
### Upgrade to 1.1.0

View File

@ -101,10 +101,10 @@ _See [helm upgrade](https://helm.sh/docs/helm/helm_upgrade/) for command documen
A major chart version change (like v1.2.3 -> v2.0.0) indicates that there is an
incompatible breaking change needing manual actions.
### Upgrade to 2.1.20
### Upgrade to 2.1.270
```bash
kubectl apply --server-side -f https://raw.githubusercontent.com/speedscale/operator-helm/main/2.1.20/templates/crds/trafficreplays.yaml
kubectl apply --server-side -f https://raw.githubusercontent.com/speedscale/operator-helm/main/2.1.270/templates/crds/trafficreplays.yaml
```
### Upgrade to 1.1.0

View File

@ -20,7 +20,7 @@ clusterName: "my-cluster"
# Speedscale components image settings.
image:
registry: gcr.io/speedscale
tag: v2.1.260
tag: v2.1.270
pullPolicy: Always
# Log level for Speedscale components.

View File

@ -244,7 +244,7 @@ entries:
- annotations:
artifacthub.io/changes: |
- kind: changed
description: Pre-set statusbadge.url value to global.domain value
description: Pre-set statusbadge.url to global.domain when statusbadge is enabled
artifacthub.io/signKey: |
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
@ -255,7 +255,7 @@ entries:
catalog.cattle.io/release-name: argo-cd
apiVersion: v2
appVersion: v2.10.7
created: "2024-04-22T00:53:45.425610394Z"
created: "2024-04-25T00:54:43.508852756Z"
dependencies:
- condition: redis-ha.enabled
name: redis-ha
@ -263,7 +263,46 @@ entries:
version: 4.26.1
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery
tool for Kubernetes.
digest: b7f0d6fa727227cb3ddaf7520680332d62a33ab94f333b496c59ed5610b5d29d
digest: b8f9dda0377b93951705b12176a117d6fca72c8d6726229159b09c122989040e
home: https://github.com/argoproj/argo-helm
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
keywords:
- argoproj
- argocd
- gitops
kubeVersion: '>=1.23.0-0'
maintainers:
- name: argoproj
url: https://argoproj.github.io/
name: argo-cd
sources:
- https://github.com/argoproj/argo-helm/tree/main/charts/argo-cd
- https://github.com/argoproj/argo-cd
urls:
- assets/argo/argo-cd-6.7.15.tgz
version: 6.7.15
- annotations:
artifacthub.io/changes: |
- kind: changed
description: Pre-set statusbadge.url value to global.domain value
artifacthub.io/signKey: |
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
catalog.cattle.io/certified: partner
catalog.cattle.io/display-name: Argo CD
catalog.cattle.io/kube-version: '>=1.23.0-0'
catalog.cattle.io/release-name: argo-cd
apiVersion: v2
appVersion: v2.10.7
created: "2024-04-25T00:54:33.372130431Z"
dependencies:
- condition: redis-ha.enabled
name: redis-ha
repository: file://./charts/redis-ha
version: 4.26.1
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery
tool for Kubernetes.
digest: 0ccc87d75834be3105da69da6500fa9c89990e1295d807672e18fca2c0ea4221
home: https://github.com/argoproj/argo-helm
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
keywords:
@ -4157,6 +4196,39 @@ entries:
- assets/argo/argo-cd-5.8.0.tgz
version: 5.8.0
artifactory-ha:
- annotations:
catalog.cattle.io/certified: partner
catalog.cattle.io/display-name: JFrog Artifactory HA
catalog.cattle.io/kube-version: '>= 1.19.0-0'
catalog.cattle.io/release-name: artifactory-ha
apiVersion: v2
appVersion: 7.77.10
created: "2024-04-25T00:54:45.803147717Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: file://./charts/postgresql
version: 10.3.18
description: Universal Repository Manager supporting all major packaging formats,
build tools and CI servers.
digest: b1da3e4f521dfebba81620a00febfa60a80be76a1048187a60495c2113944620
home: https://www.jfrog.com/artifactory/
icon: https://raw.githubusercontent.com/jfrog/charts/ea5c3112c24a973f64f3ccd99747323db292a369/stable/artifactory-ha/logo/artifactory-logo.png
keywords:
- artifactory
- jfrog
- devops
kubeVersion: '>= 1.19.0-0'
maintainers:
- email: installers@jfrog.com
name: Chart Maintainers at JFrog
name: artifactory-ha
sources:
- https://github.com/jfrog/charts
type: application
urls:
- assets/jfrog/artifactory-ha-107.77.10.tgz
version: 107.77.10
- annotations:
catalog.cattle.io/certified: partner
catalog.cattle.io/display-name: JFrog Artifactory HA
@ -5768,6 +5840,40 @@ entries:
- assets/jfrog/artifactory-ha-3.0.1400.tgz
version: 3.0.1400
artifactory-jcr:
- annotations:
catalog.cattle.io/certified: partner
catalog.cattle.io/display-name: JFrog Container Registry
catalog.cattle.io/kube-version: '>= 1.19.0-0'
catalog.cattle.io/release-name: artifactory-jcr
apiVersion: v2
appVersion: 7.77.10
created: "2024-04-25T00:54:46.19794714Z"
dependencies:
- name: artifactory
repository: file://./charts/artifactory
version: 107.77.10
description: JFrog Container Registry
digest: a3ccee230187749a87b293f56bc5600f277b208793500cb7e4e86f2d6959aab9
home: https://jfrog.com/container-registry/
icon: https://raw.githubusercontent.com/jfrog/charts/ea5c3112c24a973f64f3ccd99747323db292a369/stable/artifactory-jcr/logo/jcr-logo.png
keywords:
- artifactory
- jfrog
- container
- registry
- devops
- jfrog-container-registry
kubeVersion: '>= 1.19.0-0'
maintainers:
- email: helm@jfrog.com
name: Chart Maintainers at JFrog
name: artifactory-jcr
sources:
- https://github.com/jfrog/charts
type: application
urls:
- assets/jfrog/artifactory-jcr-107.77.10.tgz
version: 107.77.10
- annotations:
catalog.cattle.io/certified: partner
catalog.cattle.io/display-name: JFrog Container Registry
@ -30464,6 +30570,35 @@ entries:
- assets/kasten/k10-4.5.900.tgz
version: 4.5.900
kamaji:
- annotations:
catalog.cattle.io/certified: partner
catalog.cattle.io/display-name: Kamaji
catalog.cattle.io/kube-version: '>=1.21.0-0'
catalog.cattle.io/release-name: kamaji
apiVersion: v2
appVersion: v0.5.1
created: "2024-04-25T00:54:44.27219679Z"
description: Kamaji is the Hosted Control Plane Manager for Kubernetes.
digest: c2ae1b3f53e23d6b63dba9fbc2df60e33529a96fb819452e13d4a1ca6b42f057
home: https://github.com/clastix/kamaji
icon: https://github.com/clastix/kamaji/raw/master/assets/logo-colored.png
kubeVersion: '>=1.21.0-0'
maintainers:
- email: dario@tranchitella.eu
name: Dario Tranchitella
url: https://clastix.io
- email: me@maxgio.it
name: Massimiliano Giovagnoli
- email: me@bsctl.io
name: Adriano Pezzuto
url: https://clastix.io
name: kamaji
sources:
- https://github.com/clastix/kamaji
type: application
urls:
- assets/clastix/kamaji-0.15.3.tgz
version: 0.15.3
- annotations:
catalog.cattle.io/certified: partner
catalog.cattle.io/display-name: Kamaji
@ -37721,6 +37856,90 @@ entries:
- assets/f5/nginx-service-mesh-0.2.100.tgz
version: 0.2.100
nri-bundle:
- annotations:
catalog.cattle.io/certified: partner
catalog.cattle.io/display-name: New Relic
catalog.cattle.io/release-name: nri-bundle
apiVersion: v2
created: "2024-04-25T00:54:48.319022223Z"
dependencies:
- condition: infrastructure.enabled,newrelic-infrastructure.enabled
name: newrelic-infrastructure
repository: file://./charts/newrelic-infrastructure
version: 3.33.3
- condition: prometheus.enabled,nri-prometheus.enabled
name: nri-prometheus
repository: file://./charts/nri-prometheus
version: 2.1.17
- condition: newrelic-prometheus-agent.enabled
name: newrelic-prometheus-agent
repository: file://./charts/newrelic-prometheus-agent
version: 1.12.0
- condition: webhook.enabled,nri-metadata-injection.enabled
name: nri-metadata-injection
repository: file://./charts/nri-metadata-injection
version: 4.18.4
- condition: metrics-adapter.enabled,newrelic-k8s-metrics-adapter.enabled
name: newrelic-k8s-metrics-adapter
repository: file://./charts/newrelic-k8s-metrics-adapter
version: 1.10.2
- condition: ksm.enabled,kube-state-metrics.enabled
name: kube-state-metrics
repository: file://./charts/kube-state-metrics
version: 5.12.1
- condition: kubeEvents.enabled,nri-kube-events.enabled
name: nri-kube-events
repository: file://./charts/nri-kube-events
version: 3.9.5
- condition: logging.enabled,newrelic-logging.enabled
name: newrelic-logging
repository: file://./charts/newrelic-logging
version: 1.21.2
- condition: newrelic-pixie.enabled
name: newrelic-pixie
repository: file://./charts/newrelic-pixie
version: 2.1.4
- alias: pixie-chart
condition: pixie-chart.enabled
name: pixie-operator-chart
repository: file://./charts/pixie-operator-chart
version: 0.1.4
- condition: newrelic-infra-operator.enabled
name: newrelic-infra-operator
repository: file://./charts/newrelic-infra-operator
version: 2.10.0
description: Groups together the individual charts for the New Relic Kubernetes
solution for a more comfortable deployment.
digest: c1d855a15fae962a358f33e0b5ed69dba76d0ee056ea4d931dd638312c37151f
home: https://github.com/newrelic/helm-charts
icon: https://newrelic.com/themes/custom/erno/assets/mediakit/new_relic_logo_vertical.svg
keywords:
- infrastructure
- newrelic
- monitoring
maintainers:
- name: juanjjaramillo
url: https://github.com/juanjjaramillo
- name: csongnr
url: https://github.com/csongnr
- name: dbudziwojskiNR
url: https://github.com/dbudziwojskiNR
name: nri-bundle
sources:
- https://github.com/newrelic/nri-bundle/
- https://github.com/newrelic/nri-bundle/tree/master/charts/nri-bundle
- https://github.com/newrelic/nri-kubernetes/tree/master/charts/newrelic-infrastructure
- https://github.com/newrelic/nri-prometheus/tree/master/charts/nri-prometheus
- https://github.com/newrelic/newrelic-prometheus-configurator/tree/master/charts/newrelic-prometheus-agent
- https://github.com/newrelic/k8s-metadata-injection/tree/master/charts/nri-metadata-injection
- https://github.com/newrelic/newrelic-k8s-metrics-adapter/tree/master/charts/newrelic-k8s-metrics-adapter
- https://github.com/newrelic/nri-kube-events/tree/master/charts/nri-kube-events
- https://github.com/newrelic/helm-charts/tree/master/charts/newrelic-logging
- https://github.com/newrelic/helm-charts/tree/master/charts/newrelic-pixie
- https://github.com/newrelic/newrelic-infra-operator/tree/master/charts/newrelic-infra-operator
urls:
- assets/new-relic/nri-bundle-5.0.74.tgz
version: 5.0.74
- annotations:
catalog.cattle.io/certified: partner
catalog.cattle.io/display-name: New Relic
@ -48869,6 +49088,37 @@ entries:
- assets/shipa/shipa-1.4.0.tgz
version: 1.4.0
speedscale-operator:
- annotations:
catalog.cattle.io/certified: partner
catalog.cattle.io/display-name: Speedscale Operator
catalog.cattle.io/kube-version: '>= 1.17.0-0'
catalog.cattle.io/release-name: speedscale-operator
apiVersion: v1
appVersion: 2.1.270
created: "2024-04-25T00:54:49.214348253Z"
description: Stress test your APIs with real world scenarios. Collect and replay
traffic without scripting.
digest: 5f0035d685e09807bef4d4432653aa2319255c7f1c08f417fb6d01a9d41c290a
home: https://speedscale.com
icon: https://raw.githubusercontent.com/speedscale/assets/main/logo/gold_logo_only.png
keywords:
- speedscale
- test
- testing
- regression
- reliability
- load
- replay
- network
- traffic
kubeVersion: '>= 1.17.0-0'
maintainers:
- email: support@speedscale.com
name: Speedscale Support
name: speedscale-operator
urls:
- assets/speedscale/speedscale-operator-2.1.270.tgz
version: 2.1.270
- annotations:
catalog.cattle.io/certified: partner
catalog.cattle.io/display-name: Speedscale Operator