diff --git a/assets/bitnami/postgresql-13.2.16.tgz b/assets/bitnami/postgresql-13.2.16.tgz new file mode 100644 index 000000000..6271fcca8 Binary files /dev/null and b/assets/bitnami/postgresql-13.2.16.tgz differ diff --git a/assets/bitnami/wordpress-18.1.17.tgz b/assets/bitnami/wordpress-18.1.17.tgz new file mode 100644 index 000000000..3f19198b1 Binary files /dev/null and b/assets/bitnami/wordpress-18.1.17.tgz differ diff --git a/assets/datadog/datadog-3.49.5.tgz b/assets/datadog/datadog-3.49.5.tgz new file mode 100644 index 000000000..31e5be60c Binary files /dev/null and b/assets/datadog/datadog-3.49.5.tgz differ diff --git a/assets/haproxy/haproxy-1.35.3.tgz b/assets/haproxy/haproxy-1.35.3.tgz new file mode 100644 index 000000000..255bfab22 Binary files /dev/null and b/assets/haproxy/haproxy-1.35.3.tgz differ diff --git a/assets/jenkins/jenkins-4.8.5.tgz b/assets/jenkins/jenkins-4.8.5.tgz new file mode 100644 index 000000000..e1da4eae4 Binary files /dev/null and b/assets/jenkins/jenkins-4.8.5.tgz differ diff --git a/assets/linkerd/linkerd-control-plane-1.16.5.tgz b/assets/linkerd/linkerd-control-plane-1.16.5.tgz index fe110e430..1d20edcd9 100644 Binary files a/assets/linkerd/linkerd-control-plane-1.16.5.tgz and b/assets/linkerd/linkerd-control-plane-1.16.5.tgz differ diff --git a/assets/linkerd/linkerd-control-plane-1.16.6.tgz b/assets/linkerd/linkerd-control-plane-1.16.6.tgz new file mode 100644 index 000000000..caf53b1a5 Binary files /dev/null and b/assets/linkerd/linkerd-control-plane-1.16.6.tgz differ diff --git a/assets/loft/loft-3.3.3.tgz b/assets/loft/loft-3.3.3.tgz new file mode 100644 index 000000000..438001660 Binary files /dev/null and b/assets/loft/loft-3.3.3.tgz differ diff --git a/assets/sysdig/sysdig-1.16.23.tgz b/assets/sysdig/sysdig-1.16.23.tgz new file mode 100644 index 000000000..8a0121a95 Binary files /dev/null and b/assets/sysdig/sysdig-1.16.23.tgz differ diff --git a/charts/bitnami/postgresql/Chart.yaml b/charts/bitnami/postgresql/Chart.yaml index 624303270..738836b35 100644 --- a/charts/bitnami/postgresql/Chart.yaml +++ b/charts/bitnami/postgresql/Chart.yaml @@ -38,4 +38,4 @@ maintainers: name: postgresql sources: - https://github.com/bitnami/charts/tree/main/bitnami/postgresql -version: 13.2.15 +version: 13.2.16 diff --git a/charts/bitnami/postgresql/README.md b/charts/bitnami/postgresql/README.md index 8cb74c5cc..5348b1e66 100644 --- a/charts/bitnami/postgresql/README.md +++ b/charts/bitnami/postgresql/README.md @@ -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.pullPolicy` | PostgreSQL Prometheus Exporter image pull policy | `IfNotPresent` | | `metrics.image.pullSecrets` | Specify image pull secrets | `[]` | +| `metrics.collectors` | Control enabled collectors | `{}` | | `metrics.customMetrics` | Define additional custom metrics | `{}` | | `metrics.extraEnvVars` | Extra environment variables to add to PostgreSQL Prometheus exporter | `[]` | | `metrics.containerSecurityContext.enabled` | Enabled containers' Security Context | `true` | diff --git a/charts/bitnami/postgresql/templates/primary/configmap.yaml b/charts/bitnami/postgresql/templates/primary/configmap.yaml index 7bb8b7f31..7a69891c9 100644 --- a/charts/bitnami/postgresql/templates/primary/configmap.yaml +++ b/charts/bitnami/postgresql/templates/primary/configmap.yaml @@ -16,7 +16,7 @@ metadata: {{- end }} data: {{- if .Values.primary.configuration }} - postgresql.conf: |- + postgresql.conf: | {{- include "common.tplvalues.render" ( dict "value" .Values.primary.configuration "context" $ ) | nindent 4 }} {{- end }} {{- if .Values.primary.pgHbaConfiguration }} diff --git a/charts/bitnami/postgresql/templates/primary/statefulset.yaml b/charts/bitnami/postgresql/templates/primary/statefulset.yaml index 8f8d56dde..9735ed5ec 100644 --- a/charts/bitnami/postgresql/templates/primary/statefulset.yaml +++ b/charts/bitnami/postgresql/templates/primary/statefulset.yaml @@ -495,8 +495,15 @@ spec: {{- if .Values.diagnosticMode.enabled }} 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 }} - {{- else if .Values.metrics.customMetrics }} - args: ["--extend.query-path", "/conf/custom-metrics.yaml"] + {{- else if or .Values.metrics.customMetrics .Values.metrics.collectors }} + 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 }} 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" .) }} diff --git a/charts/bitnami/postgresql/values.yaml b/charts/bitnami/postgresql/values.yaml index ffdc9466e..921ffca27 100644 --- a/charts/bitnami/postgresql/values.yaml +++ b/charts/bitnami/postgresql/values.yaml @@ -1412,8 +1412,14 @@ metrics: ## - myRegistryKeySecretName ## 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 - ## 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: ## 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')" @@ -1427,7 +1433,7 @@ metrics: ## customMetrics: {} ## @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: ## extraEnvVars: ## - name: PG_EXPORTER_DISABLE_DEFAULT_METRICS diff --git a/charts/bitnami/wordpress/Chart.yaml b/charts/bitnami/wordpress/Chart.yaml index 2e97cd552..f0e5c1b1f 100644 --- a/charts/bitnami/wordpress/Chart.yaml +++ b/charts/bitnami/wordpress/Chart.yaml @@ -10,7 +10,7 @@ annotations: - 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-r5 + image: docker.io/bitnami/wordpress:6.4.1-debian-11-r6 licenses: Apache-2.0 apiVersion: v2 appVersion: 6.4.1 @@ -47,4 +47,4 @@ maintainers: name: wordpress sources: - https://github.com/bitnami/charts/tree/main/bitnami/wordpress -version: 18.1.15 +version: 18.1.17 diff --git a/charts/bitnami/wordpress/values.yaml b/charts/bitnami/wordpress/values.yaml index 23ba5c068..4b46a945b 100644 --- a/charts/bitnami/wordpress/values.yaml +++ b/charts/bitnami/wordpress/values.yaml @@ -76,7 +76,7 @@ diagnosticMode: image: registry: docker.io repository: bitnami/wordpress - tag: 6.4.1-debian-11-r5 + tag: 6.4.1-debian-11-r6 digest: "" ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' diff --git a/charts/datadog/datadog/CHANGELOG.md b/charts/datadog/datadog/CHANGELOG.md index 2432b5b10..a3d9bf744 100644 --- a/charts/datadog/datadog/CHANGELOG.md +++ b/charts/datadog/datadog/CHANGELOG.md @@ -1,5 +1,9 @@ # Datadog changelog +## 3.49.5 + +Fix registry selection with GKE Autopilot until new registries are allowed. + ## 3.49.4 * Exclude a namespace with Datadog resources from APM Single Step Instrumentation diff --git a/charts/datadog/datadog/Chart.yaml b/charts/datadog/datadog/Chart.yaml index 33bd672e1..2d141df7e 100644 --- a/charts/datadog/datadog/Chart.yaml +++ b/charts/datadog/datadog/Chart.yaml @@ -19,4 +19,4 @@ name: datadog sources: - https://app.datadoghq.com/account/settings#agent/kubernetes - https://github.com/DataDog/datadog-agent -version: 3.49.4 +version: 3.49.5 diff --git a/charts/datadog/datadog/README.md b/charts/datadog/datadog/README.md index 5f90040db..aeba43e37 100644 --- a/charts/datadog/datadog/README.md +++ b/charts/datadog/datadog/README.md @@ -1,6 +1,6 @@ # 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/). diff --git a/charts/datadog/datadog/templates/_helpers.tpl b/charts/datadog/datadog/templates/_helpers.tpl index 79374a457..feac94143 100644 --- a/charts/datadog/datadog/templates/_helpers.tpl +++ b/charts/datadog/datadog/templates/_helpers.tpl @@ -267,6 +267,8 @@ Return the proper registry based on datadog.site (requires .Values to be passed {{- define "registry" -}} {{- if .registry -}} {{- .registry -}} +{{- else if .providers.gke.autopilot -}} +gcr.io/datadoghq {{- else if eq .datadog.site "datadoghq.eu" -}} eu.gcr.io/datadoghq {{- else if eq .datadog.site "ddog-gov.com" -}} diff --git a/charts/haproxy/haproxy/Chart.yaml b/charts/haproxy/haproxy/Chart.yaml index e89bd6fba..ca517e02d 100644 --- a/charts/haproxy/haproxy/Chart.yaml +++ b/charts/haproxy/haproxy/Chart.yaml @@ -1,6 +1,6 @@ annotations: 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/display-name: HAProxy Kubernetes Ingress Controller catalog.cattle.io/kube-version: '>=1.22.0-0' @@ -21,4 +21,4 @@ name: haproxy sources: - https://github.com/haproxytech/kubernetes-ingress type: application -version: 1.35.1 +version: 1.35.3 diff --git a/charts/haproxy/haproxy/templates/_helpers.tpl b/charts/haproxy/haproxy/templates/_helpers.tpl index 94079183a..bea1374a7 100644 --- a/charts/haproxy/haproxy/templates/_helpers.tpl +++ b/charts/haproxy/haproxy/templates/_helpers.tpl @@ -153,10 +153,10 @@ Create a FQDN for the Service metrics. {{- end -}} {{/* -Create a default fully qualified default CRD job name. +Create a default fully qualified unique CRD job name. */}} {{- 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 -}} {{/* vim: set filetype=mustache: */}} diff --git a/charts/haproxy/haproxy/templates/controller-crdjob.yaml b/charts/haproxy/haproxy/templates/controller-crdjob.yaml index 5ca3648d8..c1f9a3c6a 100644 --- a/charts/haproxy/haproxy/templates/controller-crdjob.yaml +++ b/charts/haproxy/haproxy/templates/controller-crdjob.yaml @@ -26,8 +26,8 @@ metadata: app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/version: {{ .Chart.AppVersion }} spec: -{{- if .Capabilities.APIVersions.Has "batch/v1alpha1" }} - ttlSecondsAfterFinished: 0 +{{- if or (.Capabilities.APIVersions.Has "batch/v1alpha1") (semverCompare ">=1.23.0-0" .Capabilities.KubeVersion.Version) }} + ttlSecondsAfterFinished: 120 {{- end }} backoffLimit: 0 template: diff --git a/charts/jenkins/jenkins/CHANGELOG.md b/charts/jenkins/jenkins/CHANGELOG.md index 32114a567..7ef7aa08a 100644 --- a/charts/jenkins/jenkins/CHANGELOG.md +++ b/charts/jenkins/jenkins/CHANGELOG.md @@ -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. 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 Add `artifacthub.io/changes` changelog annotation to the released chart. diff --git a/charts/jenkins/jenkins/Chart.yaml b/charts/jenkins/jenkins/Chart.yaml index c1d78b902..c2bb4e660 100644 --- a/charts/jenkins/jenkins/Chart.yaml +++ b/charts/jenkins/jenkins/Chart.yaml @@ -1,7 +1,7 @@ annotations: artifacthub.io/category: integration-delivery - artifacthub.io/changes: Add `artifacthub.io/changes` changelog annotation to the - released chart. + 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 @@ -51,4 +51,4 @@ sources: - https://github.com/jenkinsci/docker-inbound-agent - https://github.com/maorfr/kube-tasks - https://github.com/jenkinsci/configuration-as-code-plugin -version: 4.8.4 +version: 4.8.5 diff --git a/charts/linkerd/linkerd-control-plane/Chart.yaml b/charts/linkerd/linkerd-control-plane/Chart.yaml index 9f0284d56..c739729b9 100644 --- a/charts/linkerd/linkerd-control-plane/Chart.yaml +++ b/charts/linkerd/linkerd-control-plane/Chart.yaml @@ -5,7 +5,7 @@ annotations: catalog.cattle.io/kube-version: '>=1.21.0-0' catalog.cattle.io/release-name: linkerd-control-plane apiVersion: v2 -appVersion: stable-2.14.4 +appVersion: stable-2.14.5 dependencies: - name: partials repository: file://./charts/partials @@ -25,4 +25,4 @@ name: linkerd-control-plane sources: - https://github.com/linkerd/linkerd2/ type: application -version: 1.16.5 +version: 1.16.6 diff --git a/charts/linkerd/linkerd-control-plane/README.md b/charts/linkerd/linkerd-control-plane/README.md index 3f7d938d1..5d364aa5e 100644 --- a/charts/linkerd/linkerd-control-plane/README.md +++ b/charts/linkerd/linkerd-control-plane/README.md @@ -3,7 +3,7 @@ Linkerd gives you observability, reliability, and security 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) ![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 | | 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 | +| 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 | | controllerLogLevel | string | `"info"` | Log level for the control plane components | | controllerReplicas | int | `1` | Number of replicas for each control plane pod | diff --git a/charts/linkerd/linkerd-control-plane/templates/destination.yaml b/charts/linkerd/linkerd-control-plane/templates/destination.yaml index ffa8da52e..d9992747f 100644 --- a/charts/linkerd/linkerd-control-plane/templates/destination.yaml +++ b/charts/linkerd/linkerd-control-plane/templates/destination.yaml @@ -153,6 +153,7 @@ spec: template: metadata: annotations: + checksum/config: {{ include (print $.Template.BasePath "/destination-rbac.yaml") . | sha256sum }} {{ include "partials.annotations.created-by" . }} {{- include "partials.proxy.annotations" . | nindent 8}} {{- with .Values.podAnnotations }}{{ toYaml . | trim | nindent 8 }}{{- end }} @@ -203,7 +204,7 @@ spec: - -default-opaque-ports={{.Values.proxy.opaquePorts}} - -enable-pprof={{.Values.enablePprof | default false}} {{- include "partials.linkerd.trace" . | nindent 8 -}} - image: {{.Values.controllerImage}}:{{.Values.linkerdVersion}} + image: {{.Values.controllerImage}}:{{.Values.controllerImageVersion | default .Values.linkerdVersion}} imagePullPolicy: {{.Values.imagePullPolicy}} livenessProbe: httpGet: @@ -239,7 +240,7 @@ spec: - -log-level={{.Values.controllerLogLevel}} - -log-format={{.Values.controllerLogFormat}} - -enable-pprof={{.Values.enablePprof | default false}} - image: {{.Values.controllerImage}}:{{.Values.linkerdVersion}} + image: {{.Values.controllerImage}}:{{.Values.controllerImageVersion | default .Values.linkerdVersion}} imagePullPolicy: {{.Values.imagePullPolicy}} livenessProbe: httpGet: diff --git a/charts/linkerd/linkerd-control-plane/templates/heartbeat.yaml b/charts/linkerd/linkerd-control-plane/templates/heartbeat.yaml index c67d03377..f90875fe8 100644 --- a/charts/linkerd/linkerd-control-plane/templates/heartbeat.yaml +++ b/charts/linkerd/linkerd-control-plane/templates/heartbeat.yaml @@ -54,7 +54,7 @@ spec: restartPolicy: Never containers: - name: heartbeat - image: {{.Values.controllerImage}}:{{.Values.linkerdVersion}} + image: {{.Values.controllerImage}}:{{.Values.controllerImageVersion | default .Values.linkerdVersion}} imagePullPolicy: {{.Values.imagePullPolicy}} env: - name: LINKERD_DISABLED diff --git a/charts/linkerd/linkerd-control-plane/templates/identity.yaml b/charts/linkerd/linkerd-control-plane/templates/identity.yaml index 65a15518e..b22357f01 100644 --- a/charts/linkerd/linkerd-control-plane/templates/identity.yaml +++ b/charts/linkerd/linkerd-control-plane/templates/identity.yaml @@ -163,7 +163,7 @@ spec: env: - name: LINKERD_DISABLED value: "linkerd-await cannot block the identity controller" - image: {{.Values.controllerImage}}:{{.Values.linkerdVersion}} + image: {{.Values.controllerImage}}:{{.Values.controllerImageVersion | default .Values.linkerdVersion}} imagePullPolicy: {{.Values.imagePullPolicy}} livenessProbe: httpGet: diff --git a/charts/linkerd/linkerd-control-plane/templates/proxy-injector.yaml b/charts/linkerd/linkerd-control-plane/templates/proxy-injector.yaml index 336d60646..89798c06a 100644 --- a/charts/linkerd/linkerd-control-plane/templates/proxy-injector.yaml +++ b/charts/linkerd/linkerd-control-plane/templates/proxy-injector.yaml @@ -32,6 +32,7 @@ spec: template: metadata: annotations: + checksum/config: {{ include (print $.Template.BasePath "/proxy-injector-rbac.yaml") . | sha256sum }} {{ include "partials.annotations.created-by" . }} {{- include "partials.proxy.annotations" . | nindent 8}} {{- with .Values.podAnnotations }}{{ toYaml . | trim | nindent 8 }}{{- end }} @@ -76,7 +77,7 @@ spec: - -log-format={{.Values.controllerLogFormat}} - -linkerd-namespace={{.Release.Namespace}} - -enable-pprof={{.Values.enablePprof | default false}} - image: {{.Values.controllerImage}}:{{.Values.linkerdVersion}} + image: {{.Values.controllerImage}}:{{.Values.controllerImageVersion | default .Values.linkerdVersion}} imagePullPolicy: {{.Values.imagePullPolicy}} livenessProbe: httpGet: diff --git a/charts/linkerd/linkerd-control-plane/values.yaml b/charts/linkerd/linkerd-control-plane/values.yaml index e4fb45340..0c7b7596f 100644 --- a/charts/linkerd/linkerd-control-plane/values.yaml +++ b/charts/linkerd/linkerd-control-plane/values.yaml @@ -22,7 +22,7 @@ controlPlaneTracing: false # -- namespace to send control plane traces to controlPlaneTracingNamespace: linkerd-jaeger # -- control plane version. See Proxy section for proxy version -linkerdVersion: stable-2.14.4 +linkerdVersion: stable-2.14.5 # -- default kubernetes deployment strategy deploymentStrategy: rollingUpdate: @@ -292,6 +292,9 @@ webhookFailurePolicy: Ignore # controllerImage -- Docker image for the destination and identity components 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 controllerReplicas: 1 # -- User ID for the control plane components diff --git a/charts/loft/loft/Chart.yaml b/charts/loft/loft/Chart.yaml index e43aae2c8..55233c235 100644 --- a/charts/loft/loft/Chart.yaml +++ b/charts/loft/loft/Chart.yaml @@ -28,4 +28,4 @@ name: loft sources: - https://github.com/loft-sh/loft type: application -version: 3.3.2 +version: 3.3.3 diff --git a/charts/loft/loft/templates/ingress.yaml b/charts/loft/loft/templates/ingress.yaml index d19f01595..fdea219ce 100644 --- a/charts/loft/loft/templates/ingress.yaml +++ b/charts/loft/loft/templates/ingress.yaml @@ -19,8 +19,6 @@ metadata: annotations: nginx.ingress.kubernetes.io/proxy-read-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 {{- with .Values.ingress.annotations }} {{- toYaml . | nindent 4 }} diff --git a/charts/sysdig/sysdig/CHANGELOG.md b/charts/sysdig/sysdig/CHANGELOG.md index 4b86a437c..b04332cf8 100644 --- a/charts/sysdig/sysdig/CHANGELOG.md +++ b/charts/sysdig/sysdig/CHANGELOG.md @@ -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. ## 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 ### 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)) diff --git a/charts/sysdig/sysdig/Chart.yaml b/charts/sysdig/sysdig/Chart.yaml index 55a231079..76781b153 100644 --- a/charts/sysdig/sysdig/Chart.yaml +++ b/charts/sysdig/sysdig/Chart.yaml @@ -19,4 +19,4 @@ name: sysdig sources: - https://app.sysdigcloud.com/#/settings/user - https://github.com/draios/sysdig -version: 1.16.21 +version: 1.16.23 diff --git a/charts/sysdig/sysdig/README.md b/charts/sysdig/sysdig/README.md index b509c68c1..34aa09149 100644 --- a/charts/sysdig/sysdig/README.md +++ b/charts/sysdig/sysdig/README.md @@ -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.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.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.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` | @@ -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.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.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.image.pullPolicy` | The Image pull policy for the Node Image Analyzer. | `IfNotPresent` | | `nodeImageAnalyzer.image.pullSecrets` | Image pull secrets for the Node Image Analyzer. | `nil` | diff --git a/charts/sysdig/sysdig/RELEASE-NOTES.md b/charts/sysdig/sysdig/RELEASE-NOTES.md index c748c770c..9a27747a3 100644 --- a/charts/sysdig/sysdig/RELEASE-NOTES.md +++ b/charts/sysdig/sysdig/RELEASE-NOTES.md @@ -1,5 +1,5 @@ # What's Changed -### 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)) -#### Full diff: https://github.com/sysdiglabs/charts/compare/sysdig-deploy-1.29.8...sysdig-1.16.21 +### 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)) +#### Full diff: https://github.com/sysdiglabs/charts/compare/sysdig-deploy-1.29.12...sysdig-1.16.23 diff --git a/charts/sysdig/sysdig/values.yaml b/charts/sysdig/sysdig/values.yaml index d3cbfc292..62fffb1a8 100644 --- a/charts/sysdig/sysdig/values.yaml +++ b/charts/sysdig/sysdig/values.yaml @@ -193,7 +193,7 @@ nodeImageAnalyzer: deploy: false image: repository: sysdig/node-image-analyzer - tag: 0.1.29 + tag: 0.1.30 digest: null pullPolicy: IfNotPresent # pullSecrets: @@ -351,7 +351,7 @@ nodeAnalyzer: deploy: true image: repository: sysdig/node-image-analyzer - tag: 0.1.29 + tag: 0.1.30 digest: null pullPolicy: IfNotPresent # The Docker socket path. @@ -393,7 +393,7 @@ nodeAnalyzer: deploy: true image: repository: sysdig/host-analyzer - tag: 0.1.17 + tag: 0.1.18 digest: null pullPolicy: IfNotPresent # The scanning schedule specification for the host analyzer expressed as a crontab string such as “5 4 * * *”. diff --git a/index.yaml b/index.yaml index fad87e13a..b36908f6f 100644 --- a/index.yaml +++ b/index.yaml @@ -18409,6 +18409,43 @@ entries: - assets/weka/csi-wekafsplugin-0.6.400.tgz version: 0.6.400 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: catalog.cattle.io/certified: partner catalog.cattle.io/display-name: Datadog @@ -26021,6 +26058,34 @@ entries: - assets/gopaddle/gopaddle-4.2.5.tgz version: 4.2.5 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: artifacthub.io/changes: | - CRD job updates and bug fixes @@ -28869,6 +28934,64 @@ entries: - assets/jaeger/jaeger-operator-2.36.0.tgz version: 2.36.0 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: artifacthub.io/category: integration-delivery 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/release-name: linkerd-control-plane apiVersion: v2 - appVersion: stable-2.14.4 - created: "2023-11-17T13:49:19.42789717Z" + appVersion: stable-2.14.5 + created: "2023-11-24T18:52:25.107762565Z" 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: 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 icon: https://linkerd.io/images/logo-only-200h.png keywords: @@ -38944,6 +39098,41 @@ entries: - assets/linkerd/linkerd-control-plane-1.12.5.tgz version: 1.12.5 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: catalog.cattle.io/certified: partner catalog.cattle.io/display-name: Loft @@ -49543,6 +49732,51 @@ entries: - assets/portworx/portworx-essentials-2.9.100.tgz version: 2.9.100 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: catalog.cattle.io/certified: partner catalog.cattle.io/display-name: PostgreSQL @@ -64079,6 +64313,32 @@ entries: - assets/sumologic/sumologic-2.17.0.tgz version: 2.17.0 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: catalog.cattle.io/certified: partner catalog.cattle.io/display-name: Sysdig @@ -69171,6 +69431,60 @@ entries: - assets/hashicorp/vault-0.22.0.tgz version: 0.22.0 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: catalog.cattle.io/certified: partner catalog.cattle.io/display-name: WordPress