commit
754025247e
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.
Binary file not shown.
Binary file not shown.
|
@ -38,4 +38,4 @@ maintainers:
|
||||||
name: postgresql
|
name: postgresql
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/bitnami/charts/tree/main/bitnami/postgresql
|
- https://github.com/bitnami/charts/tree/main/bitnami/postgresql
|
||||||
version: 13.2.15
|
version: 13.2.16
|
||||||
|
|
|
@ -466,6 +466,7 @@ kubectl delete pvc -l release=my-release
|
||||||
| `metrics.image.digest` | PostgreSQL image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag | `""` |
|
| `metrics.image.digest` | PostgreSQL image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag | `""` |
|
||||||
| `metrics.image.pullPolicy` | PostgreSQL Prometheus Exporter image pull policy | `IfNotPresent` |
|
| `metrics.image.pullPolicy` | PostgreSQL Prometheus Exporter image pull policy | `IfNotPresent` |
|
||||||
| `metrics.image.pullSecrets` | Specify image pull secrets | `[]` |
|
| `metrics.image.pullSecrets` | Specify image pull secrets | `[]` |
|
||||||
|
| `metrics.collectors` | Control enabled collectors | `{}` |
|
||||||
| `metrics.customMetrics` | Define additional custom metrics | `{}` |
|
| `metrics.customMetrics` | Define additional custom metrics | `{}` |
|
||||||
| `metrics.extraEnvVars` | Extra environment variables to add to PostgreSQL Prometheus exporter | `[]` |
|
| `metrics.extraEnvVars` | Extra environment variables to add to PostgreSQL Prometheus exporter | `[]` |
|
||||||
| `metrics.containerSecurityContext.enabled` | Enabled containers' Security Context | `true` |
|
| `metrics.containerSecurityContext.enabled` | Enabled containers' Security Context | `true` |
|
||||||
|
|
|
@ -16,7 +16,7 @@ metadata:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
data:
|
data:
|
||||||
{{- if .Values.primary.configuration }}
|
{{- if .Values.primary.configuration }}
|
||||||
postgresql.conf: |-
|
postgresql.conf: |
|
||||||
{{- include "common.tplvalues.render" ( dict "value" .Values.primary.configuration "context" $ ) | nindent 4 }}
|
{{- include "common.tplvalues.render" ( dict "value" .Values.primary.configuration "context" $ ) | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.primary.pgHbaConfiguration }}
|
{{- if .Values.primary.pgHbaConfiguration }}
|
||||||
|
|
|
@ -495,8 +495,15 @@ spec:
|
||||||
{{- if .Values.diagnosticMode.enabled }}
|
{{- if .Values.diagnosticMode.enabled }}
|
||||||
command: {{- include "common.tplvalues.render" (dict "value" .Values.diagnosticMode.command "context" $) | nindent 12 }}
|
command: {{- include "common.tplvalues.render" (dict "value" .Values.diagnosticMode.command "context" $) | nindent 12 }}
|
||||||
args: {{- include "common.tplvalues.render" (dict "value" .Values.diagnosticMode.args "context" $) | nindent 12 }}
|
args: {{- include "common.tplvalues.render" (dict "value" .Values.diagnosticMode.args "context" $) | nindent 12 }}
|
||||||
{{- else if .Values.metrics.customMetrics }}
|
{{- else if or .Values.metrics.customMetrics .Values.metrics.collectors }}
|
||||||
args: ["--extend.query-path", "/conf/custom-metrics.yaml"]
|
args:
|
||||||
|
{{- if .Values.metrics.customMetrics }}
|
||||||
|
- --extend.query-path
|
||||||
|
- /conf/custom-metrics.yaml
|
||||||
|
{{- end }}
|
||||||
|
{{- range $name, $enabled := .Values.metrics.collectors }}
|
||||||
|
- --{{ if not $enabled }}no-{{ end }}collector.{{ $name }}
|
||||||
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
env:
|
env:
|
||||||
{{- $database := required "In order to enable metrics you need to specify a database (.Values.auth.database or .Values.global.postgresql.auth.database)" (include "postgresql.v1.database" .) }}
|
{{- $database := required "In order to enable metrics you need to specify a database (.Values.auth.database or .Values.global.postgresql.auth.database)" (include "postgresql.v1.database" .) }}
|
||||||
|
|
|
@ -1412,8 +1412,14 @@ metrics:
|
||||||
## - myRegistryKeySecretName
|
## - myRegistryKeySecretName
|
||||||
##
|
##
|
||||||
pullSecrets: []
|
pullSecrets: []
|
||||||
|
## @param metrics.collectors Control enabled collectors
|
||||||
|
## ref: https://github.com/prometheus-community/postgres_exporter#flags
|
||||||
|
## Example:
|
||||||
|
## collectors:
|
||||||
|
## wal: false
|
||||||
|
collectors: {}
|
||||||
## @param metrics.customMetrics Define additional custom metrics
|
## @param metrics.customMetrics Define additional custom metrics
|
||||||
## ref: https://github.com/wrouesnel/postgres_exporter#adding-new-metrics-via-a-config-file
|
## ref: https://github.com/prometheus-community/postgres_exporter#adding-new-metrics-via-a-config-file-deprecated
|
||||||
## customMetrics:
|
## customMetrics:
|
||||||
## pg_database:
|
## pg_database:
|
||||||
## query: "SELECT d.datname AS name, CASE WHEN pg_catalog.has_database_privilege(d.datname, 'CONNECT') THEN pg_catalog.pg_database_size(d.datname) ELSE 0 END AS size_bytes FROM pg_catalog.pg_database d where datname not in ('template0', 'template1', 'postgres')"
|
## query: "SELECT d.datname AS name, CASE WHEN pg_catalog.has_database_privilege(d.datname, 'CONNECT') THEN pg_catalog.pg_database_size(d.datname) ELSE 0 END AS size_bytes FROM pg_catalog.pg_database d where datname not in ('template0', 'template1', 'postgres')"
|
||||||
|
@ -1427,7 +1433,7 @@ metrics:
|
||||||
##
|
##
|
||||||
customMetrics: {}
|
customMetrics: {}
|
||||||
## @param metrics.extraEnvVars Extra environment variables to add to PostgreSQL Prometheus exporter
|
## @param metrics.extraEnvVars Extra environment variables to add to PostgreSQL Prometheus exporter
|
||||||
## see: https://github.com/wrouesnel/postgres_exporter#environment-variables
|
## see: https://github.com/prometheus-community/postgres_exporter#environment-variables
|
||||||
## For example:
|
## For example:
|
||||||
## extraEnvVars:
|
## extraEnvVars:
|
||||||
## - name: PG_EXPORTER_DISABLE_DEFAULT_METRICS
|
## - name: PG_EXPORTER_DISABLE_DEFAULT_METRICS
|
||||||
|
|
|
@ -10,7 +10,7 @@ annotations:
|
||||||
- name: os-shell
|
- name: os-shell
|
||||||
image: docker.io/bitnami/os-shell:11-debian-11-r91
|
image: docker.io/bitnami/os-shell:11-debian-11-r91
|
||||||
- name: wordpress
|
- name: wordpress
|
||||||
image: docker.io/bitnami/wordpress:6.4.1-debian-11-r5
|
image: docker.io/bitnami/wordpress:6.4.1-debian-11-r6
|
||||||
licenses: Apache-2.0
|
licenses: Apache-2.0
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: 6.4.1
|
appVersion: 6.4.1
|
||||||
|
@ -47,4 +47,4 @@ maintainers:
|
||||||
name: wordpress
|
name: wordpress
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/bitnami/charts/tree/main/bitnami/wordpress
|
- https://github.com/bitnami/charts/tree/main/bitnami/wordpress
|
||||||
version: 18.1.15
|
version: 18.1.17
|
||||||
|
|
|
@ -76,7 +76,7 @@ diagnosticMode:
|
||||||
image:
|
image:
|
||||||
registry: docker.io
|
registry: docker.io
|
||||||
repository: bitnami/wordpress
|
repository: bitnami/wordpress
|
||||||
tag: 6.4.1-debian-11-r5
|
tag: 6.4.1-debian-11-r6
|
||||||
digest: ""
|
digest: ""
|
||||||
## Specify a imagePullPolicy
|
## Specify a imagePullPolicy
|
||||||
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
# Datadog changelog
|
# Datadog changelog
|
||||||
|
|
||||||
|
## 3.49.5
|
||||||
|
|
||||||
|
Fix registry selection with GKE Autopilot until new registries are allowed.
|
||||||
|
|
||||||
## 3.49.4
|
## 3.49.4
|
||||||
|
|
||||||
* Exclude a namespace with Datadog resources from APM Single Step Instrumentation
|
* Exclude a namespace with Datadog resources from APM Single Step Instrumentation
|
||||||
|
|
|
@ -19,4 +19,4 @@ name: datadog
|
||||||
sources:
|
sources:
|
||||||
- https://app.datadoghq.com/account/settings#agent/kubernetes
|
- https://app.datadoghq.com/account/settings#agent/kubernetes
|
||||||
- https://github.com/DataDog/datadog-agent
|
- https://github.com/DataDog/datadog-agent
|
||||||
version: 3.49.4
|
version: 3.49.5
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Datadog
|
# Datadog
|
||||||
|
|
||||||
![Version: 3.49.4](https://img.shields.io/badge/Version-3.49.4-informational?style=flat-square) ![AppVersion: 7](https://img.shields.io/badge/AppVersion-7-informational?style=flat-square)
|
![Version: 3.49.5](https://img.shields.io/badge/Version-3.49.5-informational?style=flat-square) ![AppVersion: 7](https://img.shields.io/badge/AppVersion-7-informational?style=flat-square)
|
||||||
|
|
||||||
[Datadog](https://www.datadoghq.com/) is a hosted infrastructure monitoring platform. This chart adds the Datadog Agent to all nodes in your cluster via a DaemonSet. It also optionally depends on the [kube-state-metrics chart](https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-state-metrics). For more information about monitoring Kubernetes with Datadog, please refer to the [Datadog documentation website](https://docs.datadoghq.com/agent/basic_agent_usage/kubernetes/).
|
[Datadog](https://www.datadoghq.com/) is a hosted infrastructure monitoring platform. This chart adds the Datadog Agent to all nodes in your cluster via a DaemonSet. It also optionally depends on the [kube-state-metrics chart](https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-state-metrics). For more information about monitoring Kubernetes with Datadog, please refer to the [Datadog documentation website](https://docs.datadoghq.com/agent/basic_agent_usage/kubernetes/).
|
||||||
|
|
||||||
|
|
|
@ -267,6 +267,8 @@ Return the proper registry based on datadog.site (requires .Values to be passed
|
||||||
{{- define "registry" -}}
|
{{- define "registry" -}}
|
||||||
{{- if .registry -}}
|
{{- if .registry -}}
|
||||||
{{- .registry -}}
|
{{- .registry -}}
|
||||||
|
{{- else if .providers.gke.autopilot -}}
|
||||||
|
gcr.io/datadoghq
|
||||||
{{- else if eq .datadog.site "datadoghq.eu" -}}
|
{{- else if eq .datadog.site "datadoghq.eu" -}}
|
||||||
eu.gcr.io/datadoghq
|
eu.gcr.io/datadoghq
|
||||||
{{- else if eq .datadog.site "ddog-gov.com" -}}
|
{{- else if eq .datadog.site "ddog-gov.com" -}}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- CRD job updates and bug fixes
|
- Increase CRD job cleanup TTL to 120s (#213)
|
||||||
catalog.cattle.io/certified: partner
|
catalog.cattle.io/certified: partner
|
||||||
catalog.cattle.io/display-name: HAProxy Kubernetes Ingress Controller
|
catalog.cattle.io/display-name: HAProxy Kubernetes Ingress Controller
|
||||||
catalog.cattle.io/kube-version: '>=1.22.0-0'
|
catalog.cattle.io/kube-version: '>=1.22.0-0'
|
||||||
|
@ -21,4 +21,4 @@ name: haproxy
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/haproxytech/kubernetes-ingress
|
- https://github.com/haproxytech/kubernetes-ingress
|
||||||
type: application
|
type: application
|
||||||
version: 1.35.1
|
version: 1.35.3
|
||||||
|
|
|
@ -153,10 +153,10 @@ Create a FQDN for the Service metrics.
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
{{/*
|
{{/*
|
||||||
Create a default fully qualified default CRD job name.
|
Create a default fully qualified unique CRD job name.
|
||||||
*/}}
|
*/}}
|
||||||
{{- define "kubernetes-ingress.crdjob.fullname" -}}
|
{{- define "kubernetes-ingress.crdjob.fullname" -}}
|
||||||
{{- printf "%s-%s" (include "kubernetes-ingress.fullname" .) "crdjob" | trunc 63 | trimSuffix "-" -}}
|
{{- printf "%s-%s-%d" (include "kubernetes-ingress.fullname" .) "crdjob" .Release.Revision | trunc 63 | trimSuffix "-" -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
{{/* vim: set filetype=mustache: */}}
|
{{/* vim: set filetype=mustache: */}}
|
||||||
|
|
|
@ -26,8 +26,8 @@ metadata:
|
||||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||||
app.kubernetes.io/version: {{ .Chart.AppVersion }}
|
app.kubernetes.io/version: {{ .Chart.AppVersion }}
|
||||||
spec:
|
spec:
|
||||||
{{- if .Capabilities.APIVersions.Has "batch/v1alpha1" }}
|
{{- if or (.Capabilities.APIVersions.Has "batch/v1alpha1") (semverCompare ">=1.23.0-0" .Capabilities.KubeVersion.Version) }}
|
||||||
ttlSecondsAfterFinished: 0
|
ttlSecondsAfterFinished: 120
|
||||||
{{- end }}
|
{{- end }}
|
||||||
backoffLimit: 0
|
backoffLimit: 0
|
||||||
template:
|
template:
|
||||||
|
|
|
@ -12,6 +12,10 @@ Use the following links to reference issues, PRs, and commits prior to v2.6.0.
|
||||||
The changelog until v1.5.7 was auto-generated based on git commits.
|
The changelog until v1.5.7 was auto-generated based on git commits.
|
||||||
Those entries include a reference to the git commit to be able to get more details.
|
Those entries include a reference to the git commit to be able to get more details.
|
||||||
|
|
||||||
|
## 4.8.5
|
||||||
|
|
||||||
|
Fix `artifacthub.io/changes` changelog annotation added to the released chart.
|
||||||
|
|
||||||
## 4.8.4
|
## 4.8.4
|
||||||
|
|
||||||
Add `artifacthub.io/changes` changelog annotation to the released chart.
|
Add `artifacthub.io/changes` changelog annotation to the released chart.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/category: integration-delivery
|
artifacthub.io/category: integration-delivery
|
||||||
artifacthub.io/changes: Add `artifacthub.io/changes` changelog annotation to the
|
artifacthub.io/changes: |
|
||||||
released chart.
|
Fix `artifacthub.io/changes` changelog annotation added to the released chart.
|
||||||
artifacthub.io/images: |
|
artifacthub.io/images: |
|
||||||
- name: jenkins
|
- name: jenkins
|
||||||
image: jenkins/jenkins:2.426.1-jdk11
|
image: jenkins/jenkins:2.426.1-jdk11
|
||||||
|
@ -51,4 +51,4 @@ sources:
|
||||||
- https://github.com/jenkinsci/docker-inbound-agent
|
- https://github.com/jenkinsci/docker-inbound-agent
|
||||||
- https://github.com/maorfr/kube-tasks
|
- https://github.com/maorfr/kube-tasks
|
||||||
- https://github.com/jenkinsci/configuration-as-code-plugin
|
- https://github.com/jenkinsci/configuration-as-code-plugin
|
||||||
version: 4.8.4
|
version: 4.8.5
|
||||||
|
|
|
@ -5,7 +5,7 @@ annotations:
|
||||||
catalog.cattle.io/kube-version: '>=1.21.0-0'
|
catalog.cattle.io/kube-version: '>=1.21.0-0'
|
||||||
catalog.cattle.io/release-name: linkerd-control-plane
|
catalog.cattle.io/release-name: linkerd-control-plane
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: stable-2.14.4
|
appVersion: stable-2.14.5
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: partials
|
- name: partials
|
||||||
repository: file://./charts/partials
|
repository: file://./charts/partials
|
||||||
|
@ -25,4 +25,4 @@ name: linkerd-control-plane
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/linkerd/linkerd2/
|
- https://github.com/linkerd/linkerd2/
|
||||||
type: application
|
type: application
|
||||||
version: 1.16.5
|
version: 1.16.6
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
Linkerd gives you observability, reliability, and security
|
Linkerd gives you observability, reliability, and security
|
||||||
for your microservices — with no code change required.
|
for your microservices — with no code change required.
|
||||||
|
|
||||||
![Version: 1.16.5](https://img.shields.io/badge/Version-1.16.5-informational?style=flat-square)
|
![Version: 1.16.6](https://img.shields.io/badge/Version-1.16.6-informational?style=flat-square)
|
||||||
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
|
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
|
||||||
![AppVersion: edge-XX.X.X](https://img.shields.io/badge/AppVersion-edge--XX.X.X-informational?style=flat-square)
|
![AppVersion: edge-XX.X.X](https://img.shields.io/badge/AppVersion-edge--XX.X.X-informational?style=flat-square)
|
||||||
|
|
||||||
|
@ -152,6 +152,7 @@ Kubernetes: `>=1.21.0-0`
|
||||||
| controlPlaneTracing | bool | `false` | enables control plane tracing |
|
| controlPlaneTracing | bool | `false` | enables control plane tracing |
|
||||||
| controlPlaneTracingNamespace | string | `"linkerd-jaeger"` | namespace to send control plane traces to |
|
| controlPlaneTracingNamespace | string | `"linkerd-jaeger"` | namespace to send control plane traces to |
|
||||||
| controllerImage | string | `"cr.l5d.io/linkerd/controller"` | Docker image for the destination and identity components |
|
| controllerImage | string | `"cr.l5d.io/linkerd/controller"` | Docker image for the destination and identity components |
|
||||||
|
| controllerImageVersion | string | `""` | Optionally allow a specific container image Tag (or SHA) to be specified for the controllerImage. |
|
||||||
| controllerLogFormat | string | `"plain"` | Log format for the control plane components |
|
| controllerLogFormat | string | `"plain"` | Log format for the control plane components |
|
||||||
| controllerLogLevel | string | `"info"` | Log level for the control plane components |
|
| controllerLogLevel | string | `"info"` | Log level for the control plane components |
|
||||||
| controllerReplicas | int | `1` | Number of replicas for each control plane pod |
|
| controllerReplicas | int | `1` | Number of replicas for each control plane pod |
|
||||||
|
|
|
@ -153,6 +153,7 @@ spec:
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
annotations:
|
annotations:
|
||||||
|
checksum/config: {{ include (print $.Template.BasePath "/destination-rbac.yaml") . | sha256sum }}
|
||||||
{{ include "partials.annotations.created-by" . }}
|
{{ include "partials.annotations.created-by" . }}
|
||||||
{{- include "partials.proxy.annotations" . | nindent 8}}
|
{{- include "partials.proxy.annotations" . | nindent 8}}
|
||||||
{{- with .Values.podAnnotations }}{{ toYaml . | trim | nindent 8 }}{{- end }}
|
{{- with .Values.podAnnotations }}{{ toYaml . | trim | nindent 8 }}{{- end }}
|
||||||
|
@ -203,7 +204,7 @@ spec:
|
||||||
- -default-opaque-ports={{.Values.proxy.opaquePorts}}
|
- -default-opaque-ports={{.Values.proxy.opaquePorts}}
|
||||||
- -enable-pprof={{.Values.enablePprof | default false}}
|
- -enable-pprof={{.Values.enablePprof | default false}}
|
||||||
{{- include "partials.linkerd.trace" . | nindent 8 -}}
|
{{- include "partials.linkerd.trace" . | nindent 8 -}}
|
||||||
image: {{.Values.controllerImage}}:{{.Values.linkerdVersion}}
|
image: {{.Values.controllerImage}}:{{.Values.controllerImageVersion | default .Values.linkerdVersion}}
|
||||||
imagePullPolicy: {{.Values.imagePullPolicy}}
|
imagePullPolicy: {{.Values.imagePullPolicy}}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
@ -239,7 +240,7 @@ spec:
|
||||||
- -log-level={{.Values.controllerLogLevel}}
|
- -log-level={{.Values.controllerLogLevel}}
|
||||||
- -log-format={{.Values.controllerLogFormat}}
|
- -log-format={{.Values.controllerLogFormat}}
|
||||||
- -enable-pprof={{.Values.enablePprof | default false}}
|
- -enable-pprof={{.Values.enablePprof | default false}}
|
||||||
image: {{.Values.controllerImage}}:{{.Values.linkerdVersion}}
|
image: {{.Values.controllerImage}}:{{.Values.controllerImageVersion | default .Values.linkerdVersion}}
|
||||||
imagePullPolicy: {{.Values.imagePullPolicy}}
|
imagePullPolicy: {{.Values.imagePullPolicy}}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
|
|
@ -54,7 +54,7 @@ spec:
|
||||||
restartPolicy: Never
|
restartPolicy: Never
|
||||||
containers:
|
containers:
|
||||||
- name: heartbeat
|
- name: heartbeat
|
||||||
image: {{.Values.controllerImage}}:{{.Values.linkerdVersion}}
|
image: {{.Values.controllerImage}}:{{.Values.controllerImageVersion | default .Values.linkerdVersion}}
|
||||||
imagePullPolicy: {{.Values.imagePullPolicy}}
|
imagePullPolicy: {{.Values.imagePullPolicy}}
|
||||||
env:
|
env:
|
||||||
- name: LINKERD_DISABLED
|
- name: LINKERD_DISABLED
|
||||||
|
|
|
@ -163,7 +163,7 @@ spec:
|
||||||
env:
|
env:
|
||||||
- name: LINKERD_DISABLED
|
- name: LINKERD_DISABLED
|
||||||
value: "linkerd-await cannot block the identity controller"
|
value: "linkerd-await cannot block the identity controller"
|
||||||
image: {{.Values.controllerImage}}:{{.Values.linkerdVersion}}
|
image: {{.Values.controllerImage}}:{{.Values.controllerImageVersion | default .Values.linkerdVersion}}
|
||||||
imagePullPolicy: {{.Values.imagePullPolicy}}
|
imagePullPolicy: {{.Values.imagePullPolicy}}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
|
|
@ -32,6 +32,7 @@ spec:
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
annotations:
|
annotations:
|
||||||
|
checksum/config: {{ include (print $.Template.BasePath "/proxy-injector-rbac.yaml") . | sha256sum }}
|
||||||
{{ include "partials.annotations.created-by" . }}
|
{{ include "partials.annotations.created-by" . }}
|
||||||
{{- include "partials.proxy.annotations" . | nindent 8}}
|
{{- include "partials.proxy.annotations" . | nindent 8}}
|
||||||
{{- with .Values.podAnnotations }}{{ toYaml . | trim | nindent 8 }}{{- end }}
|
{{- with .Values.podAnnotations }}{{ toYaml . | trim | nindent 8 }}{{- end }}
|
||||||
|
@ -76,7 +77,7 @@ spec:
|
||||||
- -log-format={{.Values.controllerLogFormat}}
|
- -log-format={{.Values.controllerLogFormat}}
|
||||||
- -linkerd-namespace={{.Release.Namespace}}
|
- -linkerd-namespace={{.Release.Namespace}}
|
||||||
- -enable-pprof={{.Values.enablePprof | default false}}
|
- -enable-pprof={{.Values.enablePprof | default false}}
|
||||||
image: {{.Values.controllerImage}}:{{.Values.linkerdVersion}}
|
image: {{.Values.controllerImage}}:{{.Values.controllerImageVersion | default .Values.linkerdVersion}}
|
||||||
imagePullPolicy: {{.Values.imagePullPolicy}}
|
imagePullPolicy: {{.Values.imagePullPolicy}}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
|
|
|
@ -22,7 +22,7 @@ controlPlaneTracing: false
|
||||||
# -- namespace to send control plane traces to
|
# -- namespace to send control plane traces to
|
||||||
controlPlaneTracingNamespace: linkerd-jaeger
|
controlPlaneTracingNamespace: linkerd-jaeger
|
||||||
# -- control plane version. See Proxy section for proxy version
|
# -- control plane version. See Proxy section for proxy version
|
||||||
linkerdVersion: stable-2.14.4
|
linkerdVersion: stable-2.14.5
|
||||||
# -- default kubernetes deployment strategy
|
# -- default kubernetes deployment strategy
|
||||||
deploymentStrategy:
|
deploymentStrategy:
|
||||||
rollingUpdate:
|
rollingUpdate:
|
||||||
|
@ -292,6 +292,9 @@ webhookFailurePolicy: Ignore
|
||||||
|
|
||||||
# controllerImage -- Docker image for the destination and identity components
|
# controllerImage -- Docker image for the destination and identity components
|
||||||
controllerImage: cr.l5d.io/linkerd/controller
|
controllerImage: cr.l5d.io/linkerd/controller
|
||||||
|
# -- Optionally allow a specific container image Tag (or SHA) to be specified for the controllerImage.
|
||||||
|
controllerImageVersion: ""
|
||||||
|
|
||||||
# -- Number of replicas for each control plane pod
|
# -- Number of replicas for each control plane pod
|
||||||
controllerReplicas: 1
|
controllerReplicas: 1
|
||||||
# -- User ID for the control plane components
|
# -- User ID for the control plane components
|
||||||
|
|
|
@ -28,4 +28,4 @@ name: loft
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/loft-sh/loft
|
- https://github.com/loft-sh/loft
|
||||||
type: application
|
type: application
|
||||||
version: 3.3.2
|
version: 3.3.3
|
||||||
|
|
|
@ -19,8 +19,6 @@ metadata:
|
||||||
annotations:
|
annotations:
|
||||||
nginx.ingress.kubernetes.io/proxy-read-timeout: "43200"
|
nginx.ingress.kubernetes.io/proxy-read-timeout: "43200"
|
||||||
nginx.ingress.kubernetes.io/proxy-send-timeout: "43200"
|
nginx.ingress.kubernetes.io/proxy-send-timeout: "43200"
|
||||||
nginx.ingress.kubernetes.io/proxy-buffers-number: "8 32k"
|
|
||||||
nginx.ingress.kubernetes.io/proxy-buffer-size: "32k"
|
|
||||||
nginx.org/websocket-services: loft
|
nginx.org/websocket-services: loft
|
||||||
{{- with .Values.ingress.annotations }}
|
{{- with .Values.ingress.annotations }}
|
||||||
{{- toYaml . | nindent 4 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
|
|
|
@ -10,6 +10,12 @@ Manual edits are supported only below '## Change Log' and should be used
|
||||||
exclusively to fix incorrect entries and not to add new ones.
|
exclusively to fix incorrect entries and not to add new ones.
|
||||||
|
|
||||||
## Change Log
|
## Change Log
|
||||||
|
# v1.16.23
|
||||||
|
### New Features
|
||||||
|
* **sysdig** [048837fc](https://github.com/sysdiglabs/charts/commit/048837fcb04b48c5dc584d13f5a005fdb75fd230): Update legacy engine NIA component with security updates ([#1489](https://github.com/sysdiglabs/charts/issues/1489))
|
||||||
|
# v1.16.22
|
||||||
|
### Chores
|
||||||
|
* **sysdig** [d9d16526](https://github.com/sysdiglabs/charts/commit/d9d165266542cc04e9aaccfdbf5242bd8562b49f): Update HostAnalyzer to 0.1.18 components with security updates ([#1486](https://github.com/sysdiglabs/charts/issues/1486))
|
||||||
# v1.16.21
|
# v1.16.21
|
||||||
### Chores
|
### Chores
|
||||||
* **sysdig, node-analyzer** [6c7c27bf](https://github.com/sysdiglabs/charts/commit/6c7c27bf845b30af0eb5a4cb8f5fe330923d564f): bump sysdig/vuln-runtime-scanner to v1.6.4 [SSPROD-3285] ([#1477](https://github.com/sysdiglabs/charts/issues/1477))
|
* **sysdig, node-analyzer** [6c7c27bf](https://github.com/sysdiglabs/charts/commit/6c7c27bf845b30af0eb5a4cb8f5fe330923d564f): bump sysdig/vuln-runtime-scanner to v1.6.4 [SSPROD-3285] ([#1477](https://github.com/sysdiglabs/charts/issues/1477))
|
||||||
|
|
|
@ -19,4 +19,4 @@ name: sysdig
|
||||||
sources:
|
sources:
|
||||||
- https://app.sysdigcloud.com/#/settings/user
|
- https://app.sysdigcloud.com/#/settings/user
|
||||||
- https://github.com/draios/sysdig
|
- https://github.com/draios/sysdig
|
||||||
version: 1.16.21
|
version: 1.16.23
|
||||||
|
|
|
@ -237,7 +237,7 @@ The following table lists the configurable parameters of the Sysdig chart and th
|
||||||
| `nodeAnalyzer.imageAnalyzer.env` | The extra environment variables that will be passed onto pods. | `{}` |
|
| `nodeAnalyzer.imageAnalyzer.env` | The extra environment variables that will be passed onto pods. | `{}` |
|
||||||
| `nodeAnalyzer.hostAnalyzer.deploy` | Deploys the Host Analyzer. | `true ` |
|
| `nodeAnalyzer.hostAnalyzer.deploy` | Deploys the Host Analyzer. | `true ` |
|
||||||
| `nodeAnalyzer.hostAnalyzer.image.repository` | The image repository to pull the Host Analyzer from. | `sysdig/host-analyzer` |
|
| `nodeAnalyzer.hostAnalyzer.image.repository` | The image repository to pull the Host Analyzer from. | `sysdig/host-analyzer` |
|
||||||
| `nodeAnalyzer.hostAnalyzer.image.tag` | The image tag to pull the Host Analyzer. | `0.1.17` |
|
| `nodeAnalyzer.hostAnalyzer.image.tag` | The image tag to pull the Host Analyzer. | `0.1.18` |
|
||||||
| `nodeAnalyzer.hostAnalyzer.image.digest` | The image digest to pull. | ` ` |
|
| `nodeAnalyzer.hostAnalyzer.image.digest` | The image digest to pull. | ` ` |
|
||||||
| `nodeAnalyzer.hostAnalyzer.image.pullPolicy` | The Image pull policy for the Host Analyzer. | `IfNotPresent` |
|
| `nodeAnalyzer.hostAnalyzer.image.pullPolicy` | The Image pull policy for the Host Analyzer. | `IfNotPresent` |
|
||||||
| `nodeAnalyzer.hostAnalyzer.schedule` | The scanning schedule specification for the host analyzer expressed as a crontab. | `@dailydefault` |
|
| `nodeAnalyzer.hostAnalyzer.schedule` | The scanning schedule specification for the host analyzer expressed as a crontab. | `@dailydefault` |
|
||||||
|
@ -323,7 +323,7 @@ The following table lists the configurable parameters of the Sysdig chart and th
|
||||||
| `nodeImageAnalyzer.settings.httpsProxy` | The secure proxy configuration variables. | |
|
| `nodeImageAnalyzer.settings.httpsProxy` | The secure proxy configuration variables. | |
|
||||||
| `nodeImageAnalyzer.settings.noProxy` | The no proxy configuration variables. | |
|
| `nodeImageAnalyzer.settings.noProxy` | The no proxy configuration variables. | |
|
||||||
| `nodeImageAnalyzer.image.repository` | The image repository to pull the Node Image Analyzer from. | `sysdig/node-image-analyzer` |
|
| `nodeImageAnalyzer.image.repository` | The image repository to pull the Node Image Analyzer from. | `sysdig/node-image-analyzer` |
|
||||||
| `nodeImageAnalyzer.image.tag` | The image tag to pull the Node Image Analyzer. | `0.1.29` |
|
| `nodeImageAnalyzer.image.tag` | The image tag to pull the Node Image Analyzer. | `0.1.30` |
|
||||||
| `nodeImageAnalyzer.imagedigest` | The image digest to pull. | ` ` |
|
| `nodeImageAnalyzer.imagedigest` | The image digest to pull. | ` ` |
|
||||||
| `nodeImageAnalyzer.image.pullPolicy` | The Image pull policy for the Node Image Analyzer. | `IfNotPresent` |
|
| `nodeImageAnalyzer.image.pullPolicy` | The Image pull policy for the Node Image Analyzer. | `IfNotPresent` |
|
||||||
| `nodeImageAnalyzer.image.pullSecrets` | Image pull secrets for the Node Image Analyzer. | `nil` |
|
| `nodeImageAnalyzer.image.pullSecrets` | Image pull secrets for the Node Image Analyzer. | `nil` |
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# What's Changed
|
# What's Changed
|
||||||
|
|
||||||
### Chores
|
### New Features
|
||||||
- **sysdig, node-analyzer** [6c7c27bf](https://github.com/sysdiglabs/charts/commit/6c7c27bf845b30af0eb5a4cb8f5fe330923d564f): bump sysdig/vuln-runtime-scanner to v1.6.4 [SSPROD-3285] ([#1477](https://github.com/sysdiglabs/charts/issues/1477))
|
- **sysdig** [048837fc](https://github.com/sysdiglabs/charts/commit/048837fcb04b48c5dc584d13f5a005fdb75fd230): Update legacy engine NIA component with security updates ([#1489](https://github.com/sysdiglabs/charts/issues/1489))
|
||||||
#### Full diff: https://github.com/sysdiglabs/charts/compare/sysdig-deploy-1.29.8...sysdig-1.16.21
|
#### Full diff: https://github.com/sysdiglabs/charts/compare/sysdig-deploy-1.29.12...sysdig-1.16.23
|
||||||
|
|
|
@ -193,7 +193,7 @@ nodeImageAnalyzer:
|
||||||
deploy: false
|
deploy: false
|
||||||
image:
|
image:
|
||||||
repository: sysdig/node-image-analyzer
|
repository: sysdig/node-image-analyzer
|
||||||
tag: 0.1.29
|
tag: 0.1.30
|
||||||
digest: null
|
digest: null
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
# pullSecrets:
|
# pullSecrets:
|
||||||
|
@ -351,7 +351,7 @@ nodeAnalyzer:
|
||||||
deploy: true
|
deploy: true
|
||||||
image:
|
image:
|
||||||
repository: sysdig/node-image-analyzer
|
repository: sysdig/node-image-analyzer
|
||||||
tag: 0.1.29
|
tag: 0.1.30
|
||||||
digest: null
|
digest: null
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
# The Docker socket path.
|
# The Docker socket path.
|
||||||
|
@ -393,7 +393,7 @@ nodeAnalyzer:
|
||||||
deploy: true
|
deploy: true
|
||||||
image:
|
image:
|
||||||
repository: sysdig/host-analyzer
|
repository: sysdig/host-analyzer
|
||||||
tag: 0.1.17
|
tag: 0.1.18
|
||||||
digest: null
|
digest: null
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
# The scanning schedule specification for the host analyzer expressed as a crontab string such as “5 4 * * *”.
|
# The scanning schedule specification for the host analyzer expressed as a crontab string such as “5 4 * * *”.
|
||||||
|
|
320
index.yaml
320
index.yaml
|
@ -18409,6 +18409,43 @@ entries:
|
||||||
- assets/weka/csi-wekafsplugin-0.6.400.tgz
|
- assets/weka/csi-wekafsplugin-0.6.400.tgz
|
||||||
version: 0.6.400
|
version: 0.6.400
|
||||||
datadog:
|
datadog:
|
||||||
|
- annotations:
|
||||||
|
catalog.cattle.io/certified: partner
|
||||||
|
catalog.cattle.io/display-name: Datadog
|
||||||
|
catalog.cattle.io/kube-version: '>=1.10-0'
|
||||||
|
catalog.cattle.io/release-name: datadog
|
||||||
|
apiVersion: v1
|
||||||
|
appVersion: "7"
|
||||||
|
created: "2023-11-24T18:52:11.305256178Z"
|
||||||
|
dependencies:
|
||||||
|
- condition: clusterAgent.metricsProvider.useDatadogMetrics
|
||||||
|
name: datadog-crds
|
||||||
|
repository: https://helm.datadoghq.com
|
||||||
|
tags:
|
||||||
|
- install-crds
|
||||||
|
version: 1.0.1
|
||||||
|
- condition: datadog.kubeStateMetricsEnabled
|
||||||
|
name: kube-state-metrics
|
||||||
|
repository: https://prometheus-community.github.io/helm-charts
|
||||||
|
version: 2.13.2
|
||||||
|
description: Datadog Agent
|
||||||
|
digest: 978c2681eca429ca2fd9086932f814a4feaacc963adbe9369f2de3e9e1f6afeb
|
||||||
|
home: https://www.datadoghq.com
|
||||||
|
icon: https://datadog-live.imgix.net/img/dd_logo_70x75.png
|
||||||
|
keywords:
|
||||||
|
- monitoring
|
||||||
|
- alerting
|
||||||
|
- metric
|
||||||
|
maintainers:
|
||||||
|
- email: support@datadoghq.com
|
||||||
|
name: Datadog
|
||||||
|
name: datadog
|
||||||
|
sources:
|
||||||
|
- https://app.datadoghq.com/account/settings#agent/kubernetes
|
||||||
|
- https://github.com/DataDog/datadog-agent
|
||||||
|
urls:
|
||||||
|
- assets/datadog/datadog-3.49.5.tgz
|
||||||
|
version: 3.49.5
|
||||||
- annotations:
|
- annotations:
|
||||||
catalog.cattle.io/certified: partner
|
catalog.cattle.io/certified: partner
|
||||||
catalog.cattle.io/display-name: Datadog
|
catalog.cattle.io/display-name: Datadog
|
||||||
|
@ -26021,6 +26058,34 @@ entries:
|
||||||
- assets/gopaddle/gopaddle-4.2.5.tgz
|
- assets/gopaddle/gopaddle-4.2.5.tgz
|
||||||
version: 4.2.5
|
version: 4.2.5
|
||||||
haproxy:
|
haproxy:
|
||||||
|
- annotations:
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
- Increase CRD job cleanup TTL to 120s (#213)
|
||||||
|
catalog.cattle.io/certified: partner
|
||||||
|
catalog.cattle.io/display-name: HAProxy Kubernetes Ingress Controller
|
||||||
|
catalog.cattle.io/kube-version: '>=1.22.0-0'
|
||||||
|
catalog.cattle.io/release-name: haproxy
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: 1.10.10
|
||||||
|
created: "2023-11-24T18:52:11.813837086Z"
|
||||||
|
description: A Helm chart for HAProxy Kubernetes Ingress Controller
|
||||||
|
digest: 76a8977256c87cd74be7ac5f2cfb70a85676a0d20fa008693b2294e967053e16
|
||||||
|
home: https://github.com/haproxytech/helm-charts/tree/main/kubernetes-ingress
|
||||||
|
icon: https://raw.githubusercontent.com/haproxytech/helm-charts/main/kubernetes-ingress/chart-icon.png
|
||||||
|
keywords:
|
||||||
|
- ingress
|
||||||
|
- haproxy
|
||||||
|
kubeVersion: '>=1.22.0-0'
|
||||||
|
maintainers:
|
||||||
|
- email: dkorunic@haproxy.com
|
||||||
|
name: Dinko Korunic
|
||||||
|
name: haproxy
|
||||||
|
sources:
|
||||||
|
- https://github.com/haproxytech/kubernetes-ingress
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- assets/haproxy/haproxy-1.35.3.tgz
|
||||||
|
version: 1.35.3
|
||||||
- annotations:
|
- annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- CRD job updates and bug fixes
|
- CRD job updates and bug fixes
|
||||||
|
@ -28869,6 +28934,64 @@ entries:
|
||||||
- assets/jaeger/jaeger-operator-2.36.0.tgz
|
- assets/jaeger/jaeger-operator-2.36.0.tgz
|
||||||
version: 2.36.0
|
version: 2.36.0
|
||||||
jenkins:
|
jenkins:
|
||||||
|
- annotations:
|
||||||
|
artifacthub.io/category: integration-delivery
|
||||||
|
artifacthub.io/changes: |
|
||||||
|
Fix `artifacthub.io/changes` changelog annotation added to the released chart.
|
||||||
|
artifacthub.io/images: |
|
||||||
|
- name: jenkins
|
||||||
|
image: jenkins/jenkins:2.426.1-jdk11
|
||||||
|
- name: k8s-sidecar
|
||||||
|
image: kiwigrid/k8s-sidecar:1.24.4
|
||||||
|
- name: inbound-agent
|
||||||
|
image: jenkins/inbound-agent:3107.v665000b_51092-15
|
||||||
|
- name: backup
|
||||||
|
image: maorfr/kube-tasks:0.2.0
|
||||||
|
artifacthub.io/license: Apache-2.0
|
||||||
|
artifacthub.io/links: |
|
||||||
|
- name: Chart Source
|
||||||
|
url: https://github.com/jenkinsci/helm-charts/tree/main/charts/jenkins
|
||||||
|
- name: Jenkins
|
||||||
|
url: https://www.jenkins.io/
|
||||||
|
- name: support
|
||||||
|
url: https://github.com/jenkinsci/helm-charts/issues
|
||||||
|
catalog.cattle.io/certified: partner
|
||||||
|
catalog.cattle.io/display-name: Jenkins
|
||||||
|
catalog.cattle.io/kube-version: '>=1.14-0'
|
||||||
|
catalog.cattle.io/release-name: jenkins
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: 2.426.1
|
||||||
|
created: "2023-11-24T18:52:12.191467779Z"
|
||||||
|
description: Jenkins - Build great things at any scale! The leading open source
|
||||||
|
automation server, Jenkins provides over 1800 plugins to support building, deploying
|
||||||
|
and automating any project.
|
||||||
|
digest: 6e81917859d07d1d61f880b2df74950495cdc1d1f0ea568bf80d794dccf0695b
|
||||||
|
home: https://jenkins.io/
|
||||||
|
icon: https://get.jenkins.io/art/jenkins-logo/logo.svg
|
||||||
|
keywords:
|
||||||
|
- jenkins
|
||||||
|
- ci
|
||||||
|
- devops
|
||||||
|
maintainers:
|
||||||
|
- email: maor.friedman@redhat.com
|
||||||
|
name: maorfr
|
||||||
|
- email: mail@torstenwalter.de
|
||||||
|
name: torstenwalter
|
||||||
|
- email: garridomota@gmail.com
|
||||||
|
name: mogaal
|
||||||
|
- email: wmcdona89@gmail.com
|
||||||
|
name: wmcdona89
|
||||||
|
- email: timjacomb1@gmail.com
|
||||||
|
name: timja
|
||||||
|
name: jenkins
|
||||||
|
sources:
|
||||||
|
- https://github.com/jenkinsci/jenkins
|
||||||
|
- https://github.com/jenkinsci/docker-inbound-agent
|
||||||
|
- https://github.com/maorfr/kube-tasks
|
||||||
|
- https://github.com/jenkinsci/configuration-as-code-plugin
|
||||||
|
urls:
|
||||||
|
- assets/jenkins/jenkins-4.8.5.tgz
|
||||||
|
version: 4.8.5
|
||||||
- annotations:
|
- annotations:
|
||||||
artifacthub.io/category: integration-delivery
|
artifacthub.io/category: integration-delivery
|
||||||
artifacthub.io/changes: Add `artifacthub.io/changes` changelog annotation to
|
artifacthub.io/changes: Add `artifacthub.io/changes` changelog annotation to
|
||||||
|
@ -38732,15 +38855,46 @@ entries:
|
||||||
catalog.cattle.io/kube-version: '>=1.21.0-0'
|
catalog.cattle.io/kube-version: '>=1.21.0-0'
|
||||||
catalog.cattle.io/release-name: linkerd-control-plane
|
catalog.cattle.io/release-name: linkerd-control-plane
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: stable-2.14.4
|
appVersion: stable-2.14.5
|
||||||
created: "2023-11-17T13:49:19.42789717Z"
|
created: "2023-11-24T18:52:25.107762565Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: partials
|
- name: partials
|
||||||
repository: file://./charts/partials
|
repository: file://./charts/partials
|
||||||
version: 0.1.0
|
version: 0.1.0
|
||||||
description: 'Linkerd gives you observability, reliability, and security for your
|
description: 'Linkerd gives you observability, reliability, and security for your
|
||||||
microservices — with no code change required. '
|
microservices — with no code change required. '
|
||||||
digest: 3d823b02ed21e7ca85cfd46c56f4ea353dbfb8c6ece9cd047dd38f9825fc408d
|
digest: b424b610494ac23114d98094e494a3a86ad91feacdf92f878d838a45cb014761
|
||||||
|
home: https://linkerd.io
|
||||||
|
icon: https://linkerd.io/images/logo-only-200h.png
|
||||||
|
keywords:
|
||||||
|
- service-mesh
|
||||||
|
kubeVersion: '>=1.21.0-0'
|
||||||
|
maintainers:
|
||||||
|
- email: cncf-linkerd-dev@lists.cncf.io
|
||||||
|
name: Linkerd authors
|
||||||
|
url: https://linkerd.io/
|
||||||
|
name: linkerd-control-plane
|
||||||
|
sources:
|
||||||
|
- https://github.com/linkerd/linkerd2/
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- assets/linkerd/linkerd-control-plane-1.16.6.tgz
|
||||||
|
version: 1.16.6
|
||||||
|
- annotations:
|
||||||
|
catalog.cattle.io/certified: partner
|
||||||
|
catalog.cattle.io/display-name: Linkerd Control Plane
|
||||||
|
catalog.cattle.io/kube-version: '>=1.21.0-0'
|
||||||
|
catalog.cattle.io/release-name: linkerd-control-plane
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: stable-2.14.4
|
||||||
|
created: "2023-11-24T18:52:13.966054982Z"
|
||||||
|
dependencies:
|
||||||
|
- name: partials
|
||||||
|
repository: file://./charts/partials
|
||||||
|
version: 0.1.0
|
||||||
|
description: 'Linkerd gives you observability, reliability, and security for your
|
||||||
|
microservices — with no code change required. '
|
||||||
|
digest: 9457f524ae84bff3c2be2752f079afbf8b7489348bd4b12eaec47cf4d9ae01c2
|
||||||
home: https://linkerd.io
|
home: https://linkerd.io
|
||||||
icon: https://linkerd.io/images/logo-only-200h.png
|
icon: https://linkerd.io/images/logo-only-200h.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -38944,6 +39098,41 @@ entries:
|
||||||
- assets/linkerd/linkerd-control-plane-1.12.5.tgz
|
- assets/linkerd/linkerd-control-plane-1.12.5.tgz
|
||||||
version: 1.12.5
|
version: 1.12.5
|
||||||
loft:
|
loft:
|
||||||
|
- annotations:
|
||||||
|
catalog.cattle.io/certified: partner
|
||||||
|
catalog.cattle.io/display-name: Loft
|
||||||
|
catalog.cattle.io/kube-version: '>=1.22-0'
|
||||||
|
catalog.cattle.io/release-name: loft
|
||||||
|
apiVersion: v2
|
||||||
|
created: "2023-11-24T18:52:25.116599204Z"
|
||||||
|
description: Secure Cluster Sharing, Self-Service Namespace Provisioning and Virtual
|
||||||
|
Clusters
|
||||||
|
digest: 4969b0094cf1e009347d3f524a67394b3ac13f0afa3d938eb1c29f132bca4ddd
|
||||||
|
home: https://loft.sh
|
||||||
|
icon: https://static.loft.sh/loft/logo/loft-logo.svg
|
||||||
|
keywords:
|
||||||
|
- developer
|
||||||
|
- development
|
||||||
|
- sharing
|
||||||
|
- share
|
||||||
|
- multi-tenancy
|
||||||
|
- tenancy
|
||||||
|
- cluster
|
||||||
|
- space
|
||||||
|
- namespace
|
||||||
|
- vcluster
|
||||||
|
- vclusters
|
||||||
|
maintainers:
|
||||||
|
- email: info@loft.sh
|
||||||
|
name: Loft Labs, Inc.
|
||||||
|
url: https://twitter.com/loft_sh
|
||||||
|
name: loft
|
||||||
|
sources:
|
||||||
|
- https://github.com/loft-sh/loft
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- assets/loft/loft-3.3.3.tgz
|
||||||
|
version: 3.3.3
|
||||||
- annotations:
|
- annotations:
|
||||||
catalog.cattle.io/certified: partner
|
catalog.cattle.io/certified: partner
|
||||||
catalog.cattle.io/display-name: Loft
|
catalog.cattle.io/display-name: Loft
|
||||||
|
@ -49543,6 +49732,51 @@ entries:
|
||||||
- assets/portworx/portworx-essentials-2.9.100.tgz
|
- assets/portworx/portworx-essentials-2.9.100.tgz
|
||||||
version: 2.9.100
|
version: 2.9.100
|
||||||
postgresql:
|
postgresql:
|
||||||
|
- annotations:
|
||||||
|
catalog.cattle.io/certified: partner
|
||||||
|
catalog.cattle.io/display-name: PostgreSQL
|
||||||
|
catalog.cattle.io/kube-version: '>=1.19-0'
|
||||||
|
catalog.cattle.io/release-name: postgresql
|
||||||
|
category: Database
|
||||||
|
images: |
|
||||||
|
- name: os-shell
|
||||||
|
image: docker.io/bitnami/os-shell:11-debian-11-r91
|
||||||
|
- name: postgres-exporter
|
||||||
|
image: docker.io/bitnami/postgres-exporter:0.15.0-debian-11-r2
|
||||||
|
- name: postgresql
|
||||||
|
image: docker.io/bitnami/postgresql:16.1.0-debian-11-r9
|
||||||
|
licenses: Apache-2.0
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: 16.1.0
|
||||||
|
created: "2023-11-24T18:52:09.159850743Z"
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: file://./charts/common
|
||||||
|
tags:
|
||||||
|
- bitnami-common
|
||||||
|
version: 2.x.x
|
||||||
|
description: PostgreSQL (Postgres) is an open source object-relational database
|
||||||
|
known for reliability and data integrity. ACID-compliant, it supports foreign
|
||||||
|
keys, joins, views, triggers and stored procedures.
|
||||||
|
digest: 770d8a883c4e0a84ddbd3bb5b78bf028139f5f4fd3ce1c3929e29eab80d23772
|
||||||
|
home: https://bitnami.com
|
||||||
|
icon: https://wiki.postgresql.org/images/a/a4/PostgreSQL_logo.3colors.svg
|
||||||
|
keywords:
|
||||||
|
- postgresql
|
||||||
|
- postgres
|
||||||
|
- database
|
||||||
|
- sql
|
||||||
|
- replication
|
||||||
|
- cluster
|
||||||
|
maintainers:
|
||||||
|
- name: VMware, Inc.
|
||||||
|
url: https://github.com/bitnami/charts
|
||||||
|
name: postgresql
|
||||||
|
sources:
|
||||||
|
- https://github.com/bitnami/charts/tree/main/bitnami/postgresql
|
||||||
|
urls:
|
||||||
|
- assets/bitnami/postgresql-13.2.16.tgz
|
||||||
|
version: 13.2.16
|
||||||
- annotations:
|
- annotations:
|
||||||
catalog.cattle.io/certified: partner
|
catalog.cattle.io/certified: partner
|
||||||
catalog.cattle.io/display-name: PostgreSQL
|
catalog.cattle.io/display-name: PostgreSQL
|
||||||
|
@ -64079,6 +64313,32 @@ entries:
|
||||||
- assets/sumologic/sumologic-2.17.0.tgz
|
- assets/sumologic/sumologic-2.17.0.tgz
|
||||||
version: 2.17.0
|
version: 2.17.0
|
||||||
sysdig:
|
sysdig:
|
||||||
|
- annotations:
|
||||||
|
catalog.cattle.io/certified: partner
|
||||||
|
catalog.cattle.io/display-name: Sysdig
|
||||||
|
catalog.cattle.io/release-name: sysdig
|
||||||
|
apiVersion: v1
|
||||||
|
appVersion: 12.17.1
|
||||||
|
created: "2023-11-24T18:52:26.671858336Z"
|
||||||
|
deprecated: true
|
||||||
|
description: Sysdig Monitor and Secure agent
|
||||||
|
digest: 45182dfd967b331ec722e9cd0a336dd6af81225065122debffe94c4a889d18d4
|
||||||
|
home: https://www.sysdig.com/
|
||||||
|
icon: https://avatars.githubusercontent.com/u/5068817?s=200&v=4
|
||||||
|
keywords:
|
||||||
|
- monitoring
|
||||||
|
- security
|
||||||
|
- alerting
|
||||||
|
- metric
|
||||||
|
- troubleshooting
|
||||||
|
- run-time
|
||||||
|
name: sysdig
|
||||||
|
sources:
|
||||||
|
- https://app.sysdigcloud.com/#/settings/user
|
||||||
|
- https://github.com/draios/sysdig
|
||||||
|
urls:
|
||||||
|
- assets/sysdig/sysdig-1.16.23.tgz
|
||||||
|
version: 1.16.23
|
||||||
- annotations:
|
- annotations:
|
||||||
catalog.cattle.io/certified: partner
|
catalog.cattle.io/certified: partner
|
||||||
catalog.cattle.io/display-name: Sysdig
|
catalog.cattle.io/display-name: Sysdig
|
||||||
|
@ -69171,6 +69431,60 @@ entries:
|
||||||
- assets/hashicorp/vault-0.22.0.tgz
|
- assets/hashicorp/vault-0.22.0.tgz
|
||||||
version: 0.22.0
|
version: 0.22.0
|
||||||
wordpress:
|
wordpress:
|
||||||
|
- annotations:
|
||||||
|
catalog.cattle.io/certified: partner
|
||||||
|
catalog.cattle.io/display-name: WordPress
|
||||||
|
catalog.cattle.io/kube-version: '>=1.19-0'
|
||||||
|
catalog.cattle.io/release-name: wordpress
|
||||||
|
category: CMS
|
||||||
|
images: |
|
||||||
|
- name: apache-exporter
|
||||||
|
image: docker.io/bitnami/apache-exporter:1.0.3-debian-11-r1
|
||||||
|
- name: os-shell
|
||||||
|
image: docker.io/bitnami/os-shell:11-debian-11-r91
|
||||||
|
- name: wordpress
|
||||||
|
image: docker.io/bitnami/wordpress:6.4.1-debian-11-r6
|
||||||
|
licenses: Apache-2.0
|
||||||
|
apiVersion: v2
|
||||||
|
appVersion: 6.4.1
|
||||||
|
created: "2023-11-24T18:52:10.398648715Z"
|
||||||
|
dependencies:
|
||||||
|
- condition: memcached.enabled
|
||||||
|
name: memcached
|
||||||
|
repository: file://./charts/memcached
|
||||||
|
version: 6.x.x
|
||||||
|
- condition: mariadb.enabled
|
||||||
|
name: mariadb
|
||||||
|
repository: file://./charts/mariadb
|
||||||
|
version: 14.x.x
|
||||||
|
- name: common
|
||||||
|
repository: file://./charts/common
|
||||||
|
tags:
|
||||||
|
- bitnami-common
|
||||||
|
version: 2.x.x
|
||||||
|
description: WordPress is the world's most popular blogging and content management
|
||||||
|
platform. Powerful yet simple, everyone from students to global corporations
|
||||||
|
use it to build beautiful, functional websites.
|
||||||
|
digest: 55d5088f6666253acadeb0d2eb98e7dda8055819b0073e23dbe138dc73286a93
|
||||||
|
home: https://bitnami.com
|
||||||
|
icon: https://s.w.org/style/images/about/WordPress-logotype-simplified.png
|
||||||
|
keywords:
|
||||||
|
- application
|
||||||
|
- blog
|
||||||
|
- cms
|
||||||
|
- http
|
||||||
|
- php
|
||||||
|
- web
|
||||||
|
- wordpress
|
||||||
|
maintainers:
|
||||||
|
- name: VMware, Inc.
|
||||||
|
url: https://github.com/bitnami/charts
|
||||||
|
name: wordpress
|
||||||
|
sources:
|
||||||
|
- https://github.com/bitnami/charts/tree/main/bitnami/wordpress
|
||||||
|
urls:
|
||||||
|
- assets/bitnami/wordpress-18.1.17.tgz
|
||||||
|
version: 18.1.17
|
||||||
- annotations:
|
- annotations:
|
||||||
catalog.cattle.io/certified: partner
|
catalog.cattle.io/certified: partner
|
||||||
catalog.cattle.io/display-name: WordPress
|
catalog.cattle.io/display-name: WordPress
|
||||||
|
|
Loading…
Reference in New Issue