From c043303e98406856c8f75008cc17ee5ec1cc60e2 Mon Sep 17 00:00:00 2001 From: actions Date: Thu, 22 Apr 2021 22:01:03 +0000 Subject: [PATCH] Merge pull request #1133 from nickgerace/dev-v2.5-source-windows Add option to disable Windows logging for Windows clusters --- .../rancher-logging-3.9.400-rc05.tgz | Bin 0 -> 10316 bytes .../rancher-logging-crd-3.9.400-rc05.tgz | Bin 0 -> 36676 bytes .../3.9.400-rc05/Chart.yaml | 10 + .../3.9.400-rc05/README.md | 2 + .../logging.banzaicloud.io_clusterflows.yaml | 765 ++ ...logging.banzaicloud.io_clusteroutputs.yaml | 4721 +++++++++++ .../logging.banzaicloud.io_flows.yaml | 761 ++ .../logging.banzaicloud.io_loggings.yaml | 7095 +++++++++++++++++ .../logging.banzaicloud.io_outputs.yaml | 4715 +++++++++++ .../rancher-logging/3.9.400-rc05/.helmignore | 22 + .../rancher-logging/3.9.400-rc05/Chart.yaml | 19 + .../rancher-logging/3.9.400-rc05/README.md | 131 + .../3.9.400-rc05/app-readme.md | 22 + .../3.9.400-rc05/templates/NOTES.txt | 0 .../3.9.400-rc05/templates/_helpers.tpl | 66 + .../3.9.400-rc05/templates/clusterrole.yaml | 167 + .../templates/clusterrolebinding.yaml | 18 + .../3.9.400-rc05/templates/crds.yaml | 6 + .../3.9.400-rc05/templates/deployment.yaml | 68 + .../templates/loggings/aks/logging.yaml | 58 + .../templates/loggings/eks/logging.yaml | 59 + .../templates/loggings/gke/logging.yaml | 58 + .../loggings/k3s/logging-k3s-openrc.yaml | 68 + .../loggings/k3s/logging-k3s-systemd.yaml | 68 + .../templates/loggings/rke/configmap.yaml | 29 + .../templates/loggings/rke/daemonset.yaml | 124 + .../templates/loggings/rke2/configmap.yaml | 22 + .../templates/loggings/rke2/daemonset.yaml | 110 + .../rke2/logging-rke2-containers.yaml | 73 + .../templates/loggings/root/logging.yaml | 113 + .../3.9.400-rc05/templates/psp.yaml | 33 + .../3.9.400-rc05/templates/service.yaml | 20 + .../templates/serviceMonitor.yaml | 30 + .../templates/serviceaccount.yaml | 10 + .../3.9.400-rc05/templates/userroles.yaml | 35 + .../templates/validate-install-crd.yaml | 18 + .../templates/validate-install.yaml | 5 + .../rancher-logging/3.9.400-rc05/values.yaml | 175 + index.yaml | 5344 ++++++++++++- 39 files changed, 24802 insertions(+), 238 deletions(-) create mode 100755 assets/rancher-logging/rancher-logging-3.9.400-rc05.tgz create mode 100755 assets/rancher-logging/rancher-logging-crd-3.9.400-rc05.tgz create mode 100755 charts/rancher-logging/rancher-logging-crd/3.9.400-rc05/Chart.yaml create mode 100755 charts/rancher-logging/rancher-logging-crd/3.9.400-rc05/README.md create mode 100755 charts/rancher-logging/rancher-logging-crd/3.9.400-rc05/templates/logging.banzaicloud.io_clusterflows.yaml create mode 100755 charts/rancher-logging/rancher-logging-crd/3.9.400-rc05/templates/logging.banzaicloud.io_clusteroutputs.yaml create mode 100755 charts/rancher-logging/rancher-logging-crd/3.9.400-rc05/templates/logging.banzaicloud.io_flows.yaml create mode 100755 charts/rancher-logging/rancher-logging-crd/3.9.400-rc05/templates/logging.banzaicloud.io_loggings.yaml create mode 100755 charts/rancher-logging/rancher-logging-crd/3.9.400-rc05/templates/logging.banzaicloud.io_outputs.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/.helmignore create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/Chart.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/README.md create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/app-readme.md create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/NOTES.txt create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/_helpers.tpl create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/clusterrole.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/clusterrolebinding.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/crds.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/deployment.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/aks/logging.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/eks/logging.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/gke/logging.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/k3s/logging-k3s-openrc.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/k3s/logging-k3s-systemd.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke/configmap.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke/daemonset.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke2/configmap.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke2/daemonset.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke2/logging-rke2-containers.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/root/logging.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/psp.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/service.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/serviceMonitor.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/serviceaccount.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/userroles.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/validate-install-crd.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/validate-install.yaml create mode 100755 charts/rancher-logging/rancher-logging/3.9.400-rc05/values.yaml mode change 100644 => 100755 index.yaml diff --git a/assets/rancher-logging/rancher-logging-3.9.400-rc05.tgz b/assets/rancher-logging/rancher-logging-3.9.400-rc05.tgz new file mode 100755 index 0000000000000000000000000000000000000000..92a3a8503c73e1a9b0aab3dc949dfc65501faaec GIT binary patch literal 10316 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 **Tip**: You can use the default [values.yaml](values.yaml) + +## Installing Fluentd and Fluent-bit via logging + +The previous chart does **not** install `logging` resource to deploy Fluentd and Fluent-bit on cluster. To install them please use the [Logging Operator Logging](https://github.com/banzaicloud/logging-operator/tree/master/charts/logging-operator-logging) chart. + +## tl;dr: + +```bash +$ helm repo add banzaicloud-stable https://kubernetes-charts.banzaicloud.com +$ helm repo update +$ helm install banzaicloud-stable/logging-operator-logging +``` + +## Configuration + +The following tables lists the configurable parameters of the logging-operator-logging chart and their default values. +## tl;dr: + +```bash +$ helm repo add banzaicloud-stable https://kubernetes-charts.banzaicloud.com +$ helm repo update +$ helm install banzaicloud-stable/logging-operator-logging +``` + +## Configuration + +The following tables lists the configurable parameters of the logging-operator-logging chart and their default values. + +| Parameter | Description | Default | +| --------------------------------------------------- | ------------------------------------------------------ | ------------------------------ | +| `tls.enabled` | Enabled TLS communication between components | true | +| `tls.fluentdSecretName` | Specified secret name, which contain tls certs | This will overwrite automatic Helm certificate generation. | +| `tls.fluentbitSecretName` | Specified secret name, which contain tls certs | This will overwrite automatic Helm certificate generation. | +| `tls.sharedKey` | Shared key between nodes (fluentd-fluentbit) | [autogenerated] | +| `fluentbit.enabled` | Install fluent-bit | true | +| `fluentbit.namespace` | Specified fluentbit installation namespace | same as operator namespace | +| `fluentbit.image.tag` | Fluentbit container image tag | `1.6.10` | +| `fluentbit.image.repository` | Fluentbit container image repository | `fluent/fluent-bit` | +| `fluentbit.image.pullPolicy` | Fluentbit container pull policy | `IfNotPresent` | +| `fluentd.enabled` | Install fluentd | true | +| `fluentd.image.tag` | Fluentd container image tag | `v1.11.5-alpine-12` | +| `fluentd.image.repository` | Fluentd container image repository | `ghcr.io/banzaicloud/fluentd` | +| `fluentd.image.pullPolicy` | Fluentd container pull policy | `IfNotPresent` | +| `fluentd.volumeModImage.tag` | Fluentd volumeModImage container image tag | `latest` | +| `fluentd.volumeModImage.repository` | Fluentd volumeModImage container image repository | `busybox` | +| `fluentd.volumeModImage.pullPolicy` | Fluentd volumeModImage container pull policy | `IfNotPresent` | +| `fluentd.configReloaderImage.tag` | Fluentd configReloaderImage container image tag | `v0.2.2` | +| `fluentd.configReloaderImage.repository` | Fluentd configReloaderImage container image repository | `jimmidyson/configmap-reload` | +| `fluentd.configReloaderImage.pullPolicy` | Fluentd configReloaderImage container pull policy | `IfNotPresent` | +| `fluentd.fluentdPvcSpec.accessModes` | Fluentd persistence volume access modes | `[ReadWriteOnce]` | +| `fluentd.fluentdPvcSpec.resources.requests.storage` | Fluentd persistence volume size | `21Gi` | +| `fluentd.fluentdPvcSpec.storageClassName` | Fluentd persistence volume storageclass | `"""` | diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/app-readme.md b/charts/rancher-logging/rancher-logging/3.9.400-rc05/app-readme.md new file mode 100755 index 0000000000..2de4ab4c55 --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/app-readme.md @@ -0,0 +1,22 @@ +# Rancher Logging + +This chart is based off of the upstream [Banzai Logging Operator](https://banzaicloud.com/docs/one-eye/logging-operator/) chart. The chart deploys a logging operator and CRDs, which allows users to configure complex logging pipelines with a few simple custom resources. There are two levels of logging, which allow you to collect all logs in a cluster or from a single namespace. + +For more information on how to use the feature, refer to our [docs](https://rancher.com/docs/rancher/v2.x/en/logging/v2.5/). + +## Namespace-level logging + +To collect logs from a single namespace, users create flows and these flows are connected to outputs or cluster outputs. + +## Cluster-level logging + +To collect logs from an entire cluster, users create cluster flows and cluster outputs. + +## CRDs + +- [Cluster Flow](https://banzaicloud.com/docs/one-eye/logging-operator/crds/v1beta1/clusterflow_types/) - A cluster flow is a CRD (`ClusterFlow`) that defines what logs to collect from the entire cluster. The cluster flow must be deployed in the same namespace as the logging operator. +- [Cluster Output](https://banzaicloud.com/docs/one-eye/logging-operator/crds/v1beta1/clusteroutput_types/) - A cluster output is a CRD (`ClusterOutput`) that defines how to connect to logging providers so they can start collecting logs. The cluster output must be deployed in the same namespace as the logging operator. The convenience of using a cluster output is that either a cluster flow or flow can send logs to those providers without needing to define specific outputs in each namespace for each flow. +- [Flow](https://banzaicloud.com/docs/one-eye/logging-operator/crds/v1beta1/flow_types/) - A flow is a CRD (`Flow`) that defines what logs to collect from the namespace that it is deployed in. +- [Output](https://banzaicloud.com/docs/one-eye/logging-operator/crds/v1beta1/output_types/) - An output is a CRD (`Output`) that defines how to connect to logging providers so logs can be sent to the provider. + +For more information on how to configure the Helm chart, refer to the Helm README. diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/NOTES.txt b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/NOTES.txt new file mode 100755 index 0000000000..e69de29bb2 diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/_helpers.tpl b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/_helpers.tpl new file mode 100755 index 0000000000..b2b289443b --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/_helpers.tpl @@ -0,0 +1,66 @@ +{{/* vim: set filetype=mustache: */}} +{{/* +Expand the name of the chart. +*/}} +{{- define "logging-operator.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} +{{- end -}} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "logging-operator.fullname" -}} +{{- if .Values.fullnameOverride -}} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} +{{- else -}} +{{- $name := default .Chart.Name .Values.nameOverride -}} +{{- if contains $name .Release.Name -}} +{{- .Release.Name | trunc 63 | trimSuffix "-" -}} +{{- else -}} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} +{{- end -}} +{{- end -}} + +{{/* +Provides the namespace the chart will be installed in using the builtin .Release.Namespace, +or, if provided, a manually overwritten namespace value. +*/}} +{{- define "logging-operator.namespace" -}} +{{- if .Values.namespaceOverride -}} +{{ .Values.namespaceOverride -}} +{{- else -}} +{{ .Release.Namespace }} +{{- end -}} +{{- end -}} + + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "logging-operator.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} +{{- end -}} + +{{/* +Common labels +*/}} +{{- define "logging-operator.labels" -}} +app.kubernetes.io/name: {{ include "logging-operator.name" . }} +helm.sh/chart: {{ include "logging-operator.chart" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end -}} + +{{- define "system_default_registry" -}} +{{- if .Values.global.cattle.systemDefaultRegistry -}} +{{- printf "%s/" .Values.global.cattle.systemDefaultRegistry -}} +{{- else -}} +{{- "" -}} +{{- end -}} +{{- end -}} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/clusterrole.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/clusterrole.yaml new file mode 100755 index 0000000000..709eedb91b --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/clusterrole.yaml @@ -0,0 +1,167 @@ +{{- if .Values.rbac.enabled }} + +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + creationTimestamp: null + name: {{ template "logging-operator.fullname" . }} +rules: +- apiGroups: + - "" + resources: + - configmaps + - secrets + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: + - "" + resources: + - endpoints + - namespaces + - nodes + verbs: + - get + - list + - watch +- apiGroups: + - "" + resources: + - persistentvolumeclaims + - pods + - serviceaccounts + - services + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: + - "" + - events.k8s.io + resources: + - events + verbs: + - create + - get + - list + - watch +- apiGroups: + - apps + resources: + - daemonsets + - replicasets + - statefulsets + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: + - apps + - extensions + resources: + - deployments + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: + - extensions + - networking.k8s.io + resources: + - ingresses + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: + - extensions + - policy + resources: + - podsecuritypolicies + verbs: + - create + - delete + - get + - list + - patch + - update + - use + - watch +- apiGroups: + - logging.banzaicloud.io + resources: + - clusterflows + - clusteroutputs + - flows + - loggings + - outputs + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: + - logging.banzaicloud.io + resources: + - clusterflows/status + - clusteroutputs/status + - flows/status + - loggings/status + - outputs/status + verbs: + - get + - patch + - update +- apiGroups: + - monitoring.coreos.com + resources: + - servicemonitors + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: + - rbac.authorization.k8s.io + resources: + - clusterrolebindings + - clusterroles + - rolebindings + - roles + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +{{- end }} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/clusterrolebinding.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/clusterrolebinding.yaml new file mode 100755 index 0000000000..89d17d094f --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/clusterrolebinding.yaml @@ -0,0 +1,18 @@ +{{- if .Values.rbac.enabled }} +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: {{ template "logging-operator.fullname" . }} + labels: +{{ include "logging-operator.labels" . | indent 4 }} +subjects: + - kind: ServiceAccount + name: {{ template "logging-operator.fullname" . }} + namespace: {{ include "logging-operator.namespace" . }} +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: {{ template "logging-operator.fullname" . }} + + {{- end }} \ No newline at end of file diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/crds.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/crds.yaml new file mode 100755 index 0000000000..f573652d04 --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/crds.yaml @@ -0,0 +1,6 @@ +{{- if .Values.createCustomResource -}} +{{- range $path, $bytes := .Files.Glob "crds/*.yaml" }} +{{ $.Files.Get $path }} +--- +{{- end }} +{{- end }} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/deployment.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/deployment.yaml new file mode 100755 index 0000000000..26d14cca2f --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/deployment.yaml @@ -0,0 +1,68 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "logging-operator.fullname" . }} + namespace: {{ include "logging-operator.namespace" . }} + labels: +{{ include "logging-operator.labels" . | indent 4 }} +spec: + replicas: {{ .Values.replicaCount }} + selector: + matchLabels: + app.kubernetes.io/name: {{ include "logging-operator.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + template: + metadata: + labels: + app.kubernetes.io/name: {{ include "logging-operator.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + {{- with .Values.podLabels }} + {{ toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.annotations }} + annotations: + {{- toYaml . | nindent 8 }} + {{- end }} + spec: + {{- if .Values.priorityClassName }} + priorityClassName: {{ .Values.priorityClassName }} + {{- end }} + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + containers: + - name: {{ .Chart.Name }} + image: "{{ template "system_default_registry" . }}{{ .Values.image.repository }}:{{ .Values.image.tag }}" + args: {{ range .Values.extraArgs }} + - {{ . -}} + {{ end }} + imagePullPolicy: {{ .Values.image.pullPolicy }} + resources: + {{- toYaml .Values.resources | nindent 12 }} + ports: + - name: http + containerPort: {{ .Values.http.port }} + + {{- if .Values.securityContext }} + securityContext: {{ toYaml .Values.securityContext | nindent 12 }} + {{- end }} + {{- if .Values.podSecurityContext }} + securityContext: {{ toYaml .Values.podSecurityContext | nindent 8 }} + {{- end }} + + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- if .Values.rbac.enabled }} + serviceAccountName: {{ include "logging-operator.fullname" . }} + {{- end }} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/aks/logging.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/aks/logging.yaml new file mode 100755 index 0000000000..916f93b41d --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/aks/logging.yaml @@ -0,0 +1,58 @@ +{{- if .Values.additionalLoggingSources.aks.enabled }} +apiVersion: logging.banzaicloud.io/v1beta1 +kind: Logging +metadata: + name: {{ .Release.Name }}-aks + namespace: {{ .Release.Namespace }} + labels: +{{ include "logging-operator.labels" . | indent 4 }} +spec: + controlNamespace: {{ .Release.Namespace }} + fluentbit: + image: + repository: {{ template "system_default_registry" . }}{{ .Values.images.fluentbit.repository }} + tag: {{ .Values.images.fluentbit.tag }} + inputTail: + Tag: "aks" + Path: "/var/log/azure/kubelet-status.log" + {{- if .Values.global.psp.enabled }} + security: + podSecurityPolicyCreate: true + roleBasedAccessControlCreate: true + {{- end }} + {{- $total_tolerations := concat (.Values.tolerations) (.Values.fluentbit.tolerations) }} + {{- with $total_tolerations }} + tolerations: {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentbit.resources }} + resources: {{- toYaml . | nindent 6 }} + {{- end }} + fluentd: + image: + repository: {{ template "system_default_registry" . }}{{ .Values.images.fluentd.repository }} + tag: {{ .Values.images.fluentd.tag }} + configReloaderImage: + repository: {{ template "system_default_registry" . }}{{ .Values.images.config_reloader.repository }} + tag: {{ .Values.images.config_reloader.tag }} + disablePvc: {{ .Values.disablePvc }} + {{- if .Values.global.psp.enabled }} + security: + podSecurityPolicyCreate: true + roleBasedAccessControlCreate: true + {{- end }} + {{- with .Values.tolerations }} + tolerations: {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentd.resources }} + resources: {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentd.livenessProbe }} + livenessProbe: {{- toYaml . | nindent 6 }} + {{- end }} +{{- end }} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/eks/logging.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/eks/logging.yaml new file mode 100755 index 0000000000..da4af2d9e3 --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/eks/logging.yaml @@ -0,0 +1,59 @@ +{{- if .Values.additionalLoggingSources.eks.enabled }} +apiVersion: logging.banzaicloud.io/v1beta1 +kind: Logging +metadata: + name: {{ .Release.Name }}-eks + namespace: {{ .Release.Namespace }} + labels: +{{ include "logging-operator.labels" . | indent 4 }} +spec: + controlNamespace: {{ .Release.Namespace }} + fluentbit: + image: + repository: {{ template "system_default_registry" . }}{{ .Values.images.fluentbit.repository }} + tag: {{ .Values.images.fluentbit.tag }} + inputTail: + Tag: "eks" + Path: "/var/log/messages" + Parser: "syslog" + {{- if .Values.global.psp.enabled }} + security: + podSecurityPolicyCreate: true + roleBasedAccessControlCreate: true + {{- end }} + {{- $total_tolerations := concat (.Values.tolerations) (.Values.fluentbit.tolerations) }} + {{- with $total_tolerations }} + tolerations: {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentbit.resources }} + resources: {{- toYaml . | nindent 6 }} + {{- end }} + fluentd: + image: + repository: {{ template "system_default_registry" . }}{{ .Values.images.fluentd.repository }} + tag: {{ .Values.images.fluentd.tag }} + configReloaderImage: + repository: {{ template "system_default_registry" . }}{{ .Values.images.config_reloader.repository }} + tag: {{ .Values.images.config_reloader.tag }} + disablePvc: {{ .Values.disablePvc }} + {{- if .Values.global.psp.enabled }} + security: + podSecurityPolicyCreate: true + roleBasedAccessControlCreate: true + {{- end }} + {{- with .Values.tolerations }} + tolerations: {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentd.resources }} + resources: {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentd.livenessProbe }} + livenessProbe: {{- toYaml . | nindent 6 }} + {{- end }} +{{- end }} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/gke/logging.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/gke/logging.yaml new file mode 100755 index 0000000000..3823127b2d --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/gke/logging.yaml @@ -0,0 +1,58 @@ +{{- if .Values.additionalLoggingSources.gke.enabled }} +apiVersion: logging.banzaicloud.io/v1beta1 +kind: Logging +metadata: + name: {{ .Release.Name }}-gke + namespace: {{ .Release.Namespace }} + labels: +{{ include "logging-operator.labels" . | indent 4 }} +spec: + controlNamespace: {{ .Release.Namespace }} + fluentbit: + image: + repository: {{ template "system_default_registry" . }}{{ .Values.images.fluentbit.repository }} + tag: {{ .Values.images.fluentbit.tag }} + inputTail: + Tag: "gke" + Path: "/var/log/kube-proxy.log" + {{- if .Values.global.psp.enabled }} + security: + podSecurityPolicyCreate: true + roleBasedAccessControlCreate: true + {{- end }} + {{- $total_tolerations := concat (.Values.tolerations) (.Values.fluentbit.tolerations) }} + {{- with $total_tolerations }} + tolerations: {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentbit.resources }} + resources: {{- toYaml . | nindent 6 }} + {{- end }} + fluentd: + image: + repository: {{ template "system_default_registry" . }}{{ .Values.images.fluentd.repository }} + tag: {{ .Values.images.fluentd.tag }} + configReloaderImage: + repository: {{ template "system_default_registry" . }}{{ .Values.images.config_reloader.repository }} + tag: {{ .Values.images.config_reloader.tag }} + disablePvc: {{ .Values.disablePvc }} + {{- if .Values.global.psp.enabled }} + security: + podSecurityPolicyCreate: true + roleBasedAccessControlCreate: true + {{- end }} + {{- with .Values.tolerations }} + tolerations: {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentd.resources }} + resources: {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentd.livenessProbe }} + livenessProbe: {{- toYaml . | nindent 6 }} + {{- end }} +{{- end }} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/k3s/logging-k3s-openrc.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/k3s/logging-k3s-openrc.yaml new file mode 100755 index 0000000000..cf5e988f35 --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/k3s/logging-k3s-openrc.yaml @@ -0,0 +1,68 @@ +{{- if and .Values.additionalLoggingSources.k3s.enabled (eq .Values.additionalLoggingSources.k3s.container_engine "openrc")}} +apiVersion: logging.banzaicloud.io/v1beta1 +kind: Logging +metadata: + name: {{ .Release.Name }}-k3s + namespace: {{ .Release.Namespace }} + labels: +{{ include "logging-operator.labels" . | indent 4 }} +spec: + controlNamespace: {{ .Release.Namespace }} + fluentbit: + image: + repository: {{ template "system_default_registry" . }}{{ .Values.images.fluentbit.repository }} + tag: {{ .Values.images.fluentbit.tag }} + inputTail: + Tag: "k3s" + Path: "/var/log/k3s.log" + extraVolumeMounts: + - source: "/var/log/" + destination: "/var/log" + readOnly: true + {{- if .Values.global.psp.enabled }} + security: + podSecurityPolicyCreate: true + roleBasedAccessControlCreate: true + {{- end }} + {{- $total_tolerations := concat (.Values.tolerations) (.Values.fluentbit.tolerations) }} + {{- with $total_tolerations }} + tolerations: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentbit.resources }} + resources: + {{- toYaml . | nindent 6 }} + {{- end }} + fluentd: + image: + repository: {{ template "system_default_registry" . }}{{ .Values.images.fluentd.repository }} + tag: {{ .Values.images.fluentd.tag }} + configReloaderImage: + repository: {{ template "system_default_registry" . }}{{ .Values.images.config_reloader.repository }} + tag: {{ .Values.images.config_reloader.tag }} + disablePvc: {{ .Values.disablePvc }} + {{- if .Values.global.psp.enabled }} + security: + podSecurityPolicyCreate: true + roleBasedAccessControlCreate: true + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentd.resources }} + resources: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentd.livenessProbe }} + livenessProbe: {{- toYaml . | nindent 6 }} + {{- end }} +{{- end }} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/k3s/logging-k3s-systemd.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/k3s/logging-k3s-systemd.yaml new file mode 100755 index 0000000000..c4b3db0e73 --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/k3s/logging-k3s-systemd.yaml @@ -0,0 +1,68 @@ +{{- if and .Values.additionalLoggingSources.k3s.enabled (eq .Values.additionalLoggingSources.k3s.container_engine "systemd")}} +apiVersion: logging.banzaicloud.io/v1beta1 +kind: Logging +metadata: + name: {{ .Release.Name }}-k3s + namespace: {{ .Release.Namespace }} + labels: +{{ include "logging-operator.labels" . | indent 4 }} +spec: + controlNamespace: {{ .Release.Namespace }} + fluentbit: + image: + repository: {{ template "system_default_registry" . }}{{ .Values.images.fluentbit.repository }} + tag: {{ .Values.images.fluentbit.tag }} + inputTail: + Tag: "k3s" + Path: "/var/log/syslog" + extraVolumeMounts: + - source: "/var/log/" + destination: "/var/log" + readOnly: true + {{- if .Values.global.psp.enabled }} + security: + podSecurityPolicyCreate: true + roleBasedAccessControlCreate: true + {{- end }} + {{- $total_tolerations := concat (.Values.tolerations) (.Values.fluentbit.tolerations) }} + {{- with $total_tolerations }} + tolerations: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentbit.resources }} + resources: + {{- toYaml . | nindent 6 }} + {{- end }} + fluentd: + image: + repository: {{ template "system_default_registry" . }}{{ .Values.images.fluentd.repository }} + tag: {{ .Values.images.fluentd.tag }} + configReloaderImage: + repository: {{ template "system_default_registry" . }}{{ .Values.images.config_reloader.repository }} + tag: {{ .Values.images.config_reloader.tag }} + disablePvc: {{ .Values.disablePvc }} + {{- if .Values.global.psp.enabled }} + security: + podSecurityPolicyCreate: true + roleBasedAccessControlCreate: true + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentd.resources }} + resources: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentd.livenessProbe }} + livenessProbe: {{- toYaml . | nindent 6 }} + {{- end }} +{{- end }} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke/configmap.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke/configmap.yaml new file mode 100755 index 0000000000..ab91d93e2f --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke/configmap.yaml @@ -0,0 +1,29 @@ +{{- if .Values.additionalLoggingSources.rke.enabled }} +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ .Release.Name }}-rke + labels: +{{ include "logging-operator.labels" . | indent 4 }} +data: + fluent-bit.conf: | + [SERVICE] + Log_Level {{ .Values.additionalLoggingSources.rke.fluentbit.log_level }} + Parsers_File parsers.conf + + [INPUT] + Tag rke + Name tail + Path_Key filename + Parser docker + DB /tail-db/tail-containers-state.db + Mem_Buf_Limit {{ .Values.additionalLoggingSources.rke.fluentbit.mem_buffer_limit }} + Path /var/lib/rancher/rke/log/*.log + + [OUTPUT] + Name forward + Match * + Host {{ .Release.Name }}-fluentd.{{ .Release.Namespace }}.svc + Port 24240 + Retry_Limit False +{{- end }} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke/daemonset.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke/daemonset.yaml new file mode 100755 index 0000000000..840b3e7226 --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke/daemonset.yaml @@ -0,0 +1,124 @@ +{{- if .Values.additionalLoggingSources.rke.enabled }} +{{- $containers := printf "%s/containers/" (default "/var/lib/docker" .Values.global.dockerRootDirectory) }} +apiVersion: apps/v1 +kind: DaemonSet +metadata: + name: "{{ .Release.Name }}-rke-aggregator" + namespace: "{{ .Release.Namespace }}" +spec: + selector: + matchLabels: + name: {{ .Release.Name }}-rke-aggregator + template: + metadata: + name: "{{ .Release.Name }}-rke-aggregator" + namespace: "{{ .Release.Namespace }}" + labels: + name: {{ .Release.Name }}-rke-aggregator + spec: + containers: + - name: fluentbit + image: "{{ template "system_default_registry" . }}{{ .Values.images.fluentbit.repository }}:{{ .Values.images.fluentbit.tag }}" + volumeMounts: + - mountPath: /var/lib/rancher/rke/log/ + name: indir + - mountPath: {{ $containers }} + name: containers + - mountPath: /tail-db + name: positiondb + - mountPath: /fluent-bit/etc/fluent-bit.conf + name: config + subPath: fluent-bit.conf + {{- if .Values.global.seLinux.enabled }} + securityContext: + seLinuxOptions: + type: rke_logreader_t + {{- end }} + volumes: + - name: indir + hostPath: + path: /var/lib/rancher/rke/log/ + type: DirectoryOrCreate + - name: containers + hostPath: + path: {{ $containers }} + type: DirectoryOrCreate + - name: positiondb + emptyDir: {} + - name: config + configMap: + name: "{{ .Release.Name }}-rke" + serviceAccountName: "{{ .Release.Name }}-rke-aggregator" + {{- $total_tolerations := concat (.Values.tolerations) (.Values.fluentbit.tolerations) }} + {{- with $total_tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: "{{ .Release.Name }}-rke-aggregator" + namespace: "{{ .Release.Namespace }}" +{{- if .Values.global.psp.enabled }} +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + name: "{{ .Release.Name }}-rke-aggregator" +rules: + - apiGroups: + - policy + resourceNames: + - "{{ .Release.Name }}-rke-aggregator" + resources: + - podsecuritypolicies + verbs: + - use +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: "{{ .Release.Name }}-rke-aggregator" +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: "{{ .Release.Name }}-rke-aggregator" +subjects: + - kind: ServiceAccount + name: "{{ .Release.Name }}-rke-aggregator" +--- +apiVersion: policy/v1beta1 +kind: PodSecurityPolicy +metadata: + name: "{{ .Release.Name }}-rke-aggregator" + namespace: "{{ .Release.Namespace }}" +spec: + allowPrivilegeEscalation: false + allowedHostPaths: + - pathPrefix: {{ $containers }} + readOnly: false + - pathPrefix: /var/lib/rancher/rke/log/ + readOnly: false + - pathPrefix: /var/lib/rancher/logging/ + readOnly: false + fsGroup: + rule: RunAsAny + readOnlyRootFilesystem: true + runAsUser: + rule: RunAsAny + seLinux: + rule: RunAsAny + supplementalGroups: + rule: RunAsAny + volumes: + - configMap + - emptyDir + - secret + - hostPath +{{- end }} +{{- end }} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke2/configmap.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke2/configmap.yaml new file mode 100755 index 0000000000..f1ba032d55 --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke2/configmap.yaml @@ -0,0 +1,22 @@ +{{- if .Values.additionalLoggingSources.rke2.enabled }} +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ .Release.Name }}-rke2 + labels: +{{ include "logging-operator.labels" . | indent 4 }} +data: + fluent-bit.conf: | + [INPUT] + Name systemd + Tag rke2 + Path {{ .Values.systemdLogPath | default "/var/log/journal" }} + Systemd_Filter _SYSTEMD_UNIT=rke2-server.service + + [OUTPUT] + Name forward + Match * + Host {{ .Release.Name }}-fluentd.{{ .Release.Namespace }}.svc + Port 24240 + Retry_Limit False +{{- end }} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke2/daemonset.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke2/daemonset.yaml new file mode 100755 index 0000000000..f45b74b76d --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke2/daemonset.yaml @@ -0,0 +1,110 @@ +{{- if .Values.additionalLoggingSources.rke2.enabled }} +apiVersion: apps/v1 +kind: DaemonSet +metadata: + name: "{{ .Release.Name }}-rke2-journald-aggregator" + namespace: "{{ .Release.Namespace }}" +spec: + selector: + matchLabels: + name: {{ .Release.Name }}-rke2-journald-aggregator + template: + metadata: + name: "{{ .Release.Name }}-rke2-journald-aggregator" + namespace: "{{ .Release.Namespace }}" + labels: + name: {{ .Release.Name }}-rke2-journald-aggregator + spec: + containers: + - name: fluentd + image: "{{ template "system_default_registry" . }}{{ .Values.images.fluentbit.repository }}:{{ .Values.images.fluentbit.tag }}" + {{- if .Values.global.seLinux.enabled }} + securityContext: + seLinuxOptions: + type: rke_logreader_t + {{- end }} + volumeMounts: + - mountPath: /fluent-bit/etc/ + name: config + - mountPath: {{ .Values.systemdLogPath | default "/var/log/journal" }} + name: journal + readOnly: true + - mountPath: /etc/machine-id + name: machine-id + readOnly: true + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: "{{ .Release.Name }}-rke2-journald-aggregator" + volumes: + - name: config + configMap: + name: "{{ .Release.Name }}-rke2" + - name: journal + hostPath: + path: {{ .Values.systemdLogPath | default "/var/log/journal" }} + - name: machine-id + hostPath: + path: /etc/machine-id +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: "{{ .Release.Name }}-rke2-journald-aggregator" + namespace: "{{ .Release.Namespace }}" +{{- if .Values.global.psp.enabled }} +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + name: "{{ .Release.Name }}-rke2-journald-aggregator" +rules: + - apiGroups: + - policy + resourceNames: + - "{{ .Release.Name }}-rke2-journald-aggregator" + resources: + - podsecuritypolicies + verbs: + - use +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: "{{ .Release.Name }}-rke2-journald-aggregator" +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: "{{ .Release.Name }}-rke2-journald-aggregator" +subjects: + - kind: ServiceAccount + name: "{{ .Release.Name }}-rke2-journald-aggregator" +--- +apiVersion: policy/v1beta1 +kind: PodSecurityPolicy +metadata: + name: "{{ .Release.Name }}-rke2-journald-aggregator" + namespace: "{{ .Release.Namespace }}" +spec: + allowPrivilegeEscalation: false + fsGroup: + rule: RunAsAny + readOnlyRootFilesystem: true + runAsUser: + rule: RunAsAny + seLinux: + rule: RunAsAny + supplementalGroups: + rule: RunAsAny + volumes: + - configMap + - emptyDir + - secret + - hostPath +{{- end }} +{{- end }} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke2/logging-rke2-containers.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke2/logging-rke2-containers.yaml new file mode 100755 index 0000000000..7be4972e7b --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/rke2/logging-rke2-containers.yaml @@ -0,0 +1,73 @@ +{{- if .Values.additionalLoggingSources.rke2.enabled }} +apiVersion: logging.banzaicloud.io/v1beta1 +kind: Logging +metadata: + name: {{ .Release.Name }}-rke2-containers + namespace: {{ .Release.Namespace }} +spec: + controlNamespace: {{ .Release.Namespace }} + fluentbit: + image: + repository: {{ template "system_default_registry" . }}{{ .Values.images.fluentbit.repository }} + tag: {{ .Values.images.fluentbit.tag }} + inputTail: + Tag: "rke2" + Path: "/var/log/containers/*rke*.log" + extraVolumeMounts: + - source: "/var/log/containers/" + destination: "/var/log/containers/" + readOnly: true + {{- if or .Values.global.psp.enabled .Values.global.seLinux.enabled }} + security: + {{- end }} + {{- if or .Values.global.psp.enabled }} + podSecurityPolicyCreate: true + roleBasedAccessControlCreate: true + {{- end }} + {{- if .Values.global.seLinux.enabled }} + securityContext: + seLinuxOptions: + type: rke_logreader_t + {{- end }} + {{- $total_tolerations := concat (.Values.tolerations) (.Values.fluentbit.tolerations) }} + {{- with $total_tolerations }} + tolerations: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentbit.resources }} + resources: + {{- toYaml . | nindent 6 }} + {{- end }} + fluentd: + image: + repository: {{ template "system_default_registry" . }}{{ .Values.images.fluentd.repository }} + tag: {{ .Values.images.fluentd.tag }} + configReloaderImage: + repository: {{ template "system_default_registry" . }}{{ .Values.images.config_reloader.repository }} + tag: {{ .Values.images.config_reloader.tag }} + disablePvc: {{ .Values.disablePvc }} + {{- if .Values.global.psp.enabled }} + security: + podSecurityPolicyCreate: true + roleBasedAccessControlCreate: true + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentd.resources }} + resources: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentd.livenessProbe }} + livenessProbe: {{- toYaml . | nindent 6 }} + {{- end }} +{{- end }} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/root/logging.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/root/logging.yaml new file mode 100755 index 0000000000..2c0506c0f9 --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/loggings/root/logging.yaml @@ -0,0 +1,113 @@ +{{- $containers := printf "%s/containers/" (default "/var/lib/docker" .Values.global.dockerRootDirectory) }} +apiVersion: logging.banzaicloud.io/v1beta1 +kind: Logging +metadata: + name: {{ .Release.Name }} + namespace: {{ .Release.Namespace }} + labels: +{{ include "logging-operator.labels" . | indent 4 }} +spec: + controlNamespace: {{ .Release.Namespace }} + {{- if not (kindIs "invalid" .Values.global.cattle.windows.enabled) }} + {{- if .Values.global.cattle.windows.enabled }} + nodeAgents: + - name: win-agent + profile: windows + nodeAgentFluentbit: + daemonSet: + spec: + template: + spec: + containers: + - image: "{{ template "system_default_registry" . }}{{ .Values.images.nodeagent_fluentbit.repository }}:{{ .Values.images.nodeagent_fluentbit.tag }}" + name: fluent-bit + tls: + enabled: {{ .Values.nodeAgents.tls.enabled | default false }} + {{- if .Values.additionalLoggingSources.rke.enabled }} + - name: win-agent-rke + profile: windows + nodeAgentFluentbit: + filterKubernetes: + Kube_Tag_Prefix: "kuberentes.C.var.lib.rancher.rke.log." + inputTail: + Path: "C:\\var\\lib\\rancher\\rke\\log" + extraVolumeMounts: + - source: "/var/lib/rancher/rke/log" + destination: "/var/lib/rancher/rke/log" + readOnly: true + daemonSet: + spec: + template: + spec: + containers: + - image: "{{ template "system_default_registry" . }}{{ .Values.images.nodeagent_fluentbit.repository }}:{{ .Values.images.nodeagent_fluentbit.tag }}" + name: fluent-bit + tls: + enabled: {{ .Values.nodeAgents.tls.enabled | default false }} + {{- end }} + {{- end }} + {{- end }} + fluentbit: + image: + repository: {{ template "system_default_registry" . }}{{ .Values.images.fluentbit.repository }} + tag: {{ .Values.images.fluentbit.tag }} + {{- if or .Values.global.psp.enabled .Values.global.seLinux.enabled }} + security: + {{- end }} + {{- if .Values.global.psp.enabled }} + podSecurityPolicyCreate: true + roleBasedAccessControlCreate: true + {{- end }} + {{- if .Values.global.seLinux.enabled }} + securityContext: + seLinuxOptions: + type: rke_logreader_t + {{- end }} + {{- if .Values.global.dockerRootDirectory }} + mountPath: {{ $containers }} + extraVolumeMounts: + - source: {{ $containers }} + destination: {{ $containers }} + readOnly: true + {{- end }} + {{- $total_tolerations := concat (.Values.tolerations) (.Values.fluentbit.tolerations) }} + {{- with $total_tolerations }} + tolerations: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentbit.resources }} + resources: + {{- toYaml . | nindent 6 }} + {{- end }} + fluentd: + image: + repository: {{ template "system_default_registry" . }}{{ .Values.images.fluentd.repository }} + tag: {{ .Values.images.fluentd.tag }} + configReloaderImage: + repository: {{ template "system_default_registry" . }}{{ .Values.images.config_reloader.repository }} + tag: {{ .Values.images.config_reloader.tag }} + disablePvc: {{ .Values.disablePvc }} + {{- if .Values.global.psp.enabled }} + security: + podSecurityPolicyCreate: true + roleBasedAccessControlCreate: true + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentd.resources }} + resources: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.fluentd.livenessProbe }} + livenessProbe: {{- toYaml . | nindent 6 }} + {{- end }} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/psp.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/psp.yaml new file mode 100755 index 0000000000..420067f597 --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/psp.yaml @@ -0,0 +1,33 @@ +{{ if and .Values.rbac.enabled .Values.rbac.psp.enabled }} +apiVersion: policy/v1beta1 +kind: PodSecurityPolicy +metadata: + name: psp.logging-operator + namespace: {{ include "logging-operator.namespace" . }} + annotations: + seccomp.security.alpha.kubernetes.io/allowedProfileNames: 'docker/default,runtime/default' + seccomp.security.alpha.kubernetes.io/defaultProfileName: 'runtime/default' + labels: +{{ include "logging-operator.labels" . | indent 4 }} +spec: + readOnlyRootFilesystem: true + privileged: false + allowPrivilegeEscalation: false + runAsUser: + rule: MustRunAsNonRoot + fsGroup: + rule: MustRunAs + ranges: + - min: 1 + max: 65535 + supplementalGroups: + rule: MustRunAs + ranges: + - min: 1 + max: 65535 + seLinux: + rule: RunAsAny + volumes: + - secret + - configMap +{{ end }} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/service.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/service.yaml new file mode 100755 index 0000000000..f419ae2c48 --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/service.yaml @@ -0,0 +1,20 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "logging-operator.fullname" . }} + namespace: {{ include "logging-operator.namespace" . }} + labels: +{{ include "logging-operator.labels" . | indent 4 }} +spec: + type: ClusterIP + {{- with .Values.http.service.clusterIP }} + clusterIP: {{ . }} + {{- end }} + ports: + - port: {{ .Values.http.port }} + targetPort: http + protocol: TCP + name: http + selector: + app.kubernetes.io/name: {{ include "logging-operator.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/serviceMonitor.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/serviceMonitor.yaml new file mode 100755 index 0000000000..1bb762cde5 --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/serviceMonitor.yaml @@ -0,0 +1,30 @@ +{{ if .Values.monitoring.serviceMonitor.enabled }} +apiVersion: monitoring.coreos.com/v1 +kind: ServiceMonitor +metadata: + name: {{ include "logging-operator.fullname" . }} + namespace: {{ include "logging-operator.namespace" . }} + labels: +{{ include "logging-operator.labels" . | indent 4 }} +{{- with .Values.monitoring.serviceMonitor.additionalLabels }} + {{- toYaml . | nindent 4 }} +{{- end }} +spec: + selector: + matchLabels: +{{ include "logging-operator.labels" . | indent 6 }} + endpoints: + - port: http + path: /metrics + {{- with .Values.monitoring.serviceMonitor.metricsRelabelings }} + metricRelabelings: + {{- toYaml . | nindent 6 }} + {{- end }} + {{- with .Values.monitoring.serviceMonitor.relabelings }} + relabelings: + {{- toYaml . | nindent 4 }} + {{- end }} + namespaceSelector: + matchNames: + - {{ include "logging-operator.namespace" . }} +{{- end }} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/serviceaccount.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/serviceaccount.yaml new file mode 100755 index 0000000000..cbb2a94b4f --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/serviceaccount.yaml @@ -0,0 +1,10 @@ +{{- if .Values.rbac.enabled }} +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ template "logging-operator.fullname" . }} + namespace: {{ include "logging-operator.namespace" . }} + labels: +{{ include "logging-operator.labels" . | indent 4 }} +{{- end }} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/userroles.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/userroles.yaml new file mode 100755 index 0000000000..f4136b09a4 --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/userroles.yaml @@ -0,0 +1,35 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: "logging-admin" + labels: + rbac.authorization.k8s.io/aggregate-to-admin: "true" +rules: + - apiGroups: + - "logging.banzaicloud.io" + resources: + - flows + - outputs + verbs: + - "*" +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: "logging-view" + labels: + rbac.authorization.k8s.io/aggregate-to-admin: "true" + rbac.authorization.k8s.io/aggregate-to-view: "true" + rbac.authorization.k8s.io/aggregate-to-edit: "true" +rules: + - apiGroups: + - "logging.banzaicloud.io" + resources: + - flows + - outputs + - clusterflows + - clusteroutputs + verbs: + - get + - list + - watch diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/validate-install-crd.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/validate-install-crd.yaml new file mode 100755 index 0000000000..66e8725e51 --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/validate-install-crd.yaml @@ -0,0 +1,18 @@ +#{{- if gt (len (lookup "rbac.authorization.k8s.io/v1" "ClusterRole" "" "")) 0 -}} +# {{- $found := dict -}} +# {{- set $found "logging.banzaicloud.io/v1beta1/ClusterFlow" false -}} +# {{- set $found "logging.banzaicloud.io/v1beta1/ClusterOutput" false -}} +# {{- set $found "logging.banzaicloud.io/v1beta1/Flow" false -}} +# {{- set $found "logging.banzaicloud.io/v1beta1/Logging" false -}} +# {{- set $found "logging.banzaicloud.io/v1beta1/Output" false -}} +# {{- range .Capabilities.APIVersions -}} +# {{- if hasKey $found (toString .) -}} +# {{- set $found (toString .) true -}} +# {{- end -}} +# {{- end -}} +# {{- range $_, $exists := $found -}} +# {{- if (eq $exists false) -}} +# {{- required "Required CRDs are missing. Please install the corresponding CRD chart before installing this chart." "" -}} +# {{- end -}} +# {{- end -}} +#{{- end -}} \ No newline at end of file diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/validate-install.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/validate-install.yaml new file mode 100755 index 0000000000..bd624cc4b4 --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/templates/validate-install.yaml @@ -0,0 +1,5 @@ +#{{- if .Values.global.dockerRootDirectory }} +#{{- if or (hasSuffix "/containers" .Values.global.dockerRootDirectory) (hasSuffix "/" .Values.global.dockerRootDirectory) }} +#{{- required "global.dockerRootDirectory must not end with suffix: '/' or '/containers'" "" -}} +#{{- end }} +#{{- end }} diff --git a/charts/rancher-logging/rancher-logging/3.9.400-rc05/values.yaml b/charts/rancher-logging/rancher-logging/3.9.400-rc05/values.yaml new file mode 100755 index 0000000000..9fb94326e0 --- /dev/null +++ b/charts/rancher-logging/rancher-logging/3.9.400-rc05/values.yaml @@ -0,0 +1,175 @@ +# Default values for logging-operator. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: rancher/mirrored-banzaicloud-logging-operator + tag: 3.9.4 + pullPolicy: IfNotPresent + +extraArgs: [] +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" +namespaceOverride: "" + +## Pod custom labels +## +podLabels: {} + +annotations: {} + +## Deploy CRDs used by Logging Operator. +## +createCustomResource: false + +resources: {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +nodeSelector: + kubernetes.io/os: linux + +tolerations: + - key: cattle.io/os + operator: "Equal" + value: "linux" + effect: NoSchedule + +affinity: {} + +http: + # http listen port number + port: 8080 + # Service definition for query http service + service: + type: ClusterIP + clusterIP: None + # Annotations to query http service + annotations: {} + # Labels to query http service + labels: {} + +# These "rbac" settings match the upstream defaults. For only using psp in the overlay files, which +# include the default Logging CRs created, see the "global.psp" setting. To enable psp for the entire +# chart, enable both "rbac.psp" and "global.psp" (this may require further changes to the chart). +rbac: + enabled: true + psp: + enabled: false + +## SecurityContext holds pod-level security attributes and common container settings. +## This defaults to non root user with uid 1000 and gid 2000. *v1.PodSecurityContext false +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ +## +podSecurityContext: {} +# runAsNonRoot: true +# runAsUser: 1000 +# fsGroup: 2000 +securityContext: {} +# allowPrivilegeEscalation: false +# readOnlyRootFilesystem: true + # capabilities: + # drop: ["ALL"] + +## Operator priorityClassName +## +priorityClassName: {} + +monitoring: + # Create a Prometheus Operator ServiceMonitor object + serviceMonitor: + enabled: false + additionalLabels: {} + metricRelabelings: [] + relabelings: [] + +disablePvc: true + +systemdLogPath: "/var/log/journal" + +additionalLoggingSources: + rke: + enabled: false + fluentbit: + log_level: "info" + mem_buffer_limit: "5MB" + rke2: + enabled: false + k3s: + enabled: false + container_engine: "systemd" + aks: + enabled: false + eks: + enabled: false + gke: + enabled: false + +images: + config_reloader: + repository: rancher/mirrored-jimmidyson-configmap-reload + tag: v0.4.0 + fluentbit: + repository: rancher/mirrored-fluent-fluent-bit + tag: 1.6.10 + fluentbit_debug: + repository: rancher/mirrored-fluent-fluent-bit + tag: 1.6.10-debug + fluentd: + repository: rancher/mirrored-banzaicloud-fluentd + tag: v1.11.5-alpine-12 + nodeagent_fluentbit: + repository: rancher/fluent-bit + tag: 1.6.10 + +# These settings apply to every Logging CR, including vendor Logging CRs enabled in "additionalLoggingSources". +# Changing these affects every Logging CR installed. +nodeAgents: + tls: + enabled: false +fluentd: + resources: {} + livenessProbe: + tcpSocket: + port: 24240 + initialDelaySeconds: 30 + periodSeconds: 15 +fluentbit: + resources: {} + tolerations: + - key: node-role.kubernetes.io/controlplane + value: "true" + effect: NoSchedule + - key: node-role.kubernetes.io/etcd + value: "true" + effect: NoExecute + +global: + cattle: + systemDefaultRegistry: "" + # Uncomment the below two lines to either enable or disable Windows logging. If this chart is + # installed via the Rancher UI, it will set this value to "true" if the cluster is a Windows + # cluster. In that scenario, if you would like to disable Windows logging on Windows clusters, + # set the value below to "false". + # windows: + # enabled: true + # Change the "dockerRootDirectory" if the default Docker directory has changed. + dockerRootDirectory: "" + # This psp setting differs from the upstream "rbac.psp" by only enabling psp settings for the + # overlay files, which include the Logging CRs created, whereas the upstream "rbac.psp" affects the + # logging operator. + psp: + enabled: true + seLinux: + enabled: false diff --git a/index.yaml b/index.yaml old mode 100644 new mode 100755 index a151631e73..846932bd02 --- a/index.yaml +++ b/index.yaml @@ -20,6 +20,101 @@ entries: urls: - released/assets/fleet/fleet-0.3.500.tgz version: 0.3.500 + - annotations: + catalog.cattle.io/auto-install: fleet-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1 + catalog.cattle.io/release-name: fleet + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-22T22:01:02.58378988Z" + description: Fleet Manager - GitOps at Scale + digest: 2d5346d7963426d10914b73cacd7b322de27e67ed718ba23c19d2eeed51d3bbe + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet + urls: + - assets/fleet/fleet-0.3.500-rc05.tgz + version: 0.3.500-rc05 + - annotations: + catalog.cattle.io/auto-install: fleet-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1 + catalog.cattle.io/release-name: fleet + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-22T22:01:02.582827974Z" + description: Fleet Manager - GitOps at Scale + digest: 53b3bc6dd7434e6417128e47b9fc460a044665cfb19404098f60457aa2dc32a9 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet + urls: + - assets/fleet/fleet-0.3.500-rc04.tgz + version: 0.3.500-rc04 + - annotations: + catalog.cattle.io/auto-install: fleet-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1 + catalog.cattle.io/release-name: fleet + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-22T22:01:02.582062069Z" + description: Fleet Manager - GitOps at Scale + digest: 83cd768b9e70fd76f79e3b3750b7182d91e9d209b7150dd46d9b057a9b142193 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet + urls: + - assets/fleet/fleet-0.3.500-rc03.tgz + version: 0.3.500-rc03 + - annotations: + catalog.cattle.io/auto-install: fleet-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1 + catalog.cattle.io/release-name: fleet + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-22T22:01:02.581273964Z" + description: Fleet Manager - GitOps at Scale + digest: 1347836c8a78142ea0b8c3fc2bcda597c95cd3821b74620172e75aa9e0f341ce + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet + urls: + - assets/fleet/fleet-0.3.500-rc02.tgz + version: 0.3.500-rc02 + - annotations: + catalog.cattle.io/auto-install: fleet-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1 + catalog.cattle.io/release-name: fleet + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-22T22:01:02.580320558Z" + description: Fleet Manager - GitOps at Scale + digest: 443c4a6b34b021406aed20df13848926328afa4790a817c9ada07dc47a8b8e71 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet + urls: + - assets/fleet/fleet-0.3.500-rc01.tgz + version: 0.3.500-rc01 - annotations: catalog.cattle.io/auto-install: fleet-crd=match catalog.cattle.io/certified: rancher @@ -39,6 +134,25 @@ entries: urls: - released/assets/fleet/fleet-0.3.400.tgz version: 0.3.400 + - annotations: + catalog.cattle.io/auto-install: fleet-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1 + catalog.cattle.io/release-name: fleet + apiVersion: v2 + appVersion: 0.3.4 + created: "2021-04-22T22:01:02.579323351Z" + description: Fleet Manager - GitOps at Scale + digest: e1d3bd31defa667da62185dae7c37f943d6d4eceece802e04559ae7beab34f76 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet + urls: + - assets/fleet/fleet-0.3.400-rc08.tgz + version: 0.3.400-rc08 - annotations: catalog.cattle.io/auto-install: fleet-crd=match catalog.cattle.io/certified: rancher @@ -132,6 +246,86 @@ entries: urls: - released/assets/fleet-agent/fleet-agent-0.3.500.tgz version: 0.3.500 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-agent + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-22T22:01:02.586167496Z" + description: Fleet Manager Agent - GitOps at Scale + digest: a8d559464ded20eeca14a488e3b24f090685728c0aa2081201168935fdd1faae + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-agent + urls: + - assets/fleet-agent/fleet-agent-0.3.500-rc05.tgz + version: 0.3.500-rc05 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-agent + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-22T22:01:02.585781593Z" + description: Fleet Manager Agent - GitOps at Scale + digest: bef2bbbab690c60255608dee3e8c677d0ff07e0c16a57f47225bb9c92fdc5e02 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-agent + urls: + - assets/fleet-agent/fleet-agent-0.3.500-rc04.tgz + version: 0.3.500-rc04 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-agent + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-22T22:01:02.585392691Z" + description: Fleet Manager Agent - GitOps at Scale + digest: f9a35e330ce8cb50b516201f31488583923c6a498ff7e5049cc49a6afdc188a5 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-agent + urls: + - assets/fleet-agent/fleet-agent-0.3.500-rc03.tgz + version: 0.3.500-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-agent + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-22T22:01:02.584984188Z" + description: Fleet Manager Agent - GitOps at Scale + digest: b6a7eb6921f74b80e791581ad707bc1d6e611d78db2df2ab111d1a1b1ec17780 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-agent + urls: + - assets/fleet-agent/fleet-agent-0.3.500-rc02.tgz + version: 0.3.500-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-agent + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-22T22:01:02.584596586Z" + description: Fleet Manager Agent - GitOps at Scale + digest: 9abb1ab308acf5a714846b4fbf559d71f0914959593d89e58a82eb134a185a4e + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-agent + urls: + - assets/fleet-agent/fleet-agent-0.3.500-rc01.tgz + version: 0.3.500-rc01 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -148,6 +342,22 @@ entries: urls: - released/assets/fleet-agent/fleet-agent-0.3.400.tgz version: 0.3.400 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-agent + apiVersion: v2 + appVersion: 0.3.4 + created: "2021-04-22T22:01:02.584204883Z" + description: Fleet Manager Agent - GitOps at Scale + digest: 141ba6abe73be3db6d6c1d3194a0261380151a9141b7078fa1ca7f3d4d500fa3 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-agent + urls: + - assets/fleet-agent/fleet-agent-0.3.400-rc08.tgz + version: 0.3.400-rc08 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -229,6 +439,86 @@ entries: urls: - released/assets/fleet-crd/fleet-crd-0.3.500.tgz version: 0.3.500 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-crd + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-22T22:01:02.590980127Z" + description: Fleet Manager CustomResourceDefinitions + digest: d2ac5cc83ed7fc1780fb89e24127b571e0332199ffb498c35624686f02114f07 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-crd + urls: + - assets/fleet-crd/fleet-crd-0.3.500-rc05.tgz + version: 0.3.500-rc05 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-crd + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-22T22:01:02.590063321Z" + description: Fleet Manager CustomResourceDefinitions + digest: 287d188003e4257528765bbab694c16f38f04602bd00175d1d5173c8eab43eda + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-crd + urls: + - assets/fleet-crd/fleet-crd-0.3.500-rc04.tgz + version: 0.3.500-rc04 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-crd + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-22T22:01:02.588634912Z" + description: Fleet Manager CustomResourceDefinitions + digest: e998798fe9d9630c0f2eff0f1066a35f8f9aff87c6f34b9ac659591b4eccfc52 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-crd + urls: + - assets/fleet-crd/fleet-crd-0.3.500-rc03.tgz + version: 0.3.500-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-crd + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-22T22:01:02.588016408Z" + description: Fleet Manager CustomResourceDefinitions + digest: 9e80e03b7602acf219164a9bb3e616f60f4c9df086bea8b68f8347b0dc352253 + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-crd + urls: + - assets/fleet-crd/fleet-crd-0.3.500-rc02.tgz + version: 0.3.500-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-crd + apiVersion: v2 + appVersion: 0.3.5 + created: "2021-04-22T22:01:02.587410004Z" + description: Fleet Manager CustomResourceDefinitions + digest: 5a9971ba36b1565f22b4bababd5a5f862d2ca016a626283dfc79b30b8952f00c + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-crd + urls: + - assets/fleet-crd/fleet-crd-0.3.500-rc01.tgz + version: 0.3.500-rc01 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -245,6 +535,22 @@ entries: urls: - released/assets/fleet-crd/fleet-crd-0.3.400.tgz version: 0.3.400 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: fleet-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: fleet-crd + apiVersion: v2 + appVersion: 0.3.4 + created: "2021-04-22T22:01:02.5867837Z" + description: Fleet Manager CustomResourceDefinitions + digest: 443ea644731a2b669ac3a601c9fd9d61a225e530ddd1f72dee0f3001c710f2df + icon: https://charts.rancher.io/assets/logos/fleet.svg + name: fleet-crd + urls: + - assets/fleet-crd/fleet-crd-0.3.400-rc08.tgz + version: 0.3.400-rc08 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -360,11 +666,11 @@ entries: catalog.cattle.io/ui-component: longhorn apiVersion: v1 appVersion: v1.1.0 - created: "2021-04-22T21:37:50.481519267Z" + created: "2021-04-22T22:01:02.592552537Z" description: Longhorn is a distributed block storage system for Kubernetes. - digest: aba8166911b39cfe44529c1ff3fd910e437ade64e72f39edc20957442605f619 + digest: 09a586f9ddccef1840e4c3cb548d7d412dd5cec650e3a86483086164d50da9d8 home: https://github.com/longhorn/longhorn - icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/longhorn/icon/color/longhorn-icon-color.svg + icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/longhorn/icon/color/longhorn-icon-color.svg?sanitize=true keywords: - longhorn - storage @@ -388,8 +694,8 @@ entries: - https://github.com/longhorn/longhorn-ui - https://github.com/longhorn/longhorn-tests urls: - - released/assets/longhorn/longhorn-1.1.000.tgz - version: 1.1.000 + - assets/longhorn/longhorn-1.1.001-rc01.tgz + version: 1.1.001-rc01 - annotations: catalog.cattle.io/auto-install: longhorn-crd=match catalog.cattle.io/certified: rancher @@ -400,10 +706,10 @@ entries: catalog.cattle.io/release-name: longhorn catalog.cattle.io/ui-component: longhorn apiVersion: v1 - appVersion: v1.0.2 - created: "2021-04-22T21:37:50.480248354Z" + appVersion: v1.1.0 + created: "2021-04-22T21:37:50.481519267Z" description: Longhorn is a distributed block storage system for Kubernetes. - digest: b18eda4e4b1170b7e9f488782fb6409da084b5beaa9945a3a3babe39f031e320 + digest: aba8166911b39cfe44529c1ff3fd910e437ade64e72f39edc20957442605f619 home: https://github.com/longhorn/longhorn icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/longhorn/icon/color/longhorn-icon-color.svg keywords: @@ -413,7 +719,7 @@ entries: - block - device - iscsi - kubeVersion: '>=v1.14.0-r0' + kubeVersion: '>=v1.16.0-r0' maintainers: - email: maintainers@longhorn.io name: Longhorn maintainers @@ -424,15 +730,17 @@ entries: - https://github.com/longhorn/longhorn - https://github.com/longhorn/longhorn-engine - https://github.com/longhorn/longhorn-instance-manager + - https://github.com/longhorn/longhorn-share-manager - https://github.com/longhorn/longhorn-manager - https://github.com/longhorn/longhorn-ui - https://github.com/longhorn/longhorn-tests urls: - - released/assets/longhorn/longhorn-1.0.201.tgz - version: 1.0.201 + - released/assets/longhorn/longhorn-1.1.000.tgz + version: 1.1.000 - annotations: catalog.cattle.io/auto-install: longhorn-crd=match catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Longhorn catalog.cattle.io/namespace: longhorn-system catalog.cattle.io/os: linux catalog.cattle.io/provides-gvr: longhorn.io/v1beta1 @@ -440,7 +748,46 @@ entries: catalog.cattle.io/ui-component: longhorn apiVersion: v1 appVersion: v1.0.2 - created: "2021-04-22T21:37:50.479119043Z" + created: "2021-04-22T21:37:50.480248354Z" + description: Longhorn is a distributed block storage system for Kubernetes. + digest: b18eda4e4b1170b7e9f488782fb6409da084b5beaa9945a3a3babe39f031e320 + home: https://github.com/longhorn/longhorn + icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/longhorn/icon/color/longhorn-icon-color.svg + keywords: + - longhorn + - storage + - distributed + - block + - device + - iscsi + kubeVersion: '>=v1.14.0-r0' + maintainers: + - email: maintainers@longhorn.io + name: Longhorn maintainers + - email: sheng@yasker.org + name: Sheng Yang + name: longhorn + sources: + - https://github.com/longhorn/longhorn + - https://github.com/longhorn/longhorn-engine + - https://github.com/longhorn/longhorn-instance-manager + - https://github.com/longhorn/longhorn-manager + - https://github.com/longhorn/longhorn-ui + - https://github.com/longhorn/longhorn-tests + urls: + - released/assets/longhorn/longhorn-1.0.201.tgz + version: 1.0.201 + - annotations: + catalog.cattle.io/auto-install: longhorn-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/namespace: longhorn-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: longhorn.io/v1beta1 + catalog.cattle.io/release-name: longhorn + catalog.cattle.io/ui-component: longhorn + apiVersion: v1 + appVersion: v1.0.2 + created: "2021-04-22T21:37:50.479119043Z" description: Longhorn is a distributed block storage system for Kubernetes. digest: 66189346fc24f5407f7a11a41faf9913144801a72472151702e28f808d557073 home: https://github.com/longhorn/longhorn @@ -484,6 +831,20 @@ entries: urls: - released/assets/longhorn/longhorn-crd-1.1.001.tgz version: 1.1.001 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: longhorn-system + catalog.cattle.io/release-name: longhorn-crd + apiVersion: v1 + created: "2021-04-22T22:01:02.592752939Z" + description: Installs the CRDs for longhorn. + digest: 3510fd3cea8ef949fdcef70b5c240f3b4d5f6854a053c70260b9995e441af07a + name: longhorn-crd + type: application + urls: + - assets/longhorn/longhorn-crd-1.1.001-rc01.tgz + version: 1.1.001-rc01 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -542,7 +903,8 @@ entries: - condition: sachet.enabled name: sachet repository: file://./charts/sachet - description: The manager for third-party webhook receivers used in Prometheus Alertmanager + description: The manager for third-party webhook receivers used in Prometheus + Alertmanager digest: 5b7f362122f85d5992bb06fff8cf1f51ff499a145158c8361a9275bbb137f1ba keywords: - monitoring @@ -552,6 +914,83 @@ entries: urls: - released/assets/rancher-alerting-drivers/rancher-alerting-drivers-1.0.100.tgz version: 1.0.100 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Alerting Drivers + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-alerting-drivers + apiVersion: v2 + appVersion: 1.16.0 + created: "2021-04-22T22:01:02.595893459Z" + dependencies: + - condition: prom2teams.enabled + name: prom2teams + repository: file://./charts/prom2teams + - condition: sachet.enabled + name: sachet + repository: file://./charts/sachet + description: The manager for third-party webhook receivers used in Prometheus + Alertmanager + digest: be9c3d7dbdcf6da990c541825dd7f7a1c48bef0467ef1fddb811df56e1812775 + keywords: + - monitoring + - alertmanger + - webhook + name: rancher-alerting-drivers + urls: + - assets/rancher-alerting-drivers/rancher-alerting-drivers-1.0.100-rc03.tgz + version: 1.0.100-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Alerting Drivers + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-alerting-drivers + apiVersion: v2 + appVersion: 1.16.0 + created: "2021-04-22T22:01:02.594835952Z" + dependencies: + - condition: prom2teams.enabled + name: prom2teams + repository: file://./charts/prom2teams + - condition: sachet.enabled + name: sachet + repository: file://./charts/sachet + description: The manager for third-party webhook receivers used in Prometheus + Alertmanager + digest: 276d129c153e2dea7401858711b1108d0ca5674d7eec9e40dc61d626e0cf601f + keywords: + - monitoring + - alertmanger + - webhook + name: rancher-alerting-drivers + urls: + - assets/rancher-alerting-drivers/rancher-alerting-drivers-1.0.100-rc02.tgz + version: 1.0.100-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Alerting Drivers + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-alerting-drivers + apiVersion: v2 + appVersion: 1.16.0 + created: "2021-04-22T22:01:02.593781745Z" + dependencies: + - condition: prom2teams.enabled + name: prom2teams + repository: file://./charts/prom2teams + - condition: sachet.enabled + name: sachet + repository: file://./charts/sachet + description: The manager for third-party webhook receivers used in the Alertmanger + digest: 17c2c7f9f7f08ec4bad9a0454bf6dd65fa953cfc16615a4abca210a4e47d775f + keywords: + - monitoring + - alertmanger + - webhook + name: rancher-alerting-drivers + urls: + - assets/rancher-alerting-drivers/rancher-alerting-drivers-1.0.100-rc01.tgz + version: 1.0.100-rc01 rancher-backup: - annotations: catalog.cattle.io/auto-install: rancher-backup-crd=match @@ -566,7 +1005,8 @@ entries: apiVersion: v2 appVersion: 1.0.4 created: "2021-04-22T21:37:50.492739179Z" - description: Provides ability to back up and restore the Rancher application running on any Kubernetes cluster + description: Provides ability to back up and restore the Rancher application running + on any Kubernetes cluster digest: a36597d551b418214bac24b59c22664b853c7e3e1c0d5ea2c014a8c28f2cf296 icon: https://charts.rancher.io/assets/logos/backup-restore.svg keywords: @@ -576,6 +1016,54 @@ entries: urls: - released/assets/rancher-backup/rancher-backup-1.0.400.tgz version: 1.0.400 + - annotations: + catalog.cattle.io/auto-install: rancher-backup-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Rancher Backups + catalog.cattle.io/namespace: cattle-resources-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: resources.cattle.io.resourceset/v1 + catalog.cattle.io/release-name: rancher-backup + catalog.cattle.io/scope: management + catalog.cattle.io/ui-component: rancher-backup + apiVersion: v2 + appVersion: 1.0.4 + created: "2021-04-22T22:01:02.597466669Z" + description: Provides ability to back up and restore the Rancher application running + on any Kubernetes cluster + digest: 7f76e8fde324076d557240b28f3fe0003afbf07961aa02023daba5972ceec4e0 + icon: https://charts.rancher.io/assets/logos/backup-restore.svg + keywords: + - applications + - infrastructure + name: rancher-backup + urls: + - assets/rancher-backup/rancher-backup-1.0.400-rc03.tgz + version: 1.0.400-rc03 + - annotations: + catalog.cattle.io/auto-install: rancher-backup-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Rancher Backups + catalog.cattle.io/namespace: cattle-resources-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: resources.cattle.io.resourceset/v1 + catalog.cattle.io/release-name: rancher-backup + catalog.cattle.io/scope: management + catalog.cattle.io/ui-component: rancher-backup + apiVersion: v2 + appVersion: 1.0.4 + created: "2021-04-22T22:01:02.596917566Z" + description: Provides ability to back up and restore the Rancher application running + on any Kubernetes cluster + digest: 5fd539770144cff99063b15c0e7b07e7fa0d61b906f7f741976d1f9aff56bdfd + icon: https://charts.rancher.io/assets/logos/backup-restore.svg + keywords: + - applications + - infrastructure + name: rancher-backup + urls: + - assets/rancher-backup/rancher-backup-1.0.400-rc02.tgz + version: 1.0.400-rc02 - annotations: catalog.cattle.io/auto-install: rancher-backup-crd=match catalog.cattle.io/certified: rancher @@ -589,7 +1077,8 @@ entries: apiVersion: v1 appVersion: v1.0.3 created: "2021-04-22T21:37:50.492200974Z" - description: Provides ability to back up and restore the Rancher application running on any Kubernetes cluster + description: Provides ability to back up and restore the Rancher application running + on any Kubernetes cluster digest: 21e586d307c78cc6a1321adaa89bef78719f0beca7f181c719cbca27691e6f5a icon: https://charts.rancher.io/assets/logos/backup-restore.svg keywords: @@ -599,6 +1088,30 @@ entries: urls: - released/assets/rancher-backup/rancher-backup-1.0.301.tgz version: 1.0.301 + - annotations: + catalog.cattle.io/auto-install: rancher-backup-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Rancher Backups + catalog.cattle.io/namespace: cattle-resources-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: resources.cattle.io.resourceset/v1 + catalog.cattle.io/release-name: rancher-backup + catalog.cattle.io/scope: management + catalog.cattle.io/ui-component: rancher-backup + apiVersion: v1 + appVersion: v1.0.3 + created: "2021-04-22T22:01:02.596386962Z" + description: Provides ability to back up and restore the Rancher application running + on any Kubernetes cluster + digest: e53990b35597a7464b000dd2418ba2cb93f1a8d703e213271094a08c1a0bd121 + icon: https://charts.rancher.io/assets/logos/backup-restore.svg + keywords: + - applications + - infrastructure + name: rancher-backup + urls: + - assets/rancher-backup/rancher-backup-1.0.301-rc01.tgz + version: 1.0.301-rc01 - annotations: catalog.cattle.io/auto-install: rancher-backup-crd=match catalog.cattle.io/certified: rancher @@ -612,7 +1125,8 @@ entries: apiVersion: v1 appVersion: v1.0.3 created: "2021-04-22T21:37:50.491690069Z" - description: Provides ability to back up and restore the Rancher application running on any Kubernetes cluster + description: Provides ability to back up and restore the Rancher application running + on any Kubernetes cluster digest: 733d4515a014e6c6d99f73db30d3143f7cef04a870b19a3b2f5eef5b09dbfc55 icon: https://charts.rancher.io/assets/logos/backup-restore.svg keywords: @@ -635,7 +1149,8 @@ entries: apiVersion: v1 appVersion: v1.0.2 created: "2021-04-22T21:37:50.491168464Z" - description: Provides ability to back up and restore the Rancher application running on any Kubernetes cluster + description: Provides ability to back up and restore the Rancher application running + on any Kubernetes cluster digest: bd39f041d51be323dd59dbbb0bae5c21b7ebbdca5f777972080254eb996595b4 icon: https://charts.rancher.io/assets/logos/backup-restore.svg keywords: @@ -657,7 +1172,8 @@ entries: apiVersion: v1 appVersion: v1.0.2 created: "2021-04-22T21:37:50.490594158Z" - description: Provides ability to back up and restore the Rancher application running on any Kubernetes cluster + description: Provides ability to back up and restore the Rancher application running + on any Kubernetes cluster digest: a3a4fcd83c7332bfafe1ee03c17dbdb43765364e97dc19f297884334486196c7 icon: https://charts.rancher.io/assets/logos/backup-restore.svg keywords: @@ -683,6 +1199,36 @@ entries: urls: - released/assets/rancher-backup-crd/rancher-backup-crd-1.0.400.tgz version: 1.0.400 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-resources-system + catalog.cattle.io/release-name: rancher-backup-crd + apiVersion: v2 + appVersion: 1.0.4 + created: "2021-04-22T22:01:02.598059873Z" + description: Installs the CRDs for rancher-backup. + digest: 7317de534265bb37c30e80fdca46fa108d24d7e2a0f82ca727db6c838d6d8f35 + name: rancher-backup-crd + type: application + urls: + - assets/rancher-backup-crd/rancher-backup-crd-1.0.400-rc03.tgz + version: 1.0.400-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-resources-system + catalog.cattle.io/release-name: rancher-backup-crd + apiVersion: v2 + appVersion: 1.0.4 + created: "2021-04-22T22:01:02.597867172Z" + description: Installs the CRDs for rancher-backup. + digest: caafbea7cdbcc266d2fd3f5e9379fb471a700eef94f2cfc864926aed230a9817 + name: rancher-backup-crd + type: application + urls: + - assets/rancher-backup-crd/rancher-backup-crd-1.0.400-rc02.tgz + version: 1.0.400-rc02 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -697,6 +1243,20 @@ entries: urls: - released/assets/rancher-backup/rancher-backup-crd-1.0.301.tgz version: 1.0.301 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-resources-system + catalog.cattle.io/release-name: rancher-backup-crd + apiVersion: v1 + created: "2021-04-22T22:01:02.597670971Z" + description: Installs the CRDs for rancher-backup. + digest: f7b68a31d3831686dc92b8e16a9ce72e850492332f3952a4567040cabd4174a6 + name: rancher-backup-crd + type: application + urls: + - assets/rancher-backup/rancher-backup-crd-1.0.301-rc01.tgz + version: 1.0.301-rc01 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -752,7 +1312,8 @@ entries: apiVersion: v1 appVersion: v1.0.4 created: "2021-04-22T21:37:50.499482947Z" - description: The cis-operator enables running CIS benchmark security scans on a kubernetes cluster + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster digest: 93c89a2bfc310d04854486baedf42d51684bd4ced18c8579d4d45b067778d30d icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg keywords: @@ -772,16 +1333,17 @@ entries: catalog.cattle.io/ui-component: rancher-cis-benchmark apiVersion: v1 appVersion: v1.0.4 - created: "2021-04-22T21:37:50.498729739Z" - description: The cis-operator enables running CIS benchmark security scans on a kubernetes cluster - digest: 58933a433110c3ac66ce329dda00d64ac8b5ce0e98e5e1529ae626054e948839 + created: "2021-04-22T22:01:02.601795697Z" + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster + digest: 1b2f82001209464614552b9a068c356a3426f46ab859c3dd5e3bbf860259abb2 icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg keywords: - security name: rancher-cis-benchmark urls: - - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.400.tgz - version: 1.0.400 + - assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.402-rc00.tgz + version: 1.0.402-rc00 - annotations: catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match catalog.cattle.io/certified: rancher @@ -792,17 +1354,18 @@ entries: catalog.cattle.io/release-name: rancher-cis-benchmark catalog.cattle.io/ui-component: rancher-cis-benchmark apiVersion: v1 - appVersion: v1.0.3 - created: "2021-04-22T21:37:50.497987232Z" - description: The cis-operator enables running CIS benchmark security scans on a kubernetes cluster - digest: c548033c5ec3822f2c89f0a1a19e3f4ce063f59a4ee021523642886ec3bf13a2 + appVersion: v1.0.4 + created: "2021-04-22T21:37:50.498729739Z" + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster + digest: 58933a433110c3ac66ce329dda00d64ac8b5ce0e98e5e1529ae626054e948839 icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg keywords: - security name: rancher-cis-benchmark urls: - - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.301.tgz - version: 1.0.301 + - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.400.tgz + version: 1.0.400 - annotations: catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match catalog.cattle.io/certified: rancher @@ -813,17 +1376,18 @@ entries: catalog.cattle.io/release-name: rancher-cis-benchmark catalog.cattle.io/ui-component: rancher-cis-benchmark apiVersion: v1 - appVersion: v1.0.3 - created: "2021-04-22T21:37:50.497067423Z" - description: The cis-operator enables running CIS benchmark security scans on a kubernetes cluster - digest: 2cce59f4f78b975edd93b0d707c5282fa44a6fa1f19d702ed4be8c221170c8d1 + appVersion: v1.0.4 + created: "2021-04-22T22:01:02.601121093Z" + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster + digest: 1d2920196f68ad738f5511c53a6343d82dc321b345e06b223dbb8d00dc55d99e icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg keywords: - security name: rancher-cis-benchmark urls: - - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.300.tgz - version: 1.0.300 + - assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.400-rc03.tgz + version: 1.0.400-rc03 - annotations: catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match catalog.cattle.io/certified: rancher @@ -834,66 +1398,270 @@ entries: catalog.cattle.io/release-name: rancher-cis-benchmark catalog.cattle.io/ui-component: rancher-cis-benchmark apiVersion: v1 - appVersion: v1.0.2 - created: "2021-04-22T21:37:50.496287115Z" - description: The cis-operator enables running CIS benchmark security scans on a kubernetes cluster - digest: b3a6ce49c5e6918a1658f682fdf25e241d9638fde4b8c046a70562c13228c8c0 + appVersion: v1.0.4 + created: "2021-04-22T22:01:02.600472689Z" + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster + digest: ddf0cd7c9e58100f761681ea9f2e9b7a0961022e63b06241ccc6e4df3e37ae96 icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg keywords: - security name: rancher-cis-benchmark urls: - - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.200.tgz - version: 1.0.200 + - assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.400-rc02.tgz + version: 1.0.400-rc02 - annotations: catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: CIS Benchmark catalog.cattle.io/namespace: cis-operator-system catalog.cattle.io/os: linux catalog.cattle.io/provides-gvr: cis.cattle.io.clusterscans/v1 catalog.cattle.io/release-name: rancher-cis-benchmark catalog.cattle.io/ui-component: rancher-cis-benchmark apiVersion: v1 - appVersion: v1.0.1 - created: "2021-04-22T21:37:50.495104403Z" - description: The cis-operator enables running CIS benchmark security scans on a kubernetes cluster - digest: 407c19666ce5c083c50d8ef2cbc4fbc26b811106bbfc6b3d25a659a593c0aa3c + appVersion: v1.0.4 + created: "2021-04-22T22:01:02.599838085Z" + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster + digest: 8cedf45ecfa58199f30567dc1bda4c706ef0b3f78a158f85603f99656702d5e3 icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg keywords: - security name: rancher-cis-benchmark urls: - - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.100.tgz - version: 1.0.100 - rancher-cis-benchmark-crd: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.400-rc01.tgz + version: 1.0.400-rc01 - annotations: + catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match catalog.cattle.io/certified: rancher - catalog.cattle.io/hidden: "true" + catalog.cattle.io/display-name: CIS Benchmark catalog.cattle.io/namespace: cis-operator-system - catalog.cattle.io/release-name: rancher-cis-benchmark-crd + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: cis.cattle.io.clusterscans/v1 + catalog.cattle.io/release-name: rancher-cis-benchmark + catalog.cattle.io/ui-component: rancher-cis-benchmark apiVersion: v1 - created: "2021-04-22T21:37:50.500877061Z" - description: Installs the CRDs for rancher-cis-benchmark. - digest: b5a4e104bcdfac537ea1d1bcf54e9c76846ec4b61fead9440049d5caf28400a0 - name: rancher-cis-benchmark-crd - type: application + appVersion: v1.0.3 + created: "2021-04-22T22:01:02.599238981Z" + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster + digest: e4e71c09635bf2c56580c7031ba3c0336e1b3376b34049db60e9ceb755a26dbd + icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg + keywords: + - security + name: rancher-cis-benchmark urls: - - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.402.tgz - version: 1.0.402 + - assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.400-rc00.tgz + version: 1.0.400-rc00 - annotations: + catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match catalog.cattle.io/certified: rancher - catalog.cattle.io/hidden: "true" + catalog.cattle.io/display-name: CIS Benchmark catalog.cattle.io/namespace: cis-operator-system - catalog.cattle.io/release-name: rancher-cis-benchmark-crd - apiVersion: v1 - created: "2021-04-22T21:37:50.500656159Z" - description: Installs the CRDs for rancher-cis-benchmark. + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: cis.cattle.io.clusterscans/v1 + catalog.cattle.io/release-name: rancher-cis-benchmark + catalog.cattle.io/ui-component: rancher-cis-benchmark + apiVersion: v1 + appVersion: v1.0.3 + created: "2021-04-22T21:37:50.497987232Z" + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster + digest: c548033c5ec3822f2c89f0a1a19e3f4ce063f59a4ee021523642886ec3bf13a2 + icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg + keywords: + - security + name: rancher-cis-benchmark + urls: + - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.301.tgz + version: 1.0.301 + - annotations: + catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: CIS Benchmark + catalog.cattle.io/namespace: cis-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: cis.cattle.io.clusterscans/v1 + catalog.cattle.io/release-name: rancher-cis-benchmark + catalog.cattle.io/ui-component: rancher-cis-benchmark + apiVersion: v1 + appVersion: v1.0.3 + created: "2021-04-22T22:01:02.598650477Z" + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster + digest: 69fe084096e913c9625e3ec067df2476e219fd5fd4f1773b606a97989b5b8cfc + icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg + keywords: + - security + name: rancher-cis-benchmark + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.301-rc01.tgz + version: 1.0.301-rc01 + - annotations: + catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: CIS Benchmark + catalog.cattle.io/namespace: cis-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: cis.cattle.io.clusterscans/v1 + catalog.cattle.io/release-name: rancher-cis-benchmark + catalog.cattle.io/ui-component: rancher-cis-benchmark + apiVersion: v1 + appVersion: v1.0.3 + created: "2021-04-22T21:37:50.497067423Z" + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster + digest: 2cce59f4f78b975edd93b0d707c5282fa44a6fa1f19d702ed4be8c221170c8d1 + icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg + keywords: + - security + name: rancher-cis-benchmark + urls: + - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.300.tgz + version: 1.0.300 + - annotations: + catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: CIS Benchmark + catalog.cattle.io/namespace: cis-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: cis.cattle.io.clusterscans/v1 + catalog.cattle.io/release-name: rancher-cis-benchmark + catalog.cattle.io/ui-component: rancher-cis-benchmark + apiVersion: v1 + appVersion: v1.0.2 + created: "2021-04-22T21:37:50.496287115Z" + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster + digest: b3a6ce49c5e6918a1658f682fdf25e241d9638fde4b8c046a70562c13228c8c0 + icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg + keywords: + - security + name: rancher-cis-benchmark + urls: + - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.200.tgz + version: 1.0.200 + - annotations: + catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/namespace: cis-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: cis.cattle.io.clusterscans/v1 + catalog.cattle.io/release-name: rancher-cis-benchmark + catalog.cattle.io/ui-component: rancher-cis-benchmark + apiVersion: v1 + appVersion: v1.0.1 + created: "2021-04-22T21:37:50.495104403Z" + description: The cis-operator enables running CIS benchmark security scans on + a kubernetes cluster + digest: 407c19666ce5c083c50d8ef2cbc4fbc26b811106bbfc6b3d25a659a593c0aa3c + icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg + keywords: + - security + name: rancher-cis-benchmark + urls: + - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.100.tgz + version: 1.0.100 + rancher-cis-benchmark-crd: + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cis-operator-system + catalog.cattle.io/release-name: rancher-cis-benchmark-crd + apiVersion: v1 + created: "2021-04-22T21:37:50.500877061Z" + description: Installs the CRDs for rancher-cis-benchmark. + digest: b5a4e104bcdfac537ea1d1bcf54e9c76846ec4b61fead9440049d5caf28400a0 + name: rancher-cis-benchmark-crd + type: application + urls: + - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.402.tgz + version: 1.0.402 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cis-operator-system + catalog.cattle.io/release-name: rancher-cis-benchmark-crd + apiVersion: v1 + created: "2021-04-22T22:01:02.603137806Z" + description: Installs the CRDs for rancher-cis-benchmark. + digest: 00e60fe270f74e664daac82396f45704c317cbd3f469f8ec1cd66aa08206484b + name: rancher-cis-benchmark-crd + type: application + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.402-rc00.tgz + version: 1.0.402-rc00 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cis-operator-system + catalog.cattle.io/release-name: rancher-cis-benchmark-crd + apiVersion: v1 + created: "2021-04-22T21:37:50.500656159Z" + description: Installs the CRDs for rancher-cis-benchmark. digest: fea6b82df264a6bb24ba79aa531b6701e099132eba7edefbc5c92d84aa7ab8c8 name: rancher-cis-benchmark-crd type: application urls: - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.400.tgz version: 1.0.400 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cis-operator-system + catalog.cattle.io/release-name: rancher-cis-benchmark-crd + apiVersion: v1 + created: "2021-04-22T22:01:02.602948905Z" + description: Installs the CRDs for rancher-cis-benchmark. + digest: 25c16458f0083b0a318f29e8e0213f2f98a52b512c2f7ac615e49fa709ad47b7 + name: rancher-cis-benchmark-crd + type: application + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.400-rc03.tgz + version: 1.0.400-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cis-operator-system + catalog.cattle.io/release-name: rancher-cis-benchmark-crd + apiVersion: v1 + created: "2021-04-22T22:01:02.602754304Z" + description: Installs the CRDs for rancher-cis-benchmark. + digest: 2b98b8d77b68abf963f8170f3cda7bb4f7bb71c8a7489769ae09b81e1f9530e6 + name: rancher-cis-benchmark-crd + type: application + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.400-rc02.tgz + version: 1.0.400-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cis-operator-system + catalog.cattle.io/release-name: rancher-cis-benchmark-crd + apiVersion: v1 + created: "2021-04-22T22:01:02.602557602Z" + description: Installs the CRDs for rancher-cis-benchmark. + digest: 9554f4ad162bca2ba60dc59ef803ee901fe7029f8f4c700e3f5328af0b8358b8 + name: rancher-cis-benchmark-crd + type: application + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.400-rc01.tgz + version: 1.0.400-rc01 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cis-operator-system + catalog.cattle.io/release-name: rancher-cis-benchmark-crd + apiVersion: v1 + created: "2021-04-22T22:01:02.602360901Z" + description: Installs the CRDs for rancher-cis-benchmark. + digest: 8d49bb0858f3a09ed938e2bdf98a201d74690f256d6688a4347ef4c59c1ce70b + name: rancher-cis-benchmark-crd + type: application + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.400-rc00.tgz + version: 1.0.400-rc00 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -908,6 +1676,20 @@ entries: urls: - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.301.tgz version: 1.0.301 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cis-operator-system + catalog.cattle.io/release-name: rancher-cis-benchmark-crd + apiVersion: v1 + created: "2021-04-22T22:01:02.6021726Z" + description: Installs the CRDs for rancher-cis-benchmark. + digest: 859666b60dd55bbde9ccab4e4035d0077351009012e8a75630c5424b2aa90891 + name: rancher-cis-benchmark-crd + type: application + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.301-rc01.tgz + version: 1.0.301-rc01 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -922,6 +1704,20 @@ entries: urls: - released/assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.300.tgz version: 1.0.300 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cis-operator-system + catalog.cattle.io/release-name: rancher-cis-benchmark-crd + apiVersion: v1 + created: "2021-04-22T22:01:02.601988299Z" + description: Installs the CRDs for rancher-cis-benchmark. + digest: c1c3fe4a892be9bac7f9f262f1df424790110d606b08f6e059381b0681e68dc3 + name: rancher-cis-benchmark-crd + type: application + urls: + - assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.300-rc00.tgz + version: 1.0.300-rc00 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -978,6 +1774,34 @@ entries: urls: - released/assets/rancher-external-ip-webhook/rancher-external-ip-webhook-0.1.601.tgz version: 0.1.601 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: External IP Webhook + catalog.cattle.io/namespace: cattle-externalip-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-external-ip-webhook + catalog.cattle.io/ui-component: rancher-external-ip-webhook + apiVersion: v1 + appVersion: v0.1.6 + created: "2021-04-22T22:01:02.604238213Z" + description: | + Deploy the external-ip-webhook to mitigate k8s CVE-2020-8554 + digest: 17dcf09bc8ab866c112882874ae1147f781d4b36c160441cbc31b95712eb7312 + home: https://github.com/rancher/externalip-webhook + keywords: + - cve + - externalip + - webhook + - security + maintainers: + - email: raul@rancher.com + name: rawmind0 + name: rancher-external-ip-webhook + sources: + - https://github.com/rancher/externalip-webhook + urls: + - assets/rancher-external-ip-webhook/rancher-external-ip-webhook-0.1.601-rc01.tgz + version: 0.1.601-rc01 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/display-name: External IP Webhook @@ -1045,7 +1869,8 @@ entries: apiVersion: v1 appVersion: v3.3.0 created: "2021-04-22T21:37:50.508076933Z" - description: Modifies Open Policy Agent's upstream gatekeeper chart that provides policy-based control for cloud native environments + description: Modifies Open Policy Agent's upstream gatekeeper chart that provides + policy-based control for cloud native environments digest: 728b85c410b7e431df379507b7a0c4031d3da313801c114f048641acf46152c7 home: https://github.com/open-policy-agent/gatekeeper icon: https://charts.rancher.io/assets/logos/gatekeeper.svg @@ -1058,6 +1883,32 @@ entries: urls: - released/assets/rancher-gatekeeper/rancher-gatekeeper-3.3.001.tgz version: 3.3.001 + - annotations: + catalog.cattle.io/auto-install: rancher-gatekeeper-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: OPA Gatekeeper + catalog.cattle.io/namespace: cattle-gatekeeper-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: config.gatekeeper.sh.config/v1alpha1 + catalog.cattle.io/release-name: rancher-gatekeeper + catalog.cattle.io/ui-component: gatekeeper + apiVersion: v1 + appVersion: v3.3.0 + created: "2021-04-22T22:01:02.606408027Z" + description: Modifies Open Policy Agent's upstream gatekeeper chart that provides + policy-based control for cloud native environments + digest: 704bd0ff8114dd0786a67a16d3573d7d96b1abeab6d25a6741e5acaa439595c5 + home: https://github.com/open-policy-agent/gatekeeper + icon: https://charts.rancher.io/assets/logos/gatekeeper.svg + keywords: + - open policy agent + - security + name: rancher-gatekeeper + sources: + - https://github.com/open-policy-agent/gatekeeper.git + urls: + - assets/rancher-gatekeeper/rancher-gatekeeper-3.3.001-rc00.tgz + version: 3.3.001-rc00 - annotations: catalog.cattle.io/auto-install: rancher-gatekeeper-crd=match catalog.cattle.io/certified: rancher @@ -1070,7 +1921,8 @@ entries: apiVersion: v1 appVersion: v3.3.0 created: "2021-04-22T21:37:50.506953022Z" - description: Modifies Open Policy Agent's upstream gatekeeper chart that provides policy-based control for cloud native environments + description: Modifies Open Policy Agent's upstream gatekeeper chart that provides + policy-based control for cloud native environments digest: cdd2cb75ded06543e55124c5086a12c06e323c0398319e8c8984c73e19dd58bc home: https://github.com/open-policy-agent/gatekeeper icon: https://charts.rancher.io/assets/logos/gatekeeper.svg @@ -1083,6 +1935,32 @@ entries: urls: - released/assets/rancher-gatekeeper/rancher-gatekeeper-3.3.000.tgz version: 3.3.000 + - annotations: + catalog.cattle.io/auto-install: rancher-gatekeeper-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: OPA Gatekeeper + catalog.cattle.io/namespace: cattle-gatekeeper-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: config.gatekeeper.sh.config/v1alpha1 + catalog.cattle.io/release-name: rancher-gatekeeper + catalog.cattle.io/ui-component: gatekeeper + apiVersion: v1 + appVersion: v3.3.0 + created: "2021-04-22T22:01:02.605351121Z" + description: Modifies Open Policy Agent's upstream gatekeeper chart that provides + policy-based control for cloud native environments + digest: af8f37b06a1187282a8a8524bec2b68f132cef0d840671c3dd02aab1b6dc9613 + home: https://github.com/open-policy-agent/gatekeeper + icon: https://charts.rancher.io/assets/logos/gatekeeper.svg + keywords: + - open policy agent + - security + name: rancher-gatekeeper + sources: + - https://github.com/open-policy-agent/gatekeeper.git + urls: + - assets/rancher-gatekeeper/rancher-gatekeeper-3.3.000-rc02.tgz + version: 3.3.000-rc02 - annotations: catalog.cattle.io/auto-install: rancher-gatekeeper-crd=match catalog.cattle.io/certified: rancher @@ -1096,7 +1974,8 @@ entries: apiVersion: v1 appVersion: v3.2.1 created: "2021-04-22T21:37:50.505702909Z" - description: Modifies Open Policy Agent's upstream gatekeeper chart that provides policy-based control for cloud native environments + description: Modifies Open Policy Agent's upstream gatekeeper chart that provides + policy-based control for cloud native environments digest: 3d0e961fc109e051f08edacf9e541e5ad1c0c65f046cae72459df0ca4aa22312 home: https://github.com/open-policy-agent/gatekeeper icon: https://charts.rancher.io/assets/logos/gatekeeper.svg @@ -1121,7 +2000,8 @@ entries: apiVersion: v1 appVersion: v3.1.1 created: "2021-04-22T21:37:50.504985002Z" - description: Modifies Open Policy Agent's upstream gatekeeper chart that provides policy-based control for cloud native environments + description: Modifies Open Policy Agent's upstream gatekeeper chart that provides + policy-based control for cloud native environments digest: 36aebc7718e4afd4d9bb65775276d2288eb0de27192d0d290553a7c7087d7f3f home: https://github.com/open-policy-agent/gatekeeper icon: https://charts.rancher.io/assets/logos/gatekeeper.svg @@ -1145,7 +2025,8 @@ entries: apiVersion: v1 appVersion: v3.1.1 created: "2021-04-22T21:37:50.504262895Z" - description: Modifies Open Policy Agent's upstream gatekeeper chart that provides policy-based control for cloud native environments + description: Modifies Open Policy Agent's upstream gatekeeper chart that provides + policy-based control for cloud native environments digest: 15a4540b7e32c62157c37cfdb9230ce4b11c5837a2f3734378fcd7ec9c824559 home: https://github.com/open-policy-agent/gatekeeper icon: https://charts.rancher.io/assets/logos/gatekeeper.svg @@ -1179,29 +2060,57 @@ entries: catalog.cattle.io/namespace: cattle-gatekeeper-system catalog.cattle.io/release-name: rancher-gatekeeper-crd apiVersion: v1 - created: "2021-04-22T21:37:50.510146754Z" + created: "2021-04-22T22:01:02.607510135Z" description: Installs the CRDs for rancher-gatekeeper. - digest: 48a03a80fadacabc507fec107dbed749d94fafbef0d26e4eb37e92c974a7c56b + digest: 3aa8a1c82e5ba772e1edee2a1c4cc38452eab2e3761a01bbaeea15dead79b03c name: rancher-gatekeeper-crd type: application urls: - - released/assets/rancher-gatekeeper/rancher-gatekeeper-crd-3.3.000.tgz - version: 3.3.000 + - assets/rancher-gatekeeper/rancher-gatekeeper-crd-3.3.001-rc00.tgz + version: 3.3.001-rc00 - annotations: catalog.cattle.io/certified: rancher - catalog.cattle.io/experimental: "true" catalog.cattle.io/hidden: "true" catalog.cattle.io/namespace: cattle-gatekeeper-system catalog.cattle.io/release-name: rancher-gatekeeper-crd apiVersion: v1 - created: "2021-04-22T21:37:50.50977775Z" + created: "2021-04-22T21:37:50.510146754Z" description: Installs the CRDs for rancher-gatekeeper. - digest: 34f449b69d1b50ff1743ae3b1e81553aec3f0a70c8ac7572c60071a8271b53e2 + digest: 48a03a80fadacabc507fec107dbed749d94fafbef0d26e4eb37e92c974a7c56b name: rancher-gatekeeper-crd type: application urls: - - released/assets/rancher-gatekeeper/rancher-gatekeeper-crd-3.2.101.tgz - version: 3.2.101 + - released/assets/rancher-gatekeeper/rancher-gatekeeper-crd-3.3.000.tgz + version: 3.3.000 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-gatekeeper-system + catalog.cattle.io/release-name: rancher-gatekeeper-crd + apiVersion: v1 + created: "2021-04-22T22:01:02.607152432Z" + description: Installs the CRDs for rancher-gatekeeper. + digest: 8a25a6b9070d7421adf12e81bcafb2b9450a49ee4e747349ab0d5a231ff2dd76 + name: rancher-gatekeeper-crd + type: application + urls: + - assets/rancher-gatekeeper/rancher-gatekeeper-crd-3.3.000-rc02.tgz + version: 3.3.000-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-gatekeeper-system + catalog.cattle.io/release-name: rancher-gatekeeper-crd + apiVersion: v1 + created: "2021-04-22T21:37:50.50977775Z" + description: Installs the CRDs for rancher-gatekeeper. + digest: 34f449b69d1b50ff1743ae3b1e81553aec3f0a70c8ac7572c60071a8271b53e2 + name: rancher-gatekeeper-crd + type: application + urls: + - released/assets/rancher-gatekeeper/rancher-gatekeeper-crd-3.2.101.tgz + version: 3.2.101 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/experimental: "true" @@ -1265,6 +2174,38 @@ entries: urls: - released/assets/rancher-grafana/rancher-grafana-6.6.401.tgz version: 6.6.401 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-grafana + apiVersion: v2 + appVersion: 7.4.5 + created: "2021-04-22T22:01:02.60983775Z" + description: The leading tool for querying and visualizing time series and metrics. + digest: 686dc1aa919f64f02fc7a070e914d28f5a7d28707547ded598ce91f265027b8c + home: https://grafana.net + icon: https://raw.githubusercontent.com/grafana/grafana/master/public/img/logo_transparent_400x.png + kubeVersion: ^1.8.0-0 + maintainers: + - email: zanhsieh@gmail.com + name: zanhsieh + - email: rluckie@cisco.com + name: rtluckie + - email: maor.friedman@redhat.com + name: maorfr + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: mail@torstenwalter.de + name: torstenwalter + name: rancher-grafana + sources: + - https://github.com/grafana/grafana + type: application + urls: + - assets/rancher-grafana/rancher-grafana-6.6.401-rc00.tgz + version: 6.6.401-rc00 rancher-istio: - annotations: catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.32.100 @@ -1287,7 +2228,8 @@ entries: - condition: tracing.enabled name: tracing repository: file://./charts/tracing - description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ for details. + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. digest: 0c96a82e61a5356dfca34a009890f5a17ac66228301bc12b57eeee089f4f055c icon: https://charts.rancher.io/assets/logos/istio.svg keywords: @@ -1297,6 +2239,38 @@ entries: urls: - released/assets/rancher-istio-1.9/rancher-istio-1.9.300.tgz version: 1.9.300 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.32.100-rc01 + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Istio + catalog.cattle.io/namespace: istio-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: networking.istio.io.virtualservice/v1beta1 + catalog.cattle.io/release-name: rancher-istio + catalog.cattle.io/requests-cpu: 710m + catalog.cattle.io/requests-memory: 2314Mi + catalog.cattle.io/ui-component: istio + apiVersion: v1 + appVersion: 1.9.3 + created: "2021-04-22T22:01:02.629037875Z" + dependencies: + - condition: kiali.enabled + name: kiali + repository: file://./charts/kiali + - condition: tracing.enabled + name: tracing + repository: file://./charts/tracing + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. + digest: 88949c62a4a4a6b7cc724264ddfaae4b985ee69689b31efbede16b63b2518899 + icon: https://charts.rancher.io/assets/logos/istio.svg + keywords: + - networking + - infrastructure + name: rancher-istio + urls: + - assets/rancher-istio-1.9/rancher-istio-1.9.300-rc01.tgz + version: 1.9.300-rc01 - annotations: catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.32.100 catalog.cattle.io/certified: rancher @@ -1318,7 +2292,8 @@ entries: - condition: tracing.enabled name: tracing repository: file://./charts/tracing - description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ for details. + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. digest: 7954c67821c45714557f3dc1ff407b1f2edd63f93c190b4b0457c5d488a2540a icon: https://charts.rancher.io/assets/logos/istio.svg keywords: @@ -1328,6 +2303,70 @@ entries: urls: - released/assets/rancher-istio-1.9/rancher-istio-1.9.200.tgz version: 1.9.200 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.32.100-rc01 + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Istio + catalog.cattle.io/namespace: istio-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: networking.istio.io.virtualservice/v1beta1 + catalog.cattle.io/release-name: rancher-istio + catalog.cattle.io/requests-cpu: 710m + catalog.cattle.io/requests-memory: 2314Mi + catalog.cattle.io/ui-component: istio + apiVersion: v1 + appVersion: 1.9.2 + created: "2021-04-22T22:01:02.62681496Z" + dependencies: + - condition: kiali.enabled + name: kiali + repository: file://./charts/kiali + - condition: tracing.enabled + name: tracing + repository: file://./charts/tracing + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. + digest: f39804b9943d63c7b43b1774f3273426214a2fb2373a132d8ef0c415230d6a95 + icon: https://charts.rancher.io/assets/logos/istio.svg + keywords: + - networking + - infrastructure + name: rancher-istio + urls: + - assets/rancher-istio-1.9/rancher-istio-1.9.200-rc02.tgz + version: 1.9.200-rc02 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.29.100-rc01 + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Istio + catalog.cattle.io/namespace: istio-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: networking.istio.io.virtualservice/v1beta1 + catalog.cattle.io/release-name: rancher-istio + catalog.cattle.io/requests-cpu: 710m + catalog.cattle.io/requests-memory: 2314Mi + catalog.cattle.io/ui-component: istio + apiVersion: v1 + appVersion: 1.9.2 + created: "2021-04-22T22:01:02.624287444Z" + dependencies: + - condition: kiali.enabled + name: kiali + repository: file://./charts/kiali + - condition: tracing.enabled + name: tracing + repository: file://./charts/tracing + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. + digest: ba7ef5dfd2fd105cd241386165d80295193ae525d20cd4dff380d4351a24be42 + icon: https://charts.rancher.io/assets/logos/istio.svg + keywords: + - networking + - infrastructure + name: rancher-istio + urls: + - assets/rancher-istio-1.9/rancher-istio-1.9.200-rc01.tgz + version: 1.9.200-rc01 - annotations: catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.32.100 catalog.cattle.io/certified: rancher @@ -1349,7 +2388,8 @@ entries: - condition: tracing.enabled name: tracing repository: file://./charts/tracing - description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ for details. + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. digest: 53a2c6b216d55314ff616c19f3b101adcff59347aa1dd39aa2fd220ea8279597 icon: https://charts.rancher.io/assets/logos/istio.svg keywords: @@ -1359,6 +2399,38 @@ entries: urls: - released/assets/rancher-istio-1.8/rancher-istio-1.8.500.tgz version: 1.8.500 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.32.100-rc01 + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Istio + catalog.cattle.io/namespace: istio-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: networking.istio.io.virtualservice/v1beta1 + catalog.cattle.io/release-name: rancher-istio + catalog.cattle.io/requests-cpu: 710m + catalog.cattle.io/requests-memory: 2314Mi + catalog.cattle.io/ui-component: istio + apiVersion: v1 + appVersion: 1.8.5 + created: "2021-04-22T22:01:02.620963822Z" + dependencies: + - condition: kiali.enabled + name: kiali + repository: file://./charts/kiali + - condition: tracing.enabled + name: tracing + repository: file://./charts/tracing + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. + digest: 9f9e75e60bea33ae6363a3e9ce7aa56882bf3da12fd5b8424b633c3fea5ea251 + icon: https://charts.rancher.io/assets/logos/istio.svg + keywords: + - networking + - infrastructure + name: rancher-istio + urls: + - assets/rancher-istio-1.8/rancher-istio-1.8.500-rc01.tgz + version: 1.8.500-rc01 - annotations: catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.32.100 catalog.cattle.io/certified: rancher @@ -1380,7 +2452,8 @@ entries: - condition: tracing.enabled name: tracing repository: file://./charts/tracing - description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ for details. + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. digest: 233b5ff0a52cb9f5becbe80dc968038e0603a2dc076d85d83f69bf9efdb4ce28 icon: https://charts.rancher.io/assets/logos/istio.svg keywords: @@ -1390,6 +2463,70 @@ entries: urls: - released/assets/rancher-istio-1.8/rancher-istio-1.8.400.tgz version: 1.8.400 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.32.100-rc01 + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Istio + catalog.cattle.io/namespace: istio-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: networking.istio.io.virtualservice/v1beta1 + catalog.cattle.io/release-name: rancher-istio + catalog.cattle.io/requests-cpu: 710m + catalog.cattle.io/requests-memory: 2314Mi + catalog.cattle.io/ui-component: istio + apiVersion: v1 + appVersion: 1.8.4 + created: "2021-04-22T22:01:02.618735308Z" + dependencies: + - condition: kiali.enabled + name: kiali + repository: file://./charts/kiali + - condition: tracing.enabled + name: tracing + repository: file://./charts/tracing + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. + digest: b3eedae2aa3e4fec03cdd6c9cfe9b5f054dc99ba59f850f51cf3776df55c970a + icon: https://charts.rancher.io/assets/logos/istio.svg + keywords: + - networking + - infrastructure + name: rancher-istio + urls: + - assets/rancher-istio-1.8/rancher-istio-1.8.400-rc02.tgz + version: 1.8.400-rc02 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.29.100-rc01 + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Istio + catalog.cattle.io/namespace: istio-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: networking.istio.io.virtualservice/v1beta1 + catalog.cattle.io/release-name: rancher-istio + catalog.cattle.io/requests-cpu: 710m + catalog.cattle.io/requests-memory: 2314Mi + catalog.cattle.io/ui-component: istio + apiVersion: v1 + appVersion: 1.8.4 + created: "2021-04-22T22:01:02.616451693Z" + dependencies: + - condition: kiali.enabled + name: kiali + repository: file://./charts/kiali + - condition: tracing.enabled + name: tracing + repository: file://./charts/tracing + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. + digest: 057dc482530f20fa0d57b3c402524fc8283d4045016e59247cde58a009a8f7e5 + icon: https://charts.rancher.io/assets/logos/istio.svg + keywords: + - networking + - infrastructure + name: rancher-istio + urls: + - assets/rancher-istio-1.8/rancher-istio-1.8.400-rc01.tgz + version: 1.8.400-rc01 - annotations: catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.29.100 catalog.cattle.io/certified: rancher @@ -1411,7 +2548,8 @@ entries: - condition: tracing.enabled name: tracing repository: file://./charts/tracing - description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ for details. + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. digest: b85bbd08a55fca37f04a48834742c5362d7c7b8923f57993ff74d1bf28726d2a icon: https://charts.rancher.io/assets/logos/istio.svg keywords: @@ -1421,6 +2559,38 @@ entries: urls: - released/assets/rancher-istio-1.8/rancher-istio-1.8.301.tgz version: 1.8.301 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.29.100-rc01 + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Istio + catalog.cattle.io/namespace: istio-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: networking.istio.io.virtualservice/v1beta1 + catalog.cattle.io/release-name: rancher-istio + catalog.cattle.io/requests-cpu: 710m + catalog.cattle.io/requests-memory: 2314Mi + catalog.cattle.io/ui-component: istio + apiVersion: v1 + appVersion: 1.8.3 + created: "2021-04-22T22:01:02.614191878Z" + dependencies: + - condition: kiali.enabled + name: kiali + repository: file://./charts/kiali + - condition: tracing.enabled + name: tracing + repository: file://./charts/tracing + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. + digest: 211b1cede8e0917baafe4e29a701a6414141a67ddf5ef0307211ae9b045d24f3 + icon: https://charts.rancher.io/assets/logos/istio.svg + keywords: + - networking + - infrastructure + name: rancher-istio + urls: + - assets/rancher-istio-1.8/rancher-istio-1.8.301-rc00.tgz + version: 1.8.301-rc00 - annotations: catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.29.000 catalog.cattle.io/certified: rancher @@ -1442,7 +2612,8 @@ entries: - condition: tracing.enabled name: tracing repository: file://./charts/tracing - description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ for details. + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. digest: 3b5fdc7d06c6a3878c47030ff2a9e23ef1ab68ceddcb9fd7290f4e3ef3c99cb0 icon: https://charts.rancher.io/assets/logos/istio.svg keywords: @@ -1452,6 +2623,38 @@ entries: urls: - released/assets/rancher-istio/rancher-istio-1.8.300.tgz version: 1.8.300 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.29.000-rc00 + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Istio + catalog.cattle.io/namespace: istio-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: networking.istio.io.virtualservice/v1beta1 + catalog.cattle.io/release-name: rancher-istio + catalog.cattle.io/requests-cpu: 710m + catalog.cattle.io/requests-memory: 2314Mi + catalog.cattle.io/ui-component: istio + apiVersion: v1 + appVersion: 1.8.3 + created: "2021-04-22T22:01:02.611953464Z" + dependencies: + - condition: kiali.enabled + name: kiali + repository: file://./charts/kiali + - condition: tracing.enabled + name: tracing + repository: file://./charts/tracing + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. + digest: f5bf59041cc7b488dd9c33f1251fcbda7f6c96d719763c87a9086e70629d0896 + icon: https://charts.rancher.io/assets/logos/istio.svg + keywords: + - networking + - infrastructure + name: rancher-istio + urls: + - assets/rancher-istio/rancher-istio-1.8.300-rc01.tgz + version: 1.8.300-rc01 - annotations: catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.24.003 catalog.cattle.io/certified: rancher @@ -1475,7 +2678,8 @@ entries: name: rancher-tracing repository: file://../../rancher-tracing/charts version: 1.20.001 - description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ for details. + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. digest: ff28763d01f5b7b366ea0373bd052bbe579f17c009955c88e7cbb5eb66802e84 icon: https://charts.rancher.io/assets/logos/istio.svg keywords: @@ -1503,7 +2707,8 @@ entries: name: rancher-kiali-server repository: file://../../rancher-kiali-server/charts version: 1.24.0 - description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ for details. + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. digest: 1e4a14509830e72f8a3d10d6d3ffaf72683dc0243e2cd9d067934844163f9f80 icon: https://charts.rancher.io/assets/logos/istio.svg keywords: @@ -1531,7 +2736,8 @@ entries: name: rancher-kiali-server repository: file://../../rancher-kiali-server/charts version: 1.23.0 - description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ for details. + description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/ + for details. digest: 3a7a84aa165a472cf346a4d595ff84ac8190d7f050409b65f2a7168c8307ef28 icon: https://charts.rancher.io/assets/logos/istio.svg keywords: @@ -1553,7 +2759,9 @@ entries: apiVersion: v2 appVersion: v1.32.0 created: "2021-04-22T21:37:50.540437758Z" - description: Kiali is an open source project for service mesh observability, refer to https://www.kiali.io for details. This is installed as sub-chart with customized values in Rancher's Istio. + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. This is installed as sub-chart with customized + values in Rancher's Istio. digest: 1c46481c6ef1054770d06acab9f4b8e4343a3971d672b9b6afa1a1303020707d home: https://github.com/kiali/kiali icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png @@ -1584,9 +2792,46 @@ entries: catalog.rancher.io/namespace: cattle-istio-system catalog.rancher.io/release-name: rancher-kiali-server apiVersion: v2 - appVersion: v1.29.0 + appVersion: v1.32.0 + created: "2021-04-22T22:01:02.632063094Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. This is installed as sub-chart with customized + values in Rancher's Istio. + digest: 81bb3b2c9dd79d17143c17c190413a9c87fbdf2c8899987531d87047d8ae4fe7 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - networking + - infrastructure + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: rancher-kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - assets/rancher-kiali-server/rancher-kiali-server-1.32.100-rc01.tgz + version: 1.32.100-rc01 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=match + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: monitoringdashboards.monitoring.kiali.io/v1alpha1 + catalog.cattle.io/requires-gvr: monitoring.coreos.com.prometheus/v1 + catalog.rancher.io/namespace: cattle-istio-system + catalog.rancher.io/release-name: rancher-kiali-server + apiVersion: v2 + appVersion: v1.29.0 created: "2021-04-22T21:37:50.539410747Z" - description: Kiali is an open source project for service mesh observability, refer to https://www.kiali.io for details. This is installed as sub-chart with customized values in Rancher's Istio. + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. This is installed as sub-chart with customized + values in Rancher's Istio. digest: f4a613428fe2a8147bc2b130e5f1e60b6dc67db62c6145a3c3bb4820003b0fc8 home: https://github.com/kiali/kiali icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png @@ -1608,6 +2853,41 @@ entries: urls: - released/assets/rancher-kiali-server/rancher-kiali-server-1.29.100.tgz version: 1.29.100 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=match + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: monitoringdashboards.monitoring.kiali.io/v1alpha1 + catalog.cattle.io/requires-gvr: monitoring.coreos.com.prometheus/v1 + catalog.rancher.io/namespace: cattle-istio-system + catalog.rancher.io/release-name: rancher-kiali-server + apiVersion: v2 + appVersion: v1.29.0 + created: "2021-04-22T22:01:02.631053888Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. This is installed as sub-chart with customized + values in Rancher's Istio. + digest: e2c3dadce7ed3965636fc6a3a72f768174fb02e1e6dddec69506b7b73f5d2fd1 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - networking + - infrastructure + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: rancher-kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - assets/rancher-kiali-server/rancher-kiali-server-1.29.100-rc01.tgz + version: 1.29.100-rc01 - annotations: catalog.cattle.io/auto-install: rancher-kiali-server-crd=match catalog.cattle.io/hidden: "true" @@ -1619,7 +2899,9 @@ entries: apiVersion: v2 appVersion: v1.29.0 created: "2021-04-22T21:37:50.538322236Z" - description: Kiali is an open source project for service mesh observability, refer to https://www.kiali.io for details. This is installed as sub-chart with customized values in Rancher's Istio. + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. This is installed as sub-chart with customized + values in Rancher's Istio. digest: 8cecd60c2fa1ae2dea0c4d3672b7ca73152835bfeb93906113ca4d05c02e9587 home: https://github.com/kiali/kiali icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png @@ -1641,6 +2923,41 @@ entries: urls: - released/assets/rancher-kiali-server/rancher-kiali-server-1.29.000.tgz version: 1.29.000 + - annotations: + catalog.cattle.io/auto-install: rancher-kiali-server-crd=match + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: monitoringdashboards.monitoring.kiali.io/v1alpha1 + catalog.cattle.io/requires-gvr: monitoring.coreos.com.prometheus/v1 + catalog.rancher.io/namespace: cattle-istio-system + catalog.rancher.io/release-name: rancher-kiali-server + apiVersion: v2 + appVersion: v1.29.0 + created: "2021-04-22T22:01:02.630058081Z" + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. This is installed as sub-chart with customized + values in Rancher's Istio. + digest: 889268d3300d61b90ac9c14cec994a00d7880a45ab7af5b94631004a54378799 + home: https://github.com/kiali/kiali + icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png + keywords: + - istio + - kiali + - networking + - infrastructure + maintainers: + - email: kiali-users@googlegroups.com + name: Kiali + url: https://kiali.io + name: rancher-kiali-server + sources: + - https://github.com/kiali/kiali + - https://github.com/kiali/kiali-ui + - https://github.com/kiali/kiali-operator + - https://github.com/kiali/helm-charts + urls: + - assets/rancher-kiali-server/rancher-kiali-server-1.29.000-rc01.tgz + version: 1.29.000-rc01 - annotations: catalog.cattle.io/auto-install: rancher-kiali-server-crd=match catalog.cattle.io/hidden: "true" @@ -1652,7 +2969,9 @@ entries: apiVersion: v2 appVersion: v1.24.0 created: "2021-04-22T21:37:50.536781521Z" - description: Kiali is an open source project for service mesh observability, refer to https://www.kiali.io for details. This is installed as sub-chart with customized values in Rancher's Istio. + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. This is installed as sub-chart with customized + values in Rancher's Istio. digest: 2b702639bc1b563fa3e9e0cdb5fff1ca4de696860566f1c863c04fb7ebc06038 home: https://github.com/kiali/kiali icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png @@ -1685,7 +3004,9 @@ entries: apiVersion: v2 appVersion: v1.24.0 created: "2021-04-22T21:37:50.535320506Z" - description: Kiali is an open source project for service mesh observability, refer to https://www.kiali.io for details. This is installed as sub-chart with customized values in Rancher's Istio. + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. This is installed as sub-chart with customized + values in Rancher's Istio. digest: a86791daaf668b0f67db337a9f37f13d4a836d9bd689401ba2ef8f6e83d9a6a3 home: https://github.com/kiali/kiali icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png @@ -1718,7 +3039,9 @@ entries: apiVersion: v2 appVersion: v1.23.0 created: "2021-04-22T21:37:50.534363397Z" - description: Kiali is an open source project for service mesh observability, refer to https://www.kiali.io for details. This is installed as sub-chart with customized values in Rancher's Istio. + description: Kiali is an open source project for service mesh observability, refer + to https://www.kiali.io for details. This is installed as sub-chart with customized + values in Rancher's Istio. digest: 0aea4d28b274a7c2549f675c2a3fc1be165ef4acd72676a18ed5f92f1e7a2b1a home: https://github.com/kiali/kiali icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png @@ -1752,6 +3075,17 @@ entries: urls: - released/assets/rancher-kiali-server/rancher-kiali-server-crd-1.32.100.tgz version: 1.32.100 + - annotations: + catalog.cattle.io/hidden: "true" + apiVersion: v2 + created: "2021-04-22T22:01:02.632458997Z" + description: Installs the CRDs for rancher-kiali-server. + digest: 2a426e9755c8d279c778f2638618c7c417e99298a7db79fa0e198140993aab8e + name: rancher-kiali-server-crd + type: application + urls: + - assets/rancher-kiali-server/rancher-kiali-server-crd-1.32.100-rc01.tgz + version: 1.32.100-rc01 - annotations: catalog.cattle.io/hidden: "true" apiVersion: v2 @@ -1763,6 +3097,17 @@ entries: urls: - released/assets/rancher-kiali-server/rancher-kiali-server-crd-1.29.100.tgz version: 1.29.100 + - annotations: + catalog.cattle.io/hidden: "true" + apiVersion: v2 + created: "2021-04-22T22:01:02.632334996Z" + description: Installs the CRDs for rancher-kiali-server. + digest: 9d418e244f8243c46bf884a39fa5477f3e5973dd4f3b6c76bb90dde74f93279f + name: rancher-kiali-server-crd + type: application + urls: + - assets/rancher-kiali-server/rancher-kiali-server-crd-1.29.100-rc01.tgz + version: 1.29.100-rc01 - annotations: catalog.cattle.io/hidden: "true" apiVersion: v2 @@ -1774,6 +3119,17 @@ entries: urls: - released/assets/rancher-kiali-server/rancher-kiali-server-crd-1.29.000.tgz version: 1.29.000 + - annotations: + catalog.cattle.io/hidden: "true" + apiVersion: v2 + created: "2021-04-22T22:01:02.632202995Z" + description: Installs the CRDs for rancher-kiali-server. + digest: a235e592d5d924e1dea15c19af5f163425213e3547654e427f43464f58fd9927 + name: rancher-kiali-server-crd + type: application + urls: + - assets/rancher-kiali-server/rancher-kiali-server-crd-1.29.000-rc01.tgz + version: 1.29.000-rc01 - annotations: catalog.cattle.io/hidden: "true" apiVersion: v2 @@ -1836,6 +3192,34 @@ entries: urls: - released/assets/rancher-kube-state-metrics/rancher-kube-state-metrics-2.13.101.tgz version: 2.13.101 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-kube-state-metrics + apiVersion: v1 + appVersion: 1.9.8 + created: "2021-04-22T22:01:02.633521204Z" + description: Install kube-state-metrics to generate and expose cluster-level metrics + digest: df06ceaba38ad0fce6b0de852ea85a245b044aa377e0d9cb2ce15f78efbef510 + home: https://github.com/kubernetes/kube-state-metrics/ + keywords: + - metric + - monitoring + - prometheus + - kubernetes + maintainers: + - email: tariq.ibrahim@mulesoft.com + name: tariq1890 + - email: manuel@rueg.eu + name: mrueg + name: rancher-kube-state-metrics + sources: + - https://github.com/kubernetes/kube-state-metrics/ + urls: + - assets/rancher-kube-state-metrics/rancher-kube-state-metrics-2.13.101-rc00.tgz + version: 2.13.101-rc00 rancher-logging: - annotations: catalog.cattle.io/auto-install: rancher-logging-crd=match @@ -1848,7 +3232,8 @@ entries: apiVersion: v1 appVersion: 3.9.4 created: "2021-04-22T21:37:50.550143255Z" - description: Collects and filter logs using highly configurable CRDs. Powered by Banzai Cloud Logging Operator. + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. digest: e75fd07ff38a8a04ef1962547991b435f2bd9c8c7650a3bf204b0768ee0fc849 icon: https://charts.rancher.io/assets/logos/logging.svg keywords: @@ -1864,15 +3249,15 @@ entries: catalog.cattle.io/certified: rancher catalog.cattle.io/display-name: Logging catalog.cattle.io/namespace: cattle-logging-system - catalog.cattle.io/os: linux catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 catalog.cattle.io/release-name: rancher-logging catalog.cattle.io/ui-component: logging apiVersion: v1 - appVersion: 3.9.0 - created: "2021-04-22T21:37:50.54862124Z" - description: Collects and filter logs using highly configurable CRDs. Powered by Banzai Cloud Logging Operator. - digest: b9b91c4d58dc43d25477ee14ada1d8a165bc54a732e4477ae5fc5a04743617ac + appVersion: 3.9.4 + created: "2021-04-22T22:01:02.643315267Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: 84ad0399490d18e8bf54a8d50c3196734ee9b43da212df83ba1371003b16c702 icon: https://charts.rancher.io/assets/logos/logging.svg keywords: - logging @@ -1880,22 +3265,22 @@ entries: - security name: rancher-logging urls: - - released/assets/rancher-logging/rancher-logging-3.9.002.tgz - version: 3.9.002 + - assets/rancher-logging/rancher-logging-3.9.400-rc05.tgz + version: 3.9.400-rc05 - annotations: catalog.cattle.io/auto-install: rancher-logging-crd=match catalog.cattle.io/certified: rancher catalog.cattle.io/display-name: Logging catalog.cattle.io/namespace: cattle-logging-system - catalog.cattle.io/os: linux catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 catalog.cattle.io/release-name: rancher-logging catalog.cattle.io/ui-component: logging apiVersion: v1 - appVersion: 3.9.0 - created: "2021-04-22T21:37:50.547295126Z" - description: Collects and filter logs using highly configurable CRDs. Powered by Banzai Cloud Logging Operator. - digest: 265de6a85e5b8f767a9f20e06c751d4ad4fd482db9f4d016f681c8b5ec94d017 + appVersion: 3.9.4 + created: "2021-04-22T22:01:02.64221746Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: 299fd9fa57e93989433f910e225b16790e249890466608efbc52378920b0d63a icon: https://charts.rancher.io/assets/logos/logging.svg keywords: - logging @@ -1903,22 +3288,22 @@ entries: - security name: rancher-logging urls: - - released/assets/rancher-logging/rancher-logging-3.9.001.tgz - version: 3.9.001 + - assets/rancher-logging/rancher-logging-3.9.400-rc04.tgz + version: 3.9.400-rc04 - annotations: catalog.cattle.io/auto-install: rancher-logging-crd=match catalog.cattle.io/certified: rancher catalog.cattle.io/display-name: Logging catalog.cattle.io/namespace: cattle-logging-system - catalog.cattle.io/os: linux catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 catalog.cattle.io/release-name: rancher-logging catalog.cattle.io/ui-component: logging apiVersion: v1 - appVersion: 3.9.0 - created: "2021-04-22T21:37:50.546264216Z" - description: Collects and filter logs using highly configurable CRDs. Powered by Banzai Cloud Logging Operator. - digest: b6b5e0c627f5594033b3558ff1f2d9c01b1f504a53cbc91b4e75d443ef81a784 + appVersion: 3.9.4 + created: "2021-04-22T22:01:02.640809651Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: d8f199a2a4106382bd14761d25f29757fe2057faa2fb4cb2a8f133863a64f46a icon: https://charts.rancher.io/assets/logos/logging.svg keywords: - logging @@ -1926,22 +3311,22 @@ entries: - security name: rancher-logging urls: - - released/assets/rancher-logging/rancher-logging-3.9.000.tgz - version: 3.9.000 + - assets/rancher-logging/rancher-logging-3.9.400-rc03.tgz + version: 3.9.400-rc03 - annotations: catalog.cattle.io/auto-install: rancher-logging-crd=match catalog.cattle.io/certified: rancher catalog.cattle.io/display-name: Logging catalog.cattle.io/namespace: cattle-logging-system - catalog.cattle.io/os: linux catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 catalog.cattle.io/release-name: rancher-logging catalog.cattle.io/ui-component: logging apiVersion: v1 - appVersion: 3.8.2 - created: "2021-04-22T21:37:50.545225706Z" - description: Collects and filter logs using highly configurable CRDs. Powered by Banzai Cloud Logging Operator. - digest: 7ec4dfb2441832d22651e9263f4bbdcda9e1f064b9e32c70d0fb7c4f6641331a + appVersion: 3.9.4 + created: "2021-04-22T22:01:02.639349042Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: 9a1884e5d0512920fec366bbe0e5b841005afe65b24afbe5f88d069fdca12b87 icon: https://charts.rancher.io/assets/logos/logging.svg keywords: - logging @@ -1949,8 +3334,8 @@ entries: - security name: rancher-logging urls: - - released/assets/rancher-logging/rancher-logging-3.8.201.tgz - version: 3.8.201 + - assets/rancher-logging/rancher-logging-3.9.400-rc02.tgz + version: 3.9.400-rc02 - annotations: catalog.cattle.io/auto-install: rancher-logging-crd=match catalog.cattle.io/certified: rancher @@ -1961,10 +3346,11 @@ entries: catalog.cattle.io/release-name: rancher-logging catalog.cattle.io/ui-component: logging apiVersion: v1 - appVersion: 3.6.0 - created: "2021-04-22T21:37:50.544283396Z" - description: Collects and filter logs using highly configurable CRDs. Powered by Banzai Cloud Logging Operator. - digest: a89b3a4327484343c59a88949479c106e40b2587df194e18910cf83099291aa6 + appVersion: 3.9.0 + created: "2021-04-22T21:37:50.54862124Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: b9b91c4d58dc43d25477ee14ada1d8a165bc54a732e4477ae5fc5a04743617ac icon: https://charts.rancher.io/assets/logos/logging.svg keywords: - logging @@ -1972,21 +3358,23 @@ entries: - security name: rancher-logging urls: - - released/assets/rancher-logging/rancher-logging-3.6.001.tgz - version: 3.6.001 + - released/assets/rancher-logging/rancher-logging-3.9.002.tgz + version: 3.9.002 - annotations: catalog.cattle.io/auto-install: rancher-logging-crd=match catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Logging catalog.cattle.io/namespace: cattle-logging-system catalog.cattle.io/os: linux catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 catalog.cattle.io/release-name: rancher-logging catalog.cattle.io/ui-component: logging apiVersion: v1 - appVersion: 3.6.0 - created: "2021-04-22T21:37:50.543308086Z" - description: Collects and filter logs using highly configurable CRDs. Powered by Banzai Cloud Logging Operator. - digest: 3f3cd871fe5c6708b3fcdcd7a9f6e87ee41eb8f5505bdaed3f01791ac2bf7faf + appVersion: 3.9.0 + created: "2021-04-22T22:01:02.63761693Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: f7b4a1e7aba4f85eb3d633fcb092d0d3973f4b016fb06a6f748e51df13ce3666 icon: https://charts.rancher.io/assets/logos/logging.svg keywords: - logging @@ -1994,65 +3382,368 @@ entries: - security name: rancher-logging urls: - - released/assets/rancher-logging/rancher-logging-3.6.000.tgz - version: 3.6.000 - rancher-logging-crd: + - assets/rancher-logging/rancher-logging-3.9.002-rc03.tgz + version: 3.9.002-rc03 - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match catalog.cattle.io/certified: rancher - catalog.cattle.io/hidden: "true" + catalog.cattle.io/display-name: Logging catalog.cattle.io/namespace: cattle-logging-system - catalog.cattle.io/release-name: rancher-logging-crd + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging apiVersion: v1 - created: "2021-04-22T21:37:50.561364967Z" - description: Installs the CRDs for rancher-logging. - digest: abdd1d1403752d836cbd01d9c853837b123d1885b88176360bae0a7f3dfc437c - name: rancher-logging-crd - type: application + appVersion: 3.9.0 + created: "2021-04-22T22:01:02.636565924Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: 3d9759eb846b9e8891bc40e1fc6b6fa9f6f998fc66f8a6736f0255f685cc64f8 + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging urls: - - released/assets/rancher-logging/rancher-logging-crd-3.9.400.tgz - version: 3.9.400 + - assets/rancher-logging/rancher-logging-3.9.002-rc01.tgz + version: 3.9.002-rc01 - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match catalog.cattle.io/certified: rancher - catalog.cattle.io/hidden: "true" + catalog.cattle.io/display-name: Logging catalog.cattle.io/namespace: cattle-logging-system - catalog.cattle.io/release-name: rancher-logging-crd + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging apiVersion: v1 - created: "2021-04-22T21:37:50.559148045Z" - description: Installs the CRDs for rancher-logging. - digest: 11b496444b7f5928007c423da993be09a1e5abe20d0e13810fc069434ff70cf9 - name: rancher-logging-crd - type: application + appVersion: 3.9.0 + created: "2021-04-22T21:37:50.547295126Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: 265de6a85e5b8f767a9f20e06c751d4ad4fd482db9f4d016f681c8b5ec94d017 + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging urls: - - released/assets/rancher-logging/rancher-logging-crd-3.9.002.tgz - version: 3.9.002 + - released/assets/rancher-logging/rancher-logging-3.9.001.tgz + version: 3.9.001 - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match catalog.cattle.io/certified: rancher - catalog.cattle.io/hidden: "true" + catalog.cattle.io/display-name: Logging catalog.cattle.io/namespace: cattle-logging-system - catalog.cattle.io/release-name: rancher-logging-crd + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging apiVersion: v1 - created: "2021-04-22T21:37:50.557834332Z" - description: Installs the CRDs for rancher-logging. - digest: 51f9dfdd673b9756d2d2f31797ccf365b95cf37beb614401281e4263e830a4cb - name: rancher-logging-crd - type: application + appVersion: 3.9.0 + created: "2021-04-22T22:01:02.635544517Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: d59d5206ab61e47dcf2ebf20dd72c5bb7dc01e21961aad70df7199a61b510998 + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging urls: - - released/assets/rancher-logging/rancher-logging-crd-3.9.001.tgz - version: 3.9.001 + - assets/rancher-logging/rancher-logging-3.9.001-rc08.tgz + version: 3.9.001-rc08 - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match catalog.cattle.io/certified: rancher - catalog.cattle.io/hidden: "true" + catalog.cattle.io/display-name: Logging catalog.cattle.io/namespace: cattle-logging-system - catalog.cattle.io/release-name: rancher-logging-crd + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging apiVersion: v1 - created: "2021-04-22T21:37:50.556347017Z" - description: Installs the CRDs for rancher-logging. + appVersion: 3.9.0 + created: "2021-04-22T21:37:50.546264216Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: b6b5e0c627f5594033b3558ff1f2d9c01b1f504a53cbc91b4e75d443ef81a784 + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging + urls: + - released/assets/rancher-logging/rancher-logging-3.9.000.tgz + version: 3.9.000 + - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Logging + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging + apiVersion: v1 + appVersion: 3.9.0 + created: "2021-04-22T22:01:02.63454741Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: 307f6ddc451bc0a028e7fb1efb1c8bfd2748e7da9cd19b41ea299ad3dac9f56b + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging + urls: + - assets/rancher-logging/rancher-logging-3.9.000-rc08.tgz + version: 3.9.000-rc08 + - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Logging + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging + apiVersion: v1 + appVersion: 3.8.2 + created: "2021-04-22T21:37:50.545225706Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: 7ec4dfb2441832d22651e9263f4bbdcda9e1f064b9e32c70d0fb7c4f6641331a + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging + urls: + - released/assets/rancher-logging/rancher-logging-3.8.201.tgz + version: 3.8.201 + - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Logging + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging + apiVersion: v1 + appVersion: 3.6.0 + created: "2021-04-22T21:37:50.544283396Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: a89b3a4327484343c59a88949479c106e40b2587df194e18910cf83099291aa6 + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging + urls: + - released/assets/rancher-logging/rancher-logging-3.6.001.tgz + version: 3.6.001 + - annotations: + catalog.cattle.io/auto-install: rancher-logging-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: logging.banzaicloud.io.clusterflow/v1beta1 + catalog.cattle.io/release-name: rancher-logging + catalog.cattle.io/ui-component: logging + apiVersion: v1 + appVersion: 3.6.0 + created: "2021-04-22T21:37:50.543308086Z" + description: Collects and filter logs using highly configurable CRDs. Powered + by Banzai Cloud Logging Operator. + digest: 3f3cd871fe5c6708b3fcdcd7a9f6e87ee41eb8f5505bdaed3f01791ac2bf7faf + icon: https://charts.rancher.io/assets/logos/logging.svg + keywords: + - logging + - monitoring + - security + name: rancher-logging + urls: + - released/assets/rancher-logging/rancher-logging-3.6.000.tgz + version: 3.6.000 + rancher-logging-crd: + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-22T21:37:50.561364967Z" + description: Installs the CRDs for rancher-logging. + digest: abdd1d1403752d836cbd01d9c853837b123d1885b88176360bae0a7f3dfc437c + name: rancher-logging-crd + type: application + urls: + - released/assets/rancher-logging/rancher-logging-crd-3.9.400.tgz + version: 3.9.400 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-22T22:01:02.657728261Z" + description: Installs the CRDs for rancher-logging. + digest: 8631cb05c0332bb2daa4a32f47b9a61e8dbbdd23f18af815c697d47115c79c88 + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.400-rc05.tgz + version: 3.9.400-rc05 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-22T22:01:02.655771749Z" + description: Installs the CRDs for rancher-logging. + digest: db73e96aa0be881046ec1b6d29ee8224c6b79ec2414bca6743e326da775bfcfb + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.400-rc04.tgz + version: 3.9.400-rc04 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-22T22:01:02.653800436Z" + description: Installs the CRDs for rancher-logging. + digest: 9b62edf5580fb8267324f13b2284ca02b9077c673065672d5a1a8632ae617325 + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.400-rc03.tgz + version: 3.9.400-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-22T22:01:02.651685422Z" + description: Installs the CRDs for rancher-logging. + digest: 26df0bb732eb3d6b2eb838d5b7dbb6a21bfa1f9bc2f89a9eae465f689959f9c3 + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.400-rc02.tgz + version: 3.9.400-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-22T21:37:50.559148045Z" + description: Installs the CRDs for rancher-logging. + digest: 11b496444b7f5928007c423da993be09a1e5abe20d0e13810fc069434ff70cf9 + name: rancher-logging-crd + type: application + urls: + - released/assets/rancher-logging/rancher-logging-crd-3.9.002.tgz + version: 3.9.002 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-22T22:01:02.649959011Z" + description: Installs the CRDs for rancher-logging. + digest: 62757a26814ba1d8d35e7f20c4bd8b71591192bdcbea80e1ef233c18b5f5346b + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.002-rc03.tgz + version: 3.9.002-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-22T22:01:02.648182099Z" + description: Installs the CRDs for rancher-logging. + digest: 458d13cf6ad6f90488dc73a6a96744e8a7b32b15cef8d01647b8eb9e848127d7 + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.002-rc01.tgz + version: 3.9.002-rc01 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-22T21:37:50.557834332Z" + description: Installs the CRDs for rancher-logging. + digest: 51f9dfdd673b9756d2d2f31797ccf365b95cf37beb614401281e4263e830a4cb + name: rancher-logging-crd + type: application + urls: + - released/assets/rancher-logging/rancher-logging-crd-3.9.001.tgz + version: 3.9.001 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-22T22:01:02.645993285Z" + description: Installs the CRDs for rancher-logging. + digest: 41510a9536773fea4e55775d5952bac7244b2980c49def8fbaf87d40e2455e30 + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.001-rc08.tgz + version: 3.9.001-rc08 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-22T21:37:50.556347017Z" + description: Installs the CRDs for rancher-logging. digest: 2ab6fc36daf86c405b536970d9ed4dcb68f84ac93df7ac3811dd123ba82448bd name: rancher-logging-crd type: application urls: - released/assets/rancher-logging/rancher-logging-crd-3.9.000.tgz version: 3.9.000 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-logging-system + catalog.cattle.io/release-name: rancher-logging-crd + apiVersion: v1 + created: "2021-04-22T22:01:02.644631276Z" + description: Installs the CRDs for rancher-logging. + digest: 6dccf7948ddce0eb40975f667ede6ec5666a2751d02c63a44912930dcef2d02c + name: rancher-logging-crd + type: application + urls: + - assets/rancher-logging/rancher-logging-crd-3.9.000-rc08.tgz + version: 3.9.000-rc08 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -2170,7 +3861,9 @@ entries: - condition: global.cattle.windows.enabled name: windowsExporter repository: file://./charts/windowsExporter - description: Collects several related Helm charts, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. digest: b1996e2efdcca1a368e6721fe2397c5158d62e1d59e3aa1bea592de25807ed44 home: https://github.com/prometheus-operator/kube-prometheus icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png @@ -2217,9 +3910,9 @@ entries: catalog.cattle.io/requests-cpu: 4500m catalog.cattle.io/requests-memory: 4000Mi catalog.cattle.io/ui-component: monitoring - apiVersion: v1 - appVersion: 0.38.1 - created: "2021-04-22T21:37:50.690572363Z" + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-22T22:01:02.908699794Z" dependencies: - condition: grafana.enabled name: grafana @@ -2272,11 +3965,13 @@ entries: - condition: rkeScheduler.enabled name: rkeScheduler repository: file://./charts/rkeScheduler - - condition: windowsExporter.enabled + - condition: global.cattle.windows.enabled name: windowsExporter repository: file://./charts/windowsExporter - description: Collects several related Helm charts, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. - digest: ee61e45ee94b01db285ffd90d67405242aa964a1b2296bad55d72a1ac7ccd786 + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: 2ae7d7c8ec975fca5994c1f0336352126b209deffde572b00410cda9ad27fdce home: https://github.com/prometheus-operator/kube-prometheus icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png keywords: @@ -2284,6 +3979,7 @@ entries: - prometheus - kube-prometheus - monitoring + kubeVersion: '>=1.16.0-0' maintainers: - name: vsliouniaev - name: bismarck @@ -2301,9 +3997,10 @@ entries: sources: - https://github.com/prometheus-community/helm-charts - https://github.com/prometheus-operator/kube-prometheus + type: application urls: - - released/assets/rancher-monitoring/rancher-monitoring-9.4.204.tgz - version: 9.4.204 + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc09.tgz + version: 14.5.100-rc09 - annotations: artifacthub.io/links: | - name: Chart Source @@ -2315,15 +4012,14 @@ entries: catalog.cattle.io/certified: rancher catalog.cattle.io/display-name: Monitoring catalog.cattle.io/namespace: cattle-monitoring-system - catalog.cattle.io/os: linux catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 catalog.cattle.io/release-name: rancher-monitoring catalog.cattle.io/requests-cpu: 4500m catalog.cattle.io/requests-memory: 4000Mi catalog.cattle.io/ui-component: monitoring - apiVersion: v1 - appVersion: 0.38.1 - created: "2021-04-22T21:37:50.666622023Z" + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-22T22:01:02.883856032Z" dependencies: - condition: grafana.enabled name: grafana @@ -2376,8 +4072,13 @@ entries: - condition: rkeScheduler.enabled name: rkeScheduler repository: file://./charts/rkeScheduler - description: Collects several related Helm charts, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. - digest: 64604ea0359b468c9a768ec484ebfdf3f776da5524571c85dd42bc6e600aeead + - condition: global.cattle.windows.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: 175aaae1e2c0e4fbd31557bf2c1f32b85df023fa207d0394c49d6f0f50b187eb home: https://github.com/prometheus-operator/kube-prometheus icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png keywords: @@ -2385,6 +4086,7 @@ entries: - prometheus - kube-prometheus - monitoring + kubeVersion: '>=1.16.0-0' maintainers: - name: vsliouniaev - name: bismarck @@ -2402,9 +4104,10 @@ entries: sources: - https://github.com/prometheus-community/helm-charts - https://github.com/prometheus-operator/kube-prometheus + type: application urls: - - released/assets/rancher-monitoring/rancher-monitoring-9.4.203.tgz - version: 9.4.203 + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc08.tgz + version: 14.5.100-rc08 - annotations: artifacthub.io/links: | - name: Chart Source @@ -2416,11 +4119,2117 @@ entries: catalog.cattle.io/certified: rancher catalog.cattle.io/display-name: Monitoring catalog.cattle.io/namespace: cattle-monitoring-system - catalog.cattle.io/os: linux catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi catalog.cattle.io/ui-component: monitoring - apiVersion: v1 + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-22T22:01:02.856726155Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: global.cattle.windows.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: b0801f8c9d58ac77b3bfb90b71656f0dfaa19c367e9a1c9938f1cc4d3d63eb8e + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc07.tgz + version: 14.5.100-rc07 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-22T22:01:02.832134096Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: global.cattle.windows.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: e971c28f14a5a6e33260669b7a0673b387fdf27890cf31810bd846f53a6300aa + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc06.tgz + version: 14.5.100-rc06 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-22T22:01:02.804769018Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: global.cattle.windows.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: c0ce083a3b63e006dbbac752f843104bff7a451c3f302ff0eb9b9c7d632612d5 + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc05.tgz + version: 14.5.100-rc05 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-22T22:01:02.780374459Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: windowsExporter.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: 32c3367d34a525a88143aec794f8369182748a7b18c4ad1999b13ef9c3d1b6f0 + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc04.tgz + version: 14.5.100-rc04 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-22T22:01:02.754730992Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: windowsExporter.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: 57e6fb49bcb105dc471a257b4f705d09bf3da3cc5a233e1b4f534fcbf453ab1d + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc03.tgz + version: 14.5.100-rc03 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-22T22:01:02.730212733Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: windowsExporter.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: 3ac1670290f670403639587c1b24ded9bf90755b7f4e5f02ebb0899f69df69a0 + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc02.tgz + version: 14.5.100-rc02 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-22T22:01:02.706475878Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: windowsExporter.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: 035f469942eb4252cc59de618e49f27d82245fe68d79ef3a61fb4b7e5f4409b6 + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc01.tgz + version: 14.5.100-rc01 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v2 + appVersion: 0.46.0 + created: "2021-04-22T22:01:02.680743611Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: windowsExporter.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: 28257f79dd38ab74c939689626d6aacd2ce54a2a88ea9412d0ef200ba6c815d2 + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + kubeVersion: '>=1.16.0-0' + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-14.5.100-rc00.tgz + version: 14.5.100-rc00 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v1 + appVersion: 0.38.1 + created: "2021-04-22T21:37:50.690572363Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: windowsExporter.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: ee61e45ee94b01db285ffd90d67405242aa964a1b2296bad55d72a1ac7ccd786 + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + urls: + - released/assets/rancher-monitoring/rancher-monitoring-9.4.204.tgz + version: 9.4.204 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v1 + appVersion: 0.38.1 + created: "2021-04-22T22:01:03.154892295Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: windowsExporter.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: 50c6a15d3ad180773c4d8a68455bb23a1b43b4d867b20e986ce50aa73849d44c + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + urls: + - assets/rancher-monitoring/rancher-monitoring-9.4.204-rc09.tgz + version: 9.4.204-rc09 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v1 + appVersion: 0.38.1 + created: "2021-04-22T22:01:03.131840245Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: windowsExporter.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: 02380345279917bfa9a62614381826e65bb29c97228362d3da8c7cefd734fdb9 + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + urls: + - assets/rancher-monitoring/rancher-monitoring-9.4.204-rc08.tgz + version: 9.4.204-rc08 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v1 + appVersion: 0.38.1 + created: "2021-04-22T22:01:03.108766195Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: windowsExporter.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: e7d64d5bd68fe224dc59187410ff5ac4adb99788c1dbf256ef3249f6c37a0734 + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + urls: + - assets/rancher-monitoring/rancher-monitoring-9.4.204-rc07.tgz + version: 9.4.204-rc07 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v1 + appVersion: 0.38.1 + created: "2021-04-22T22:01:03.076222083Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: windowsExporter.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: 3b24326ffabbf3d4203981deb693b499d6231b71f5a6b73734fe83ce33c2269b + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + urls: + - assets/rancher-monitoring/rancher-monitoring-9.4.204-rc06.tgz + version: 9.4.204-rc06 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v1 + appVersion: 0.38.1 + created: "2021-04-22T22:01:03.052147926Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: windowsExporter.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: de33b0e74170ca8b9eabdac17c44becff154d274dcf09b947994be1c3d5e28bb + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + urls: + - assets/rancher-monitoring/rancher-monitoring-9.4.204-rc05.tgz + version: 9.4.204-rc05 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v1 + appVersion: 0.38.1 + created: "2021-04-22T22:01:03.026944163Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + - condition: windowsExporter.enabled + name: windowsExporter + repository: file://./charts/windowsExporter + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: d8fec718599037d90c5a63c9ca9dedfcf3cae69e0a9aae90f75bdf14cebf97f5 + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + urls: + - assets/rancher-monitoring/rancher-monitoring-9.4.204-rc04.tgz + version: 9.4.204-rc04 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v1 + appVersion: 0.38.1 + created: "2021-04-22T22:01:03.002778705Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: 3e14ffafc25dd769c3b80db1102db1f1fa0deb64025bfae0323759e54209d52e + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + urls: + - assets/rancher-monitoring/rancher-monitoring-9.4.204-rc03.tgz + version: 9.4.204-rc03 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v1 + appVersion: 0.38.1 + created: "2021-04-22T22:01:02.979745756Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: f68e46357300451b582354dd838f80a68cbda4c4f3d2c0adc812096f563f8e4f + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + urls: + - assets/rancher-monitoring/rancher-monitoring-9.4.204-rc02.tgz + version: 9.4.204-rc02 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v1 + appVersion: 0.38.1 + created: "2021-04-22T22:01:02.95422559Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: 66b54a77c5fc817d9f0fba7918160a709debba453f3a5705a16a62324ed09235 + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + urls: + - assets/rancher-monitoring/rancher-monitoring-9.4.204-rc01.tgz + version: 9.4.204-rc01 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v1 + appVersion: 0.38.1 + created: "2021-04-22T22:01:02.930926738Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: aba45df29197c56e35ff1f0045261cb39efece2c91ce47ffc3e6b2ae70aa3f94 + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + urls: + - assets/rancher-monitoring/rancher-monitoring-9.4.204-rc00.tgz + version: 9.4.204-rc00 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/requests-cpu: 4500m + catalog.cattle.io/requests-memory: 4000Mi + catalog.cattle.io/ui-component: monitoring + apiVersion: v1 + appVersion: 0.38.1 + created: "2021-04-22T21:37:50.666622023Z" + dependencies: + - condition: grafana.enabled + name: grafana + repository: file://./charts/grafana + - condition: k3sServer.enabled + name: k3sServer + repository: file://./charts/k3sServer + - condition: kubeStateMetrics.enabled + name: kube-state-metrics + repository: file://./charts/kube-state-metrics + - condition: kubeAdmControllerManager.enabled + name: kubeAdmControllerManager + repository: file://./charts/kubeAdmControllerManager + - condition: kubeAdmEtcd.enabled + name: kubeAdmEtcd + repository: file://./charts/kubeAdmEtcd + - condition: kubeAdmProxy.enabled + name: kubeAdmProxy + repository: file://./charts/kubeAdmProxy + - condition: kubeAdmScheduler.enabled + name: kubeAdmScheduler + repository: file://./charts/kubeAdmScheduler + - condition: prometheus-adapter.enabled + name: prometheus-adapter + repository: file://./charts/prometheus-adapter + - condition: nodeExporter.enabled + name: prometheus-node-exporter + repository: file://./charts/prometheus-node-exporter + - condition: rke2ControllerManager.enabled + name: rke2ControllerManager + repository: file://./charts/rke2ControllerManager + - condition: rke2Etcd.enabled + name: rke2Etcd + repository: file://./charts/rke2Etcd + - condition: rke2Proxy.enabled + name: rke2Proxy + repository: file://./charts/rke2Proxy + - condition: rke2Scheduler.enabled + name: rke2Scheduler + repository: file://./charts/rke2Scheduler + - condition: rkeControllerManager.enabled + name: rkeControllerManager + repository: file://./charts/rkeControllerManager + - condition: rkeEtcd.enabled + name: rkeEtcd + repository: file://./charts/rkeEtcd + - condition: rkeProxy.enabled + name: rkeProxy + repository: file://./charts/rkeProxy + - condition: rkeScheduler.enabled + name: rkeScheduler + repository: file://./charts/rkeScheduler + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + digest: 64604ea0359b468c9a768ec484ebfdf3f776da5524571c85dd42bc6e600aeead + home: https://github.com/prometheus-operator/kube-prometheus + icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png + keywords: + - operator + - prometheus + - kube-prometheus + - monitoring + maintainers: + - name: vsliouniaev + - name: bismarck + - email: gianrubio@gmail.com + name: gianrubio + - email: github.gkarthiks@gmail.com + name: gkarthiks + - email: scott@r6by.com + name: scottrigby + - email: miroslav.hadzhiev@gmail.com + name: Xtigyro + - email: arvind.iyengar@suse.com + name: Arvind + name: rancher-monitoring + sources: + - https://github.com/prometheus-community/helm-charts + - https://github.com/prometheus-operator/kube-prometheus + urls: + - released/assets/rancher-monitoring/rancher-monitoring-9.4.203.tgz + version: 9.4.203 + - annotations: + artifacthub.io/links: | + - name: Chart Source + url: https://github.com/prometheus-community/helm-charts + - name: Upstream Project + url: https://github.com/prometheus-operator/kube-prometheus + artifacthub.io/operator: "true" + catalog.cattle.io/auto-install: rancher-monitoring-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Monitoring + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1 + catalog.cattle.io/release-name: rancher-monitoring + catalog.cattle.io/ui-component: monitoring + apiVersion: v1 appVersion: 0.38.1 created: "2021-04-22T21:37:50.645236409Z" dependencies: @@ -2505,7 +6314,9 @@ entries: name: rancher-pushprox repository: file://../../rancher-pushprox/charts version: 0.1.2 - description: Collects several related Helm charts, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. digest: 0e032ffa7397d564f3d00aa7719b62314e25f6e32e723de5db0f312f4a0034de home: https://github.com/prometheus-operator/kube-prometheus icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png @@ -2632,7 +6443,9 @@ entries: name: rancher-pushprox repository: file://../../rancher-pushprox/charts version: 0.1.1 - description: Collects several related Helm charts, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. digest: 36890f0d8ae2f9c4990e61122d727a5df31dbe017f49d6334e7e13fb9c257cd8 home: https://github.com/prometheus-operator/kube-prometheus icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png @@ -2768,7 +6581,9 @@ entries: name: rancher-pushprox repository: file://../../rancher-pushprox/charts version: 0.1.0 - description: Collects several related Helm charts, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. + description: Collects several related Helm charts, Grafana dashboards, and Prometheus + rules combined with documentation and scripts to provide easy to operate end-to-end + Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. digest: 4c5845c1ca7c109052ce9cae5deea7dd0bc697cb334ba9d929f4c04f14835957 home: https://github.com/prometheus-operator/kube-prometheus icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png @@ -2793,23 +6608,163 @@ entries: - https://github.com/prometheus-community/helm-charts - https://github.com/prometheus-operator/kube-prometheus urls: - - released/assets/rancher-monitoring/rancher-monitoring-9.4.200.tgz - version: 9.4.200 - rancher-monitoring-crd: + - released/assets/rancher-monitoring/rancher-monitoring-9.4.200.tgz + version: 9.4.200 + rancher-monitoring-crd: + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T21:37:50.694962207Z" + description: Installs the CRDs for rancher-monitoring. + digest: 73f5d12fedcf088fdc84c91576dd97f8695bc26f5d8c0a37e7690b91649f4d6c + name: rancher-monitoring-crd + type: application + urls: + - released/assets/rancher-monitoring/rancher-monitoring-crd-14.5.100.tgz + version: 14.5.100 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T22:01:03.202337603Z" + description: Installs the CRDs for rancher-monitoring. + digest: 982e0868ddf5d7ca35ccf8a24bbbbf8a21b2af961097ac9e2898729ae5c871e4 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc09.tgz + version: 14.5.100-rc09 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T22:01:03.19718637Z" + description: Installs the CRDs for rancher-monitoring. + digest: 7315f1a859308d583512f7f8a1906f9ba29385dbf47bf80b906a77e34dd190a4 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc08.tgz + version: 14.5.100-rc08 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T22:01:03.192793341Z" + description: Installs the CRDs for rancher-monitoring. + digest: 5dc6de22a86175245dbc517032624bd97134a29cf0fe8f6a4ebd30fdfd20ad56 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc07.tgz + version: 14.5.100-rc07 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T22:01:03.18806121Z" + description: Installs the CRDs for rancher-monitoring. + digest: 6d7aa5749e90abea435b4bb6fa88d85032ef438a881097ebae976befee443e44 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc06.tgz + version: 14.5.100-rc06 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T22:01:03.183071778Z" + description: Installs the CRDs for rancher-monitoring. + digest: cca37d775aaf8c2ef62bc6848d35912809c1f545d4b6092fe22ce0b8feec41f9 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc05.tgz + version: 14.5.100-rc05 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T22:01:03.17873495Z" + description: Installs the CRDs for rancher-monitoring. + digest: cd53c50b7e078e24ea377bf91387d7a7d3db6ee9fc9be6429c42f3c0ec032966 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc04.tgz + version: 14.5.100-rc04 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T22:01:03.17408602Z" + description: Installs the CRDs for rancher-monitoring. + digest: fbe1fbf8da1e944faccbf7e38930d2fc862cdc5fd32ca1d00c4633b2c2ba3e92 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc03.tgz + version: 14.5.100-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T22:01:03.169156587Z" + description: Installs the CRDs for rancher-monitoring. + digest: a97f54b1b7da85e0f95a6523af617e197b8f8d1bc1cd1d1002e5f17b51f8ad47 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc02.tgz + version: 14.5.100-rc02 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" catalog.cattle.io/namespace: cattle-monitoring-system catalog.cattle.io/release-name: rancher-monitoring-crd apiVersion: v1 - created: "2021-04-22T21:37:50.694962207Z" + created: "2021-04-22T22:01:03.164742759Z" description: Installs the CRDs for rancher-monitoring. - digest: 73f5d12fedcf088fdc84c91576dd97f8695bc26f5d8c0a37e7690b91649f4d6c + digest: eca0f74ffa14f6d316336b54dd09b62fa9dc4dce8fbcf0c9a36c3f48ec6fae3b name: rancher-monitoring-crd type: application urls: - - released/assets/rancher-monitoring/rancher-monitoring-crd-14.5.100.tgz - version: 14.5.100 + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc01.tgz + version: 14.5.100-rc01 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T22:01:03.159361324Z" + description: Installs the CRDs for rancher-monitoring. + digest: 5c7fdb80e57f423182ec4f3b5a927f1c5ca766b563009238cc59043a0ec42353 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc00.tgz + version: 14.5.100-rc00 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -2824,6 +6779,146 @@ entries: urls: - released/assets/rancher-monitoring/rancher-monitoring-crd-9.4.204.tgz version: 9.4.204 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T22:01:03.250175814Z" + description: Installs the CRDs for rancher-monitoring. + digest: d8eb62ecc727f911e99b4b5d37260bde6ff040975f84ee9d10878cd54b730c5f + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-9.4.204-rc09.tgz + version: 9.4.204-rc09 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T22:01:03.245176482Z" + description: Installs the CRDs for rancher-monitoring. + digest: d89537c435671a67ef3ed1c6361bdda05c617f1be38e2a8821ab6e7b1841f199 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-9.4.204-rc08.tgz + version: 9.4.204-rc08 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T22:01:03.240368551Z" + description: Installs the CRDs for rancher-monitoring. + digest: 82344e6f4b9bbae466037b995d076a068a35a43314f00dc0616e767b7a1b887c + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-9.4.204-rc07.tgz + version: 9.4.204-rc07 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T22:01:03.235528819Z" + description: Installs the CRDs for rancher-monitoring. + digest: 65ec05d07de3dbc8d0993db237f805f665e33792f5462e34c548ba5a2b49b964 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-9.4.204-rc06.tgz + version: 9.4.204-rc06 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T22:01:03.23112029Z" + description: Installs the CRDs for rancher-monitoring. + digest: 0b11edae6bf47779275c19e845732f26972c2ef075f5cc36a17b136627c14cef + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-9.4.204-rc05.tgz + version: 9.4.204-rc05 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T22:01:03.226180958Z" + description: Installs the CRDs for rancher-monitoring. + digest: f6112dca3c4d7144a9ed6e9ab241985efce5d15df7f1f4587abd9f00d834fc07 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-9.4.204-rc04.tgz + version: 9.4.204-rc04 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T22:01:03.221201126Z" + description: Installs the CRDs for rancher-monitoring. + digest: b4f526e853fe683f60c1835e90b2872c7e7b1d02a4e64495a654ef59eec4755f + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-9.4.204-rc03.tgz + version: 9.4.204-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T22:01:03.216757897Z" + description: Installs the CRDs for rancher-monitoring. + digest: 3a23783b0d8768bc11317fa90a709407c07e49f34b7a6bbfe55f1c67d82b83f8 + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-9.4.204-rc02.tgz + version: 9.4.204-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T22:01:03.211829065Z" + description: Installs the CRDs for rancher-monitoring. + digest: 6c652db827bfcc5a874f9bd8676547ba6c3e845dc04fcb2e8fe3e3ea6f6ded7d + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-9.4.204-rc01.tgz + version: 9.4.204-rc01 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-monitoring-system + catalog.cattle.io/release-name: rancher-monitoring-crd + apiVersion: v1 + created: "2021-04-22T22:01:03.207035434Z" + description: Installs the CRDs for rancher-monitoring. + digest: f5eccbacc35a9935dc03dc32f929a1ed2c85bdcf7930c493270b1694e715d49a + name: rancher-monitoring-crd + type: application + urls: + - assets/rancher-monitoring/rancher-monitoring-crd-9.4.204-rc00.tgz + version: 9.4.204-rc00 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -2908,7 +7003,52 @@ entries: urls: - released/assets/rancher-node-exporter/rancher-node-exporter-1.16.201.tgz version: 1.16.201 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-node-exporter + apiVersion: v1 + appVersion: 1.1.2 + created: "2021-04-22T22:01:03.251257121Z" + description: A Helm chart for prometheus node-exporter + digest: 90dd6cfea1830303b4fea5813df167d5fd4fef4c67f2ebddc093318a8b6f1e04 + home: https://github.com/prometheus/node_exporter/ + keywords: + - node-exporter + - prometheus + - exporter + maintainers: + - email: gianrubio@gmail.com + name: gianrubio + - name: vsliouniaev + - name: bismarck + name: rancher-node-exporter + sources: + - https://github.com/prometheus/node_exporter/ + urls: + - assets/rancher-node-exporter/rancher-node-exporter-1.16.201-rc00.tgz + version: 1.16.201-rc00 rancher-operator: + - annotations: + catalog.cattle.io/auto-install: rancher-operator-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.rancher.cattle.io/v1 + catalog.cattle.io/release-name: rancher-operator + apiVersion: v2 + appVersion: 0.2.0-alpha + created: "2021-04-22T22:01:03.253680037Z" + description: Control Rancher using GitOps + digest: 013cefede9840556fe8c175805240f7f076dbeb28cb964598b119d1406a73131 + name: rancher-operator + urls: + - assets/rancher-operator/rancher-operator-0.2.0-alpha03-rc01.tgz + version: 0.2.0-alpha03-rc01 - annotations: catalog.cattle.io/auto-install: rancher-operator-crd=match catalog.cattle.io/certified: rancher @@ -2922,11 +7062,119 @@ entries: appVersion: 0.2.0-alpha created: "2021-04-22T21:37:50.722429683Z" description: Control Rancher using GitOps - digest: 5f9b155e396dcd7aa2561cf40765e1b368db0617038bc00869494bed0be7ddde + digest: 5f9b155e396dcd7aa2561cf40765e1b368db0617038bc00869494bed0be7ddde + name: rancher-operator + urls: + - released/assets/rancher-operator/rancher-operator-0.2.0-alpha03.tgz + version: 0.2.0-alpha03 + - annotations: + catalog.cattle.io/auto-install: rancher-operator-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.rancher.cattle.io/v1 + catalog.cattle.io/release-name: rancher-operator + apiVersion: v2 + appVersion: 0.2.0-alpha + created: "2021-04-22T22:01:03.253412235Z" + description: Control Rancher using GitOps + digest: b9941a2ec1bf45377a2ec1214acf7511dc91ecf3f2855e90bc8a05809d8f3b73 + name: rancher-operator + urls: + - assets/rancher-operator/rancher-operator-0.2.0-alpha02-rc01.tgz + version: 0.2.0-alpha02-rc01 + - annotations: + catalog.cattle.io/auto-install: rancher-operator-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.rancher.cattle.io/v1 + catalog.cattle.io/release-name: rancher-operator + apiVersion: v2 + appVersion: 0.2.0-alpha + created: "2021-04-22T21:37:50.72212358Z" + description: Control Rancher using GitOps + digest: 404113bec407041c1f0548f4ffc85d63f85e714700f982b0e07876c6e8566b70 + name: rancher-operator + urls: + - released/assets/rancher-operator/rancher-operator-0.2.0-alpha02.tgz + version: 0.2.0-alpha02 + - annotations: + catalog.cattle.io/auto-install: rancher-operator-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.rancher.cattle.io/v1 + catalog.cattle.io/release-name: rancher-operator + apiVersion: v2 + appVersion: 0.1.4 + created: "2021-04-22T21:37:50.721618374Z" + description: Control Rancher using GitOps + digest: 0962c9a079f3b489d1e966c76e411bc77cbdcaa478f2660bc4d23c27cd3feb2d + name: rancher-operator + urls: + - released/assets/rancher-operator/rancher-operator-0.1.400.tgz + version: 0.1.400 + - annotations: + catalog.cattle.io/auto-install: rancher-operator-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.rancher.cattle.io/v1 + catalog.cattle.io/release-name: rancher-operator + apiVersion: v2 + appVersion: 0.1.4 + created: "2021-04-22T22:01:03.253151834Z" + description: Control Rancher using GitOps + digest: 782365883d42561a7c92dc54cb7fd9c6599d1a34dccf6ca236c3209863fe0db5 + name: rancher-operator + urls: + - assets/rancher-operator/rancher-operator-0.1.400-rc04.tgz + version: 0.1.400-rc04 + - annotations: + catalog.cattle.io/auto-install: rancher-operator-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.rancher.cattle.io/v1 + catalog.cattle.io/release-name: rancher-operator + apiVersion: v2 + appVersion: 0.1.4 + created: "2021-04-22T22:01:03.252904632Z" + description: Control Rancher using GitOps + digest: 87aae54e2daea86984c88e3c7054bfeed2973f6435ab66ec36a6039bd7a46173 + name: rancher-operator + urls: + - assets/rancher-operator/rancher-operator-0.1.400-rc03.tgz + version: 0.1.400-rc03 + - annotations: + catalog.cattle.io/auto-install: rancher-operator-crd=match + catalog.cattle.io/certified: rancher + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/provides-gvr: clusters.rancher.cattle.io/v1 + catalog.cattle.io/release-name: rancher-operator + apiVersion: v2 + appVersion: 0.1.4 + created: "2021-04-22T22:01:03.252668631Z" + description: Control Rancher using GitOps + digest: ffbce9b2b0886047cab39b3131a428c5c5175769ec1c09f3766efeb5740b2472 name: rancher-operator urls: - - released/assets/rancher-operator/rancher-operator-0.2.0-alpha03.tgz - version: 0.2.0-alpha03 + - assets/rancher-operator/rancher-operator-0.1.400-rc02.tgz + version: 0.1.400-rc02 - annotations: catalog.cattle.io/auto-install: rancher-operator-crd=match catalog.cattle.io/certified: rancher @@ -2937,14 +7185,14 @@ entries: catalog.cattle.io/provides-gvr: clusters.rancher.cattle.io/v1 catalog.cattle.io/release-name: rancher-operator apiVersion: v2 - appVersion: 0.2.0-alpha - created: "2021-04-22T21:37:50.72212358Z" + appVersion: 0.1.4 + created: "2021-04-22T22:01:03.252431029Z" description: Control Rancher using GitOps - digest: 404113bec407041c1f0548f4ffc85d63f85e714700f982b0e07876c6e8566b70 + digest: 4b04a58dcb453f18305a7f32e8650c7db69ed9073dfb57ccbf604ff5939c3768 name: rancher-operator urls: - - released/assets/rancher-operator/rancher-operator-0.2.0-alpha02.tgz - version: 0.2.0-alpha02 + - assets/rancher-operator/rancher-operator-0.1.400-rc01.tgz + version: 0.1.400-rc01 - annotations: catalog.cattle.io/auto-install: rancher-operator-crd=match catalog.cattle.io/certified: rancher @@ -2955,14 +7203,14 @@ entries: catalog.cattle.io/provides-gvr: clusters.rancher.cattle.io/v1 catalog.cattle.io/release-name: rancher-operator apiVersion: v2 - appVersion: 0.1.4 - created: "2021-04-22T21:37:50.721618374Z" + appVersion: 0.1.3 + created: "2021-04-22T21:37:50.721302271Z" description: Control Rancher using GitOps - digest: 0962c9a079f3b489d1e966c76e411bc77cbdcaa478f2660bc4d23c27cd3feb2d + digest: 73ebe2ffee0dd484246cef9e4eec8b4728a98253803ecebc2abc4bd5700eddc8 name: rancher-operator urls: - - released/assets/rancher-operator/rancher-operator-0.1.400.tgz - version: 0.1.400 + - released/assets/rancher-operator/rancher-operator-0.1.300.tgz + version: 0.1.300 - annotations: catalog.cattle.io/auto-install: rancher-operator-crd=match catalog.cattle.io/certified: rancher @@ -2974,13 +7222,13 @@ entries: catalog.cattle.io/release-name: rancher-operator apiVersion: v2 appVersion: 0.1.3 - created: "2021-04-22T21:37:50.721302271Z" + created: "2021-04-22T22:01:03.252035726Z" description: Control Rancher using GitOps - digest: 73ebe2ffee0dd484246cef9e4eec8b4728a98253803ecebc2abc4bd5700eddc8 + digest: 8a789b297374fb34bb3d78cb62f38f98f1b950bea75064d6a9bffbbd0623e2b6 name: rancher-operator urls: - - released/assets/rancher-operator/rancher-operator-0.1.300.tgz - version: 0.1.300 + - assets/rancher-operator/rancher-operator-0.1.300-rc08.tgz + version: 0.1.300-rc08 - annotations: catalog.cattle.io/auto-install: rancher-operator-crd=match catalog.cattle.io/certified: rancher @@ -3036,6 +7284,25 @@ entries: - released/assets/rancher-operator/rancher-operator-0.1.000.tgz version: 0.1.000 rancher-operator-crd: + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-operator-crd + apiVersion: v2 + appVersion: 0.2.0-alpha + created: "2021-04-22T22:01:03.258962772Z" + dependencies: + - condition: capi.enabled + name: capi + repository: "" + description: Rancher Operator CustomResourceDefinitions + digest: 7f38dca0bb5a929b4d1e96424a4a436dee4be5fc43d2be64fe240f3d2efb46b6 + name: rancher-operator-crd + urls: + - assets/rancher-operator-crd/rancher-operator-crd-0.2.0-alpha03-rc01.tgz + version: 0.2.0-alpha03-rc01 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -3055,6 +7322,25 @@ entries: urls: - released/assets/rancher-operator-crd/rancher-operator-crd-0.2.0-alpha03.tgz version: 0.2.0-alpha03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-operator-crd + apiVersion: v2 + appVersion: 0.2.0-alpha + created: "2021-04-22T22:01:03.258057366Z" + dependencies: + - condition: capi.enabled + name: capi + repository: "" + description: Rancher Operator CustomResourceDefinitions + digest: 0bb73151f03963aeca4a35508030d90bb2405611a706e9d51b03f9a6f028451e + name: rancher-operator-crd + urls: + - assets/rancher-operator-crd/rancher-operator-crd-0.2.0-alpha02-rc01.tgz + version: 0.2.0-alpha02-rc01 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -3074,6 +7360,25 @@ entries: urls: - released/assets/rancher-operator-crd/rancher-operator-crd-0.2.0-alpha02.tgz version: 0.2.0-alpha02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-operator-crd + apiVersion: v2 + appVersion: 0.2.0-alpha + created: "2021-04-22T22:01:03.25712886Z" + dependencies: + - condition: capi.enabled + name: capi + repository: "" + description: Rancher Operator CustomResourceDefinitions + digest: ac3c9ea04c163e615f663c53df81106e343ab83106482b33e4823b401554259a + name: rancher-operator-crd + urls: + - assets/rancher-operator-crd/rancher-operator-crd-0.2.0-alpha01-rc01.tgz + version: 0.2.0-alpha01-rc01 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -3108,6 +7413,66 @@ entries: urls: - released/assets/rancher-operator-crd/rancher-operator-crd-0.1.400.tgz version: 0.1.400 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-operator-crd + apiVersion: v2 + appVersion: 0.1.4 + created: "2021-04-22T22:01:03.256203554Z" + description: Rancher Operator CustomResourceDefinitions + digest: 85046bf65cdc5826b2f289b74860df0f0acc355e3a69b32695afd643d73063de + name: rancher-operator-crd + urls: + - assets/rancher-operator-crd/rancher-operator-crd-0.1.400-rc04.tgz + version: 0.1.400-rc04 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-operator-crd + apiVersion: v2 + appVersion: 0.1.4 + created: "2021-04-22T22:01:03.25569625Z" + description: Rancher Operator CustomResourceDefinitions + digest: 9ecc910f29218d08e3a3c706899d6e0a937e8917e5c6802edfc261ceba3552aa + name: rancher-operator-crd + urls: + - assets/rancher-operator-crd/rancher-operator-crd-0.1.400-rc03.tgz + version: 0.1.400-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-operator-crd + apiVersion: v2 + appVersion: 0.1.4 + created: "2021-04-22T22:01:03.255196147Z" + description: Rancher Operator CustomResourceDefinitions + digest: 0e44f3664a6e21c659e570df732dc62204fe8f3fef443ec91f451ea7a57898cc + name: rancher-operator-crd + urls: + - assets/rancher-operator-crd/rancher-operator-crd-0.1.400-rc02.tgz + version: 0.1.400-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-operator-crd + apiVersion: v2 + appVersion: 0.1.4 + created: "2021-04-22T22:01:03.254687244Z" + description: Rancher Operator CustomResourceDefinitions + digest: dad9049da4696212da1a0ae1ad31b1c0927f59482d33c349ac7cf4644fa39e50 + name: rancher-operator-crd + urls: + - assets/rancher-operator-crd/rancher-operator-crd-0.1.400-rc01.tgz + version: 0.1.400-rc01 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -3123,6 +7488,21 @@ entries: urls: - released/assets/rancher-operator-crd/rancher-operator-crd-0.1.300.tgz version: 0.1.300 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rancher-operator-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-operator-crd + apiVersion: v2 + appVersion: 0.1.3 + created: "2021-04-22T22:01:03.25418584Z" + description: Rancher Operator CustomResourceDefinitions + digest: 1d7002f7438edf3b79eae7d872cd39c3f51c26be4136182618cfe95082cfae57 + name: rancher-operator-crd + urls: + - assets/rancher-operator-crd/rancher-operator-crd-0.1.300-rc08.tgz + version: 0.1.300-rc08 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -3181,6 +7561,48 @@ entries: urls: - released/assets/rancher-prom2teams/rancher-prom2teams-0.2.000.tgz version: 0.2.000 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-prom2teams + apiVersion: v1 + appVersion: 3.2.1 + created: "2021-04-22T22:01:03.261305187Z" + description: A Helm chart for Prom2Teams based on the upstream https://github.com/idealista/prom2teams + digest: b726ec05a37254e2b82774d8a6946d77fe0a701815978bc8082d241ebc682c72 + name: rancher-prom2teams + urls: + - assets/rancher-prom2teams/rancher-prom2teams-0.2.000-rc03.tgz + version: 0.2.000-rc03 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-prom2teams + apiVersion: v1 + appVersion: 3.2.1 + created: "2021-04-22T22:01:03.260607482Z" + description: A Helm chart for Prom2Teams based on the upstream https://github.com/idealista/prom2teams + digest: 05b0ce5fb51fd3f620211c816c43a227b5e41a13a20a62402bcc149c39733947 + name: rancher-prom2teams + urls: + - assets/rancher-prom2teams/rancher-prom2teams-0.2.000-rc02.tgz + version: 0.2.000-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-prom2teams + apiVersion: v1 + appVersion: 3.2.1 + created: "2021-04-22T22:01:03.259929378Z" + description: A Helm chart for Prom2Teams based on the upstream https://github.com/idealista/prom2teams + digest: ad1cdd6d7b64df9805c7c97f445f2b97c5acbfc6a56174723170d6b5c89d306d + name: rancher-prom2teams + urls: + - assets/rancher-prom2teams/rancher-prom2teams-0.2.000-rc01.tgz + version: 0.2.000-rc01 rancher-prometheus-adapter: - annotations: catalog.cattle.io/hidden: "true" @@ -3212,6 +7634,66 @@ entries: urls: - released/assets/rancher-prometheus-adapter/rancher-prometheus-adapter-2.12.101.tgz version: 2.12.101 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-prometheus-adapter + apiVersion: v1 + appVersion: v0.8.3 + created: "2021-04-22T22:01:03.263815203Z" + description: A Helm chart for k8s prometheus adapter + digest: 43149ffadec9ba6e7fe9527f5b248de3b990a86f557db7e165e02215e6c15849 + home: https://github.com/DirectXMan12/k8s-prometheus-adapter + keywords: + - hpa + - metrics + - prometheus + - adapter + maintainers: + - email: mattias.gees@jetstack.io + name: mattiasgees + - name: steven-sheehy + - email: hfernandez@mesosphere.com + name: hectorj2f + name: rancher-prometheus-adapter + sources: + - https://github.com/kubernetes/charts + - https://github.com/DirectXMan12/k8s-prometheus-adapter + urls: + - assets/rancher-prometheus-adapter/rancher-prometheus-adapter-2.12.101-rc01.tgz + version: 2.12.101-rc01 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-prometheus-adapter + apiVersion: v1 + appVersion: v0.8.3 + created: "2021-04-22T22:01:03.262544295Z" + description: A Helm chart for k8s prometheus adapter + digest: a8f633651c1720087128b19d0543ead0eff8561d97b8f4de59d4497b6c8588a4 + home: https://github.com/DirectXMan12/k8s-prometheus-adapter + keywords: + - hpa + - metrics + - prometheus + - adapter + maintainers: + - email: mattias.gees@jetstack.io + name: mattiasgees + - name: steven-sheehy + - email: hfernandez@mesosphere.com + name: hectorj2f + name: rancher-prometheus-adapter + sources: + - https://github.com/kubernetes/charts + - https://github.com/DirectXMan12/k8s-prometheus-adapter + urls: + - assets/rancher-prometheus-adapter/rancher-prometheus-adapter-2.12.101-rc00.tgz + version: 2.12.101-rc00 rancher-pushprox: - annotations: catalog.cattle.io/hidden: "true" @@ -3222,13 +7704,31 @@ entries: apiVersion: v1 appVersion: 0.1.0 created: "2021-04-22T21:37:50.732685685Z" - description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx clients. + description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx + clients. digest: 1b886431967b238340e5ccbffa1b72cc6b3c4320258b1c188aefaf543b6914b2 name: rancher-pushprox type: application urls: - released/assets/rancher-pushprox/rancher-pushprox-0.1.300.tgz version: 0.1.300 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-pushprox + apiVersion: v1 + appVersion: 0.1.0 + created: "2021-04-22T22:01:03.264555508Z" + description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx + clients. + digest: 6ec2982d7ea75f763859c0d6e04c5ea537e21e450894c5e31d1e9fd3efd613dc + name: rancher-pushprox + type: application + urls: + - assets/rancher-pushprox/rancher-pushprox-0.1.300-rc00.tgz + version: 0.1.300-rc00 - annotations: catalog.cattle.io/hidden: "true" catalog.rancher.io/certified: rancher @@ -3237,7 +7737,8 @@ entries: apiVersion: v1 appVersion: 0.1.0 created: "2021-04-22T21:37:50.731888077Z" - description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx clients. + description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx + clients. digest: cb9552eb4ee8899ef1af5583c8080c27227dd3b10d919748f2caf79cb8197198 name: rancher-pushprox type: application @@ -3252,7 +7753,8 @@ entries: apiVersion: v1 appVersion: 0.1.0 created: "2021-04-22T21:37:50.73115347Z" - description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx clients. + description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx + clients. digest: a4b3506a74ea6cc4e8c6610cb92451d3072f4f7bac7b503e2dea9423697eaf68 name: rancher-pushprox type: application @@ -3268,30 +7770,77 @@ entries: apiVersion: v1 appVersion: 0.1.0 created: "2021-04-22T21:37:50.730420863Z" - description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx clients. + description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx + clients. digest: 4b53e4de2aede1f3d63c815ca36bd61f31d38c59769d9982b14aca3bbf575724 name: rancher-pushprox type: application urls: - - released/assets/rancher-pushprox/rancher-pushprox-0.1.1.tgz - version: 0.1.1 + - released/assets/rancher-pushprox/rancher-pushprox-0.1.1.tgz + version: 0.1.1 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-pushprox + apiVersion: v1 + appVersion: 0.1.0 + created: "2021-04-22T21:37:50.729403753Z" + description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx + clients. + digest: 73b11a51246c216a7587628fee346541d6b5e82246e11d586b4926254f7999fa + name: rancher-pushprox + type: application + urls: + - released/assets/rancher-pushprox/rancher-pushprox-0.1.0.tgz + version: 0.1.0 + rancher-sachet: + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-sachet + apiVersion: v2 + appVersion: 0.2.3 + created: "2021-04-22T21:37:50.733189891Z" + description: A Helm chart for Sachet based on the upstream https://github.com/messagebird/sachet + digest: ddb5d2680a9a28325bc3dc40aef229d7610cb346596e6453b2721054e19a0d21 + name: rancher-sachet + type: application + urls: + - released/assets/rancher-sachet/rancher-sachet-1.0.100.tgz + version: 1.0.100 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-sachet + apiVersion: v2 + appVersion: 0.2.3 + created: "2021-04-22T22:01:03.266328419Z" + description: A Helm chart for Sachet based on the upstream https://github.com/messagebird/sachet + digest: 4ec33ae6d4c144606cc913d950decf38cbf15d17edddbe733ad5fb30b7035ca9 + name: rancher-sachet + type: application + urls: + - assets/rancher-sachet/rancher-sachet-1.0.100-rc03.tgz + version: 1.0.100-rc03 - annotations: + catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" catalog.cattle.io/os: linux - catalog.rancher.io/certified: rancher - catalog.rancher.io/namespace: cattle-monitoring-system - catalog.rancher.io/release-name: rancher-pushprox - apiVersion: v1 - appVersion: 0.1.0 - created: "2021-04-22T21:37:50.729403753Z" - description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx clients. - digest: 73b11a51246c216a7587628fee346541d6b5e82246e11d586b4926254f7999fa - name: rancher-pushprox + catalog.cattle.io/release-name: rancher-sachet + apiVersion: v2 + appVersion: 0.2.3 + created: "2021-04-22T22:01:03.265867316Z" + description: A Helm chart for Sachet based on the upstream https://github.com/messagebird/sachet + digest: 74196eda6a9cc9798af4afe7c56ee7ec0cb834ace80725002be6d06944a0a93c + name: rancher-sachet type: application urls: - - released/assets/rancher-pushprox/rancher-pushprox-0.1.0.tgz - version: 0.1.0 - rancher-sachet: + - assets/rancher-sachet/rancher-sachet-1.0.100-rc02.tgz + version: 1.0.100-rc02 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -3299,14 +7848,14 @@ entries: catalog.cattle.io/release-name: rancher-sachet apiVersion: v2 appVersion: 0.2.3 - created: "2021-04-22T21:37:50.733189891Z" + created: "2021-04-22T22:01:03.265359413Z" description: A Helm chart for Sachet based on the upstream https://github.com/messagebird/sachet - digest: ddb5d2680a9a28325bc3dc40aef229d7610cb346596e6453b2721054e19a0d21 + digest: 99cd90346300c4ce75f2220100729bbfe410d46a5eaf7c1ebe6566a02a8d4aa7 name: rancher-sachet type: application urls: - - released/assets/rancher-sachet/rancher-sachet-1.0.100.tgz - version: 1.0.100 + - assets/rancher-sachet/rancher-sachet-1.0.100-rc01.tgz + version: 1.0.100-rc01 rancher-tracing: - annotations: catalog.cattle.io/hidden: "true" @@ -3317,12 +7866,48 @@ entries: apiVersion: v1 appVersion: 1.20.0 created: "2021-04-22T21:37:50.734604305Z" - description: A quick start Jaeger Tracing installation using the all-in-one demo. This is not production qualified. Refer to https://www.jaegertracing.io/ for details. + description: A quick start Jaeger Tracing installation using the all-in-one demo. + This is not production qualified. Refer to https://www.jaegertracing.io/ for + details. digest: 436a2b62bb4a5a5e9dab25b209c46554fd7eca85019874658310c1d1828e145a name: rancher-tracing urls: - released/assets/rancher-tracing/rancher-tracing-1.20.100.tgz version: 1.20.100 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: istio-system + catalog.rancher.io/release-name: rancher-tracing + apiVersion: v1 + appVersion: 1.20.0 + created: "2021-04-22T22:01:03.267680528Z" + description: A quick start Jaeger Tracing installation using the all-in-one demo. + This is not production qualified. Refer to https://www.jaegertracing.io/ for + details. + digest: 61b3d284ec933f00c11a42c1dbdfe38d3e379927ebd0c73e24bd1d7390cee8fc + name: rancher-tracing + urls: + - assets/rancher-tracing/rancher-tracing-1.20.100-rc01.tgz + version: 1.20.100-rc01 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: istio-system + catalog.rancher.io/release-name: rancher-tracing + apiVersion: v1 + appVersion: 1.20.0 + created: "2021-04-22T22:01:03.267228425Z" + description: A quick start Jaeger Tracing installation using the all-in-one demo. + This is not production qualified. Refer to https://www.jaegertracing.io/ for + details. + digest: 7e19a5cfbfeeb9b82d2711c313c9e412dfeba1e68a423f86340336bbcfc1d925 + name: rancher-tracing + urls: + - assets/rancher-tracing/rancher-tracing-1.20.100-rc00.tgz + version: 1.20.100-rc00 - annotations: catalog.cattle.io/hidden: "true" catalog.cattle.io/os: linux @@ -3332,12 +7917,31 @@ entries: apiVersion: v1 appVersion: 1.20.0 created: "2021-04-22T21:37:50.734105Z" - description: A quick start Jaeger Tracing installation using the all-in-one demo. This is not production qualified. Refer to https://www.jaegertracing.io/ for details. + description: A quick start Jaeger Tracing installation using the all-in-one demo. + This is not production qualified. Refer to https://www.jaegertracing.io/ for + details. digest: 509c4d245fb245157d16b643f55aa9437cbfe19e087326b0f609cae58d0b5499 name: rancher-tracing urls: - released/assets/rancher-tracing/rancher-tracing-1.20.002.tgz version: 1.20.002 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: linux + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: istio-system + catalog.rancher.io/release-name: rancher-tracing + apiVersion: v1 + appVersion: 1.20.0 + created: "2021-04-22T22:01:03.266765122Z" + description: A quick start Jaeger Tracing installation using the all-in-one demo. + This is not production qualified. Refer to https://www.jaegertracing.io/ for + details. + digest: 8fbbcfc0bf2754114245db70a8ba16b8e306c33d0b9208cdf3a69e9a9f8db3de + name: rancher-tracing + urls: + - assets/rancher-tracing/rancher-tracing-1.20.002-rc00.tgz + version: 1.20.002-rc00 - annotations: catalog.cattle.io/hidden: "true" catalog.cattle.io/os: linux @@ -3347,7 +7951,9 @@ entries: apiVersion: v1 appVersion: 1.20.0 created: "2021-04-22T21:37:50.733646995Z" - description: A quick start Jaeger Tracing installation using the all-in-one demo. This is not production qualified. Refer to https://www.jaegertracing.io/ for details. + description: A quick start Jaeger Tracing installation using the all-in-one demo. + This is not production qualified. Refer to https://www.jaegertracing.io/ for + details. digest: 1a64b24b3b320407191918acef460ceceebb462b01b7a820568e81a81f89e8b9 name: rancher-tracing urls: @@ -3377,6 +7983,29 @@ entries: urls: - released/assets/rancher-vsphere-cpi/rancher-vsphere-cpi-1.0.000.tgz version: 1.0.000 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: vSphere CPI + catalog.cattle.io/namespace: kube-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: vsphere-cpi + apiVersion: v1 + appVersion: 1.0.0 + created: "2021-04-22T22:01:03.268103431Z" + description: vSphere Cloud Provider Interface (CPI) + digest: 0b8e2dfc8e7a4fbe6e77b57377085f51ecd98cfbbaa1fa3cabecd1ca20bdddf3 + icon: https://charts.rancher.io/assets/logos/vsphere-cpi.svg + keywords: + - infrastructure + maintainers: + - email: caleb@rancher.com + name: Rancher + name: rancher-vsphere-cpi + sources: + - https://github.com/kubernetes/cloud-provider-vsphere + urls: + - assets/rancher-vsphere-cpi/rancher-vsphere-cpi-1.0.000-rc01.tgz + version: 1.0.000-rc01 rancher-vsphere-csi: - annotations: catalog.cattle.io/certified: rancher @@ -3401,7 +8030,49 @@ entries: urls: - released/assets/rancher-vsphere-csi/rancher-vsphere-csi-2.1.000.tgz version: 2.1.000 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: vSphere CSI + catalog.cattle.io/namespace: kube-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: vsphere-csi + apiVersion: v1 + appVersion: 2.1.0 + created: "2021-04-22T22:01:03.268736435Z" + description: vSphere Cloud Storage Interface (CSI) + digest: cbfdb71894414d8fcad2afee370f5a254516342002dec62cfd2fabd0e505439f + icon: https://charts.rancher.io/assets/logos/vsphere-csi.svg + keywords: + - infrastructure + maintainers: + - email: caleb@rancher.com + name: Rancher + name: rancher-vsphere-csi + sources: + - https://github.com/kubernetes-sigs/vsphere-csi-driver + urls: + - assets/rancher-vsphere-csi/rancher-vsphere-csi-2.1.000-rc01.tgz + version: 2.1.000-rc01 rancher-webhook: + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-webhook + apiVersion: v2 + appVersion: 0.2.0-alpha + created: "2021-04-22T22:01:03.269771642Z" + dependencies: + - condition: capi.enabled + name: capi + repository: "" + description: ValidatingAdmissionWebhook for Rancher types + digest: 47bca0f659abf7fc263a6d2670c8abba30ee84640200d1254eee1cb9d7ac1044 + name: rancher-webhook + urls: + - assets/rancher-webhook/rancher-webhook-0.2.0-alpha01-rc01.tgz + version: 0.2.0-alpha01-rc01 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -3436,6 +8107,51 @@ entries: urls: - released/assets/rancher-webhook/rancher-webhook-0.1.000.tgz version: 0.1.000 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-webhook + apiVersion: v2 + appVersion: 0.1.0 + created: "2021-04-22T22:01:03.26947174Z" + description: ValidatingAdmissionWebhook for Rancher types + digest: afc6419154facc66d3fce4dd0073c48202a92516d4802b8af08c279da57a4f44 + name: rancher-webhook + urls: + - assets/rancher-webhook/rancher-webhook-0.1.000-rc02.tgz + version: 0.1.000-rc02 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-webhook + apiVersion: v2 + appVersion: 0.1.0 + created: "2021-04-22T22:01:03.269230738Z" + description: ValidatingAdmissionWebhook for Rancher types + digest: 7143e87ba2f5f63266d1994f40d826f96a42491b73ae6551c212035ea0ef0e89 + name: rancher-webhook + urls: + - assets/rancher-webhook/rancher-webhook-0.1.000-rc01.tgz + version: 0.1.000-rc01 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: cattle-system + catalog.cattle.io/os: linux + catalog.cattle.io/release-name: rancher-webhook + apiVersion: v2 + appVersion: 0.1.0-beta9 + created: "2021-04-22T22:01:03.268971837Z" + description: ValidatingAdmissionWebhook for Rancher types + digest: bcc2ab96dfeb47d3536d6db28d95ff1c15dc48e67787fc91e01ed49d9a4850a9 + name: rancher-webhook + urls: + - assets/rancher-webhook/rancher-webhook-0.1.0-beta901-rc00.tgz + version: 0.1.0-beta901-rc00 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/hidden: "true" @@ -3516,6 +8232,100 @@ entries: urls: - released/assets/rancher-windows-exporter/rancher-windows-exporter-0.1.000.tgz version: 0.1.000 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: windows + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-windows-exporter + apiVersion: v1 + appVersion: 0.0.4 + created: "2021-04-22T22:01:03.272128757Z" + description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter + digest: bab5d531f83a9c295bd60aa9d1765115c611c690a260a8e4836e98596985b7e5 + maintainers: + - email: arvind.iyengar@rancher.com + name: aiyengar2 + name: rancher-windows-exporter + type: application + urls: + - assets/rancher-windows-exporter/rancher-windows-exporter-0.1.000-rc04.tgz + version: 0.1.000-rc04 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: windows + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-windows-exporter + apiVersion: v1 + appVersion: 0.0.4 + created: "2021-04-22T22:01:03.271649954Z" + description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter + digest: 684f92b3640ed32b9aafd8e3a8adcb5af9b1d636273cd5a9a44b8eac06508f50 + maintainers: + - email: arvind.iyengar@rancher.com + name: aiyengar2 + name: rancher-windows-exporter + type: application + urls: + - assets/rancher-windows-exporter/rancher-windows-exporter-0.1.000-rc03.tgz + version: 0.1.000-rc03 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: windows + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-windows-exporter + apiVersion: v1 + appVersion: 0.0.4 + created: "2021-04-22T22:01:03.271207451Z" + description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter + digest: 90b74dc45fc84c1080235f20849f7e45bfa7c32469e257f53740a5d208b4dbea + maintainers: + - email: arvind.iyengar@rancher.com + name: aiyengar2 + name: rancher-windows-exporter + type: application + urls: + - assets/rancher-windows-exporter/rancher-windows-exporter-0.1.000-rc02.tgz + version: 0.1.000-rc02 + - annotations: + catalog.cattle.io/hidden: "true" + catalog.cattle.io/os: windows + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-windows-exporter + apiVersion: v1 + appVersion: 0.0.4 + created: "2021-04-22T22:01:03.270737048Z" + description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter + digest: f00af930f333b1458152ac6befb0a68f33112a54d5cb8aca6777436f342f50aa + maintainers: + - email: arvind.iyengar@rancher.com + name: aiyengar2 + name: rancher-windows-exporter + type: application + urls: + - assets/rancher-windows-exporter/rancher-windows-exporter-0.1.000-rc01.tgz + version: 0.1.000-rc01 + - annotations: + catalog.cattle.io/os: windows + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-monitoring-system + catalog.rancher.io/release-name: rancher-windows-exporter + apiVersion: v1 + appVersion: 0.0.4 + created: "2021-04-22T22:01:03.270259645Z" + description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter + digest: b90e452266b18882787703a371ff4ac135b51439d022e9e75370f17c7076fc69 + maintainers: + - email: arvind.iyengar@rancher.com + name: aiyengar2 + name: rancher-windows-exporter + type: application + urls: + - assets/rancher-windows-exporter/rancher-windows-exporter-0.1.000-rc00.tgz + version: 0.1.000-rc00 rancher-wins-upgrader: - annotations: catalog.cattle.io/certified: rancher @@ -3525,7 +8335,8 @@ entries: apiVersion: v2 appVersion: 0.1.0 created: "2021-04-22T21:37:50.738197741Z" - description: Manages upgrading the wins server version and configuration across all of your Windows nodes + description: Manages upgrading the wins server version and configuration across + all of your Windows nodes digest: e333991c66ae24e580277c50f84d7d2cca1f7f8af390e5d90cba7248fc45ed4d maintainers: - email: arvind.iyengar@suse.com @@ -3535,6 +8346,44 @@ entries: urls: - released/assets/rancher-wins-upgrader/rancher-wins-upgrader-0.0.100.tgz version: 0.0.100 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/namespace: cattle-wins-system + catalog.cattle.io/os: windows + catalog.cattle.io/release-name: rancher-wins-upgrader + apiVersion: v2 + appVersion: 0.1.0 + created: "2021-04-22T22:01:03.273115064Z" + description: Manages upgrading the wins server version and configuration across + all of your Windows nodes + digest: 1dcb86486c0d88b3eb74638cd6aa9c2d2652c3a5e148b77697c0a4c0354a7e03 + maintainers: + - email: arvind.iyengar@suse.com + name: aiyengar2 + name: rancher-wins-upgrader + type: application + urls: + - assets/rancher-wins-upgrader/rancher-wins-upgrader-0.0.100-rc01.tgz + version: 0.0.100-rc01 + - annotations: + catalog.cattle.io/os: windows + catalog.rancher.io/certified: rancher + catalog.rancher.io/namespace: cattle-wins-system + catalog.rancher.io/release-name: rancher-wins-upgrader + apiVersion: v2 + appVersion: 0.1.0 + created: "2021-04-22T22:01:03.27261306Z" + description: Manages upgrading the wins server version and configuration across + all of your Windows nodes + digest: 02c0c5e64d4bb535220c4a0027c30519663c94ac3b0c02062628073df8b8457f + maintainers: + - email: arvind.iyengar@suse.com + name: aiyengar2 + name: rancher-wins-upgrader + type: application + urls: + - assets/rancher-wins-upgrader/rancher-wins-upgrader-0.0.100-rc00.tgz + version: 0.0.100-rc00 rio: - annotations: catalog.cattle.io/certified: rancher @@ -3555,6 +8404,25 @@ entries: urls: - released/assets/rio/rio-0.8.001.tgz version: 0.8.001 + - annotations: + catalog.cattle.io/certified: rancher + catalog.cattle.io/display-name: Rio + catalog.cattle.io/experimental: "true" + catalog.cattle.io/hidden: "true" + catalog.cattle.io/namespace: rio-system + catalog.cattle.io/release-name: rio + catalog.cattle.io/requires-gvr: networking.istio.io.virtualservice/v1beta1 + apiVersion: v1 + appVersion: 0.8.0 + created: "2021-04-22T22:01:03.273531966Z" + description: The application deployment engine for Kubernetes + digest: 5936209cbf90fa116da0907fbcf6fef4a4f392f1d1ff9b04a21cd83bb66dfc69 + home: https://rio.io + icon: https://charts.rancher.io/assets/logos/rio.svg + name: rio + urls: + - assets/rio/rio-0.8.001-rc00.tgz + version: 0.8.001-rc00 - annotations: catalog.cattle.io/certified: rancher catalog.cattle.io/display-name: Rio