diff --git a/assets/rancher-vsphere-csi/rancher-vsphere-csi-2.2.000-rc01.tgz b/assets/rancher-vsphere-csi/rancher-vsphere-csi-2.2.000-rc01.tgz
new file mode 100755
index 000000000..139f36d9c
Binary files /dev/null and b/assets/rancher-vsphere-csi/rancher-vsphere-csi-2.2.000-rc01.tgz differ
diff --git a/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/Chart.yaml b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/Chart.yaml
new file mode 100755
index 000000000..cdd6fb25f
--- /dev/null
+++ b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/Chart.yaml
@@ -0,0 +1,19 @@
+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.2.0
+description: vSphere Cloud Storage Interface (CSI)
+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
+version: 2.2.000-rc01
diff --git a/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/README.md b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/README.md
new file mode 100755
index 000000000..4a749e8ac
--- /dev/null
+++ b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/README.md
@@ -0,0 +1,73 @@
+# vSphere Container Storage Interface (CSI)
+
+[vSphere Container Storage Interface (CSI)](https://github.com/kubernetes-sigs/vsphere-csi-driver/tree/release-2.1/manifests/v2.1.0/vsphere-7.0u1/) is a specification designed to enable persistent storage volume management on Container Orchestrators (COs) such as Kubernetes. The specification allows storage systems to integrate with containerized workloads running on Kubernetes. Using CSI, storage providers, such as VMware, can write and deploy plugins for storage systems in Kubernetes without a need to modify any core Kubernetes code.
+
+CSI allows volume plugins to be installed on Kubernetes clusters as extensions. Once a CSI compatible volume driver is deployed on a Kubernetes cluster, users can use the CSI to provision, attach, mount, and format the volumes exposed by the CSI driver.
+
+The CSI driver for vSphere is `csi.vsphere.vmware.com`.
+
+## Prerequisites
+
+- vSphere 6.7 U3+
+- Kubernetes v1.14+
+- Out-of-tree vSphere Cloud Provider Interface (CPI)
+- A Secret on your Kubernetes cluster that contains vSphere CSI configuration and credentials
+
+## Installation
+
+This chart requires a Secret in your Kubernetes cluster that contains the CSI configuration and credentials to connect to the vCenter. You can have the chart generate it for you, or create it yourself and provide the name of the Secret during installation.
+
+Warning: When the option to generate the Secret is enabled, the credentials are visible in the API to authorized users. If you create the Secret yourself they will not be visible.
+
+You can create a Secret in one of the following ways:
+
+### Option 1: Create a Secret using the Rancher UI
+
+Go to your cluster's project (Same project you will be installing the chart) > Resources > Secrets > Add Secret.
+```yaml
+# Example of data required in the Secret
+# The csi-vsphere.conf key name is required, otherwise the installation will fail
+csi-vsphere.conf: |
+ [Global]
+ cluster-id = ""
+ user = ""
+ password = ""
+ port = ""
+ insecure-flag = ""
+
+ [VirtualCenter ""]
+ datacenters = ", , ..."
+```
+More information on CSI vSphere configuration [here](https://vsphere-csi-driver.sigs.k8s.io/driver-deployment/installation.html#create_k8s_secret).
+
+### Option 2: Create a Secret using kubectl
+
+Replace placeholders with actual values, and execute the following:
+```bash
+# The csi-vsphere.conf key name is required, otherwise the installation will fail
+cat <
+ namespace:
+stringData:
+ csi-vsphere.conf: |
+ [Global]
+ cluster-id = ""
+ user = ""
+ password = ""
+ port = ""
+ insecure-flag = ""
+
+ [VirtualCenter ""]
+ datacenters = ", , ..."
+EOF
+```
+
+More information on managing Secrets using kubectl [here](https://kubernetes.io/docs/tasks/configmap-secret/managing-secret-using-kubectl/).
+
+## Migration
+
+The CSI migration feature is only available for vSphere 7.0 U1.
diff --git a/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/app-readme.md b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/app-readme.md
new file mode 100755
index 000000000..bae1876f0
--- /dev/null
+++ b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/app-readme.md
@@ -0,0 +1,14 @@
+# vSphere Container Storage Interface (CSI)
+
+[vSphere Container Storage Interface (CSI)](https://github.com/kubernetes-sigs/vsphere-csi-driver) is a specification designed to enable persistent storage volume management on Container Orchestrators (COs) such as Kubernetes. The specification allows storage systems to integrate with containerized workloads running on Kubernetes. Using CSI, storage providers, such as VMware, can write and deploy plugins for storage systems in Kubernetes without a need to modify any core Kubernetes code.
+
+CSI allows volume plugins to be installed on Kubernetes clusters as extensions. Once a CSI compatible volume driver is deployed on a Kubernetes cluster, users can use the CSI to provision, attach, mount, and format the volumes exposed by the CSI driver.
+
+The CSI driver for vSphere is `csi.vsphere.vmware.com`.
+
+## Prerequisites
+
+- vSphere 6.7 U3+
+- Kubernetes v1.14+
+- Out-of-tree vSphere Cloud Provider Interface (CPI)
+- A Secret on your Kubernetes cluster that contains vSphere CSI configuration and credentials (Refer to `README` or `Detailed Descriptions`)
diff --git a/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/questions.yaml b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/questions.yaml
new file mode 100755
index 000000000..f24f2bdd9
--- /dev/null
+++ b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/questions.yaml
@@ -0,0 +1,104 @@
+questions:
+ - variable: vCenter.configSecret.generate
+ label: Generate CSI vSphere Config Secret
+ description: Generates a Secret that contains a CSI vSphere config and credentials (If the option to generate it is enabled, credentials will be visible in the API to authorized users)
+ type: boolean
+ default: true
+ required: true
+ group: Configuration
+ show_subquestion_if: true
+ subquestions:
+ - variable: vCenter.host
+ label: vCenter Host
+ description: IP address or FQDN of the vCenter
+ type: string
+ group: Configuration
+
+ - variable: vCenter.datacenters
+ description: Comma-separated list of paths to data centers. E.g ", , ..."
+ label: Data Centers
+ type: string
+ group: Configuration
+
+ - variable: vCenter.username
+ label: Username
+ description: Username for vCenter
+ type: string
+ group: Configuration
+
+ - variable: vCenter.password
+ label: Password
+ description: Password for vCenter
+ type: password
+ group: Configuration
+
+ - variable: vCenter.configSecret.name
+ label: CSI vSphere Config Secret Name
+ description: Name of the Secret that contains a CSI vSphere config and credentials (Will not be visible in the API. More info in the README)
+ type: string
+ group: Configuration
+ show_if: "vCenter.configSecret.generate=false"
+
+ - variable: csiMigration.enabled
+ label: Enable CSI Migration
+ description: Enable migration of volumes provisioned by in-tree vSphere provider to CSI (Available for vSphere 7.0 U1+ only)
+ type: boolean
+ default: false
+ group: Features
+
+ - variable: csiAuthCheck.enabled
+ label: Enable authorization checks on operations involving datastores
+ type: boolean
+ default: false
+ group: Features
+
+ - variable: onlineVolumeExtend.enabled
+ label: Enable Online Volume Extend
+ description: Enable expansion of PVCs that are in use by a Pod or mounted in a Node (Available for vSphere 7.0 U2+ only)
+ type: boolean
+ default: false
+ group: Features
+
+ - variable: csiController.csiResizer.enabled
+ label: Enable CSI Volume Resizer
+ description: This feature is available for vSphere 7.0 U1+ only
+ type: boolean
+ default: false
+ group: Storage
+
+ - variable: storageClass.enabled
+ default: true
+ label: Create Storage Class
+ description: Create a storageClass with the vSphere CSI provisioner
+ type: boolean
+ required: true
+ show_subquestion_if: true
+ group: Storage
+ subquestions:
+ - variable: storageClass.name
+ label: Storage Class Name
+ default: "vsphere-csi-sc"
+ type: string
+
+ - variable: storageClass.isDefault
+ label: Default Storage Class
+ description: Set the Storage Class as the default
+ default: true
+ type: boolean
+
+ - variable: storageClass.storagePolicyName
+ label: Storage Policy Name
+ description: Name of the Storage Policy created in vCenter
+ type: string
+
+ - variable: storageClass.datastoreURL
+ label: Data Store URL
+ description: URL of the data store to use for new volumes (If unspecified, any data store that matches the request will be selected).
+ type: string
+
+ - variable: csiNode.prefixPath
+ label: Prefix Path for `/var/lib/kubelet`
+ description: For some operating systems including RancherOS, RKE prefixes `/var/lib/kubelet` with `/opt/rke`. Add the prefix path of the location of /var/lib/kubelet
+ type: string
+ default: ""
+ group: Node Configuration
diff --git a/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/_helpers.tpl b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/_helpers.tpl
new file mode 100755
index 000000000..7a6c36abe
--- /dev/null
+++ b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/_helpers.tpl
@@ -0,0 +1,7 @@
+{{- define "system_default_registry" -}}
+{{- if .Values.global.cattle.systemDefaultRegistry -}}
+{{- printf "%s/" .Values.global.cattle.systemDefaultRegistry -}}
+{{- else -}}
+{{- "" -}}
+{{- end -}}
+{{- end -}}
diff --git a/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/vsphere-csi-controller-deployment.yaml b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/vsphere-csi-controller-deployment.yaml
new file mode 100755
index 000000000..1e001c4b6
--- /dev/null
+++ b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/vsphere-csi-controller-deployment.yaml
@@ -0,0 +1,225 @@
+# Source: https://github.com/kubernetes-sigs/vsphere-csi-driver
+kind: Deployment
+apiVersion: apps/v1
+metadata:
+ name: vsphere-csi-controller
+ namespace: {{ .Release.Namespace }}
+spec:
+ replicas: 1
+ selector:
+ matchLabels:
+ app: vsphere-csi-controller
+ template:
+ metadata:
+ labels:
+ app: vsphere-csi-controller
+ role: vsphere-csi
+ spec:
+ serviceAccountName: vsphere-csi-controller
+ nodeSelector:
+ {{- if .Values.csiController.nodeSelector }}
+ {{- with .Values.csiController.nodeSelector }}
+ {{- toYaml . | nindent 8 }}
+ {{- end }}
+ {{- else }}
+ node-role.kubernetes.io/controlplane: "true"
+ {{- end }}
+ tolerations:
+ # Rancher specific change: These tolerations are intentionally different from upstream to avoid lessening the scope to only NoSchedule with a specific key
+ # - key: node-role.kubernetes.io/master
+ # operator: Exists
+ # effect: NoSchedule
+ - operator: "Exists"
+ effect: NoSchedule
+ - operator: "Exists"
+ effect: NoExecute
+ # uncomment below toleration if you need an aggressive pod eviction in case when
+ # node becomes not-ready or unreachable. Default is 300 seconds if not specified.
+ #- key: node.kubernetes.io/not-ready
+ # operator: Exists
+ # effect: NoExecute
+ # tolerationSeconds: 30
+ #- key: node.kubernetes.io/unreachable
+ # operator: Exists
+ # effect: NoExecute
+ # tolerationSeconds: 30
+ dnsPolicy: "Default"
+ containers:
+ - name: csi-attacher
+ image: "{{ template "system_default_registry" . }}{{ .Values.csiController.image.csiAttacher.repository }}:{{ .Values.csiController.image.csiAttacher.tag }}"
+ args:
+ - "--v=4"
+ - "--timeout=300s"
+ - "--csi-address=$(ADDRESS)"
+ - "--leader-election"
+ env:
+ - name: ADDRESS
+ value: /csi/csi.sock
+ volumeMounts:
+ - mountPath: /csi
+ name: socket-dir
+{{- if .Values.csiController.csiResizer.enabled }}
+ - name: csi-resizer
+ image: "{{ template "system_default_registry" . }}{{ .Values.csiController.image.csiResizer.repository }}:{{ .Values.csiController.image.csiResizer.tag }}"
+ args:
+ - "--v=4"
+ - "--timeout=300s"
+ - "--handle-volume-inuse-error=false"
+ - "--csi-address=$(ADDRESS)"
+ - "--kube-api-qps=100"
+ - "--kube-api-burst=100"
+ - "--leader-election"
+ env:
+ - name: ADDRESS
+ value: /csi/csi.sock
+ volumeMounts:
+ - mountPath: /csi
+ name: socket-dir
+{{- end }}
+ - name: vsphere-csi-controller
+ image: "{{ template "system_default_registry" . }}{{ .Values.csiController.image.repository }}:{{ .Values.csiController.image.tag }}"
+ args:
+ - "--fss-name=internal-feature-states.csi.vsphere.vmware.com"
+ - "--fss-namespace=$(CSI_NAMESPACE)"
+ imagePullPolicy: "Always"
+ env:
+ - name: CSI_ENDPOINT
+ value: unix:///csi/csi.sock
+ - name: X_CSI_MODE
+ value: "controller"
+ - name: VSPHERE_CSI_CONFIG
+ value: "/etc/cloud/csi-vsphere.conf"
+ - name: LOGGER_LEVEL
+ value: "PRODUCTION" # Options: DEVELOPMENT, PRODUCTION
+ - name: INCLUSTER_CLIENT_QPS
+ value: "100"
+ - name: INCLUSTER_CLIENT_BURST
+ value: "100"
+ - name: CSI_NAMESPACE
+ valueFrom:
+ fieldRef:
+ fieldPath: metadata.namespace
+ - name: X_CSI_SERIAL_VOL_ACCESS_TIMEOUT
+ value: 3m
+ volumeMounts:
+ - mountPath: /etc/cloud
+ name: vsphere-config-volume
+ readOnly: true
+ - mountPath: /csi
+ name: socket-dir
+ ports:
+ - name: healthz
+ containerPort: 9808
+ protocol: TCP
+ - name: prometheus
+ containerPort: 2112
+ protocol: TCP
+ livenessProbe:
+ httpGet:
+ path: /healthz
+ port: healthz
+ initialDelaySeconds: 10
+ timeoutSeconds: 3
+ periodSeconds: 5
+ failureThreshold: 3
+ - name: liveness-probe
+ image: "{{ template "system_default_registry" . }}{{ .Values.csiController.image.livenessProbe.repository }}:{{ .Values.csiController.image.livenessProbe.tag }}"
+ args:
+ - "--v=4"
+ - "--csi-address=/csi/csi.sock"
+ volumeMounts:
+ - name: socket-dir
+ mountPath: /csi
+ - name: vsphere-syncer
+ image: "{{ template "system_default_registry" . }}{{ .Values.csiController.image.vsphereSyncer.repository }}:{{ .Values.csiController.image.vsphereSyncer.tag }}"
+ args:
+ - "--leader-election"
+ - "--fss-name=internal-feature-states.csi.vsphere.vmware.com"
+ - "--fss-namespace=$(CSI_NAMESPACE)"
+ imagePullPolicy: "Always"
+ ports:
+ - containerPort: 2113
+ name: prometheus
+ protocol: TCP
+ env:
+ - name: FULL_SYNC_INTERVAL_MINUTES
+ value: "30"
+ - name: VSPHERE_CSI_CONFIG
+ value: "/etc/cloud/csi-vsphere.conf"
+ - name: LOGGER_LEVEL
+ value: "PRODUCTION" # Options: DEVELOPMENT, PRODUCTION
+ - name: INCLUSTER_CLIENT_QPS
+ value: "100"
+ - name: INCLUSTER_CLIENT_BURST
+ value: "100"
+ - name: CSI_NAMESPACE
+ valueFrom:
+ fieldRef:
+ fieldPath: metadata.namespace
+ volumeMounts:
+ - mountPath: /etc/cloud
+ name: vsphere-config-volume
+ readOnly: true
+ - name: csi-provisioner
+ image: "{{ template "system_default_registry" . }}{{ .Values.csiController.image.csiProvisioner.repository }}:{{ .Values.csiController.image.csiProvisioner.tag }}"
+ args:
+ - "--v=4"
+ - "--timeout=300s"
+ - "--csi-address=$(ADDRESS)"
+ - "--kube-api-qps=100"
+ - "--kube-api-burst=100"
+ - "--leader-election"
+ - "--default-fstype=ext4"
+ # needed only for topology aware setup
+ #- "--feature-gates=Topology=true"
+ #- "--strict-topology"
+ env:
+ - name: ADDRESS
+ value: /csi/csi.sock
+ volumeMounts:
+ - mountPath: /csi
+ name: socket-dir
+ volumes:
+ - name: vsphere-config-volume
+ secret:
+ secretName: {{ .Values.vCenter.configSecret.name }}
+ - name: socket-dir
+ emptyDir: {}
+---
+apiVersion: v1
+data:
+ "csi-migration": {{ .Values.csiMigration.enabled | quote }}
+ "csi-auth-check": {{ .Values.csiAuthCheck.enabled | quote }}
+ "online-volume-extend": {{ .Values.onlineVolumeExtend.enabled | quote }}
+kind: ConfigMap
+metadata:
+ name: internal-feature-states.csi.vsphere.vmware.com
+ namespace: {{ .Release.Namespace }}
+---
+apiVersion: storage.k8s.io/v1 # For k8s 1.17 use storage.k8s.io/v1beta1
+kind: CSIDriver
+metadata:
+ name: csi.vsphere.vmware.com
+spec:
+ attachRequired: true
+ podInfoOnMount: false
+---
+apiVersion: v1
+kind: Service
+metadata:
+ name: vsphere-csi-controller
+ namespace: {{ .Release.Namespace }}
+ labels:
+ app: vsphere-csi-controller
+spec:
+ ports:
+ - name: ctlr
+ port: 2112
+ targetPort: 2112
+ protocol: TCP
+ - name: syncer
+ port: 2113
+ targetPort: 2113
+ protocol: TCP
+ selector:
+ app: vsphere-csi-controller
diff --git a/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/vsphere-csi-controller-rbac.yaml b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/vsphere-csi-controller-rbac.yaml
new file mode 100755
index 000000000..07f7aaf3a
--- /dev/null
+++ b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/vsphere-csi-controller-rbac.yaml
@@ -0,0 +1,55 @@
+# Source: https://github.com/kubernetes-sigs/vsphere-csi-driver
+kind: ServiceAccount
+apiVersion: v1
+metadata:
+ name: vsphere-csi-controller
+ namespace: {{ .Release.Namespace }}
+---
+kind: ClusterRole
+apiVersion: rbac.authorization.k8s.io/v1
+metadata:
+ name: vsphere-csi-controller-role
+rules:
+ - apiGroups: [""]
+ resources: ["nodes", "persistentvolumeclaims", "pods", "configmaps"]
+ verbs: ["get", "list", "watch"]
+ - apiGroups: [""]
+ resources: ["persistentvolumeclaims/status"]
+ verbs: ["patch"]
+ - apiGroups: [""]
+ resources: ["persistentvolumes"]
+ verbs: ["get", "list", "watch", "create", "update", "delete", "patch"]
+ - apiGroups: [""]
+ resources: ["events"]
+ verbs: ["get", "list", "watch", "create", "update", "patch"]
+ - apiGroups: ["coordination.k8s.io"]
+ resources: ["leases"]
+ verbs: ["get", "watch", "list", "delete", "update", "create"]
+ - apiGroups: ["storage.k8s.io"]
+ resources: ["storageclasses", "csinodes"]
+ verbs: ["get", "list", "watch"]
+ - apiGroups: ["storage.k8s.io"]
+ resources: ["volumeattachments"]
+ verbs: ["get", "list", "watch", "patch"]
+ - apiGroups: ["cns.vmware.com"]
+ resources: ["cnsvspherevolumemigrations"]
+ verbs: ["create", "get", "list", "watch", "update", "delete"]
+ - apiGroups: ["apiextensions.k8s.io"]
+ resources: ["customresourcedefinitions"]
+ verbs: ["get", "create", "update"]
+ - apiGroups: ["storage.k8s.io"]
+ resources: ["volumeattachments/status"]
+ verbs: ["patch"]
+---
+kind: ClusterRoleBinding
+apiVersion: rbac.authorization.k8s.io/v1
+metadata:
+ name: vsphere-csi-controller-binding
+subjects:
+ - kind: ServiceAccount
+ name: vsphere-csi-controller
+ namespace: {{ .Release.Namespace }}
+roleRef:
+ kind: ClusterRole
+ name: vsphere-csi-controller-role
+ apiGroup: rbac.authorization.k8s.io
diff --git a/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/vsphere-csi-node-ds.yaml b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/vsphere-csi-node-ds.yaml
new file mode 100755
index 000000000..d4c6e1cdd
--- /dev/null
+++ b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/vsphere-csi-node-ds.yaml
@@ -0,0 +1,152 @@
+# Source: https://github.com/kubernetes-sigs/vsphere-csi-driver
+kind: DaemonSet
+apiVersion: apps/v1
+metadata:
+ name: vsphere-csi-node
+ namespace: {{ .Release.Namespace }}
+spec:
+ selector:
+ matchLabels:
+ app: vsphere-csi-node
+ updateStrategy:
+ type: "RollingUpdate"
+ rollingUpdate:
+ maxUnavailable: 1
+ template:
+ metadata:
+ labels:
+ app: vsphere-csi-node
+ role: vsphere-csi
+ spec:
+ serviceAccountName: vsphere-csi-node
+ dnsPolicy: "Default"
+ containers:
+ - name: node-driver-registrar
+ image: "{{ template "system_default_registry" . }}{{ .Values.csiNode.image.nodeDriverRegistrar.repository }}:{{ .Values.csiNode.image.nodeDriverRegistrar.tag }}"
+ args:
+ - "--v=5"
+ - "--csi-address=$(ADDRESS)"
+ - "--kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)"
+ - "--health-port=9809"
+ env:
+ - name: ADDRESS
+ value: /csi/csi.sock
+ - name: DRIVER_REG_SOCK_PATH
+ value: {{ .Values.csiNode.prefixPath }}/var/lib/kubelet/plugins/csi.vsphere.vmware.com/csi.sock
+ volumeMounts:
+ - name: plugin-dir
+ mountPath: /csi
+ - name: registration-dir
+ mountPath: /registration
+ ports:
+ - containerPort: 9809
+ name: healthz
+ livenessProbe:
+ httpGet:
+ path: /healthz
+ port: healthz
+ initialDelaySeconds: 5
+ timeoutSeconds: 5
+ - name: vsphere-csi-node
+ image: "{{ template "system_default_registry" . }}{{ .Values.csiNode.image.repository }}:{{ .Values.csiNode.image.tag }}"
+ args:
+ - "--fss-name=internal-feature-states.csi.vsphere.vmware.com"
+ - "--fss-namespace=$(CSI_NAMESPACE)"
+ imagePullPolicy: "Always"
+ env:
+ - name: NODE_NAME
+ valueFrom:
+ fieldRef:
+ fieldPath: spec.nodeName
+ - name: CSI_ENDPOINT
+ value: unix:///csi/csi.sock
+ - name: X_CSI_MODE
+ value: "node"
+ - name: X_CSI_SPEC_REQ_VALIDATION
+ value: "false"
+ # needed only for topology aware setups
+ #- name: VSPHERE_CSI_CONFIG
+ # value: "/etc/cloud/csi-vsphere.conf" # here csi-vsphere.conf is the name of the file used for creating secret using "--from-file" flag
+ - name: X_CSI_DEBUG
+ value: "true"
+ - name: LOGGER_LEVEL
+ value: "PRODUCTION" # Options: DEVELOPMENT, PRODUCTION
+ - name: CSI_NAMESPACE
+ valueFrom:
+ fieldRef:
+ fieldPath: metadata.namespace
+ securityContext:
+ privileged: true
+ capabilities:
+ add: ["SYS_ADMIN"]
+ allowPrivilegeEscalation: true
+ volumeMounts:
+ # needed only for topology aware setups
+ #- name: vsphere-config-volume
+ # mountPath: /etc/cloud
+ # readOnly: true
+ - name: plugin-dir
+ mountPath: /csi
+ - name: pods-mount-dir
+ mountPath: {{ .Values.csiNode.prefixPath }}/var/lib/kubelet
+ # needed so that any mounts setup inside this container are
+ # propagated back to the host machine.
+ mountPropagation: "Bidirectional"
+ - name: device-dir
+ mountPath: /dev
+ - name: blocks-dir
+ mountPath: /sys/block
+ - name: sys-devices-dir
+ mountPath: /sys/devices
+ ports:
+ - containerPort: 9808
+ name: healthz
+ livenessProbe:
+ httpGet:
+ path: /healthz
+ port: healthz
+ initialDelaySeconds: 10
+ timeoutSeconds: 5
+ periodSeconds: 5
+ failureThreshold: 3
+ - name: liveness-probe
+ image: "{{ template "system_default_registry" . }}{{ .Values.csiNode.image.livenessProbe.repository }}:{{ .Values.csiNode.image.livenessProbe.tag }}"
+ args:
+ - "--v=4"
+ - "--csi-address=/csi/csi.sock"
+ volumeMounts:
+ - name: plugin-dir
+ mountPath: /csi
+ volumes:
+ # needed only for topology aware setups
+ #- name: vsphere-config-volume
+ # secret:
+ # secretName: vsphere-config-secret
+ - name: registration-dir
+ hostPath:
+ path: {{ .Values.csiNode.prefixPath }}/var/lib/kubelet/plugins_registry
+ type: Directory
+ - name: plugin-dir
+ hostPath:
+ path: {{ .Values.csiNode.prefixPath }}/var/lib/kubelet/plugins/csi.vsphere.vmware.com
+ type: DirectoryOrCreate
+ - name: pods-mount-dir
+ hostPath:
+ path: {{ .Values.csiNode.prefixPath }}/var/lib/kubelet
+ type: Directory
+ - name: device-dir
+ hostPath:
+ path: /dev
+ - name: blocks-dir
+ hostPath:
+ path: /sys/block
+ type: Directory
+ - name: sys-devices-dir
+ hostPath:
+ path: /sys/devices
+ type: Directory
+ tolerations:
+ - effect: NoExecute
+ operator: Exists
+ - effect: NoSchedule
+ operator: Exists
diff --git a/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/vsphere-csi-node-rbac.yaml b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/vsphere-csi-node-rbac.yaml
new file mode 100755
index 000000000..877a09456
--- /dev/null
+++ b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/vsphere-csi-node-rbac.yaml
@@ -0,0 +1,29 @@
+kind: ServiceAccount
+apiVersion: v1
+metadata:
+ name: vsphere-csi-node
+ namespace: {{ .Release.Namespace }}
+---
+kind: Role
+apiVersion: rbac.authorization.k8s.io/v1
+metadata:
+ name: vsphere-csi-node-role
+ namespace: {{ .Release.Namespace }}
+rules:
+ - apiGroups: [""]
+ resources: ["configmaps"]
+ verbs: ["get", "list", "watch"]
+---
+kind: RoleBinding
+apiVersion: rbac.authorization.k8s.io/v1
+metadata:
+ name: vsphere-csi-node-binding
+ namespace: {{ .Release.Namespace }}
+subjects:
+ - kind: ServiceAccount
+ name: vsphere-csi-node
+ namespace: {{ .Release.Namespace }}
+roleRef:
+ kind: Role
+ name: vsphere-csi-node-role
+ apiGroup: rbac.authorization.k8s.io
diff --git a/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/vsphere-csi-secret.yaml b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/vsphere-csi-secret.yaml
new file mode 100755
index 000000000..2a8c53025
--- /dev/null
+++ b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/vsphere-csi-secret.yaml
@@ -0,0 +1,9 @@
+{{- if .Values.vCenter.configSecret.generate -}}
+apiVersion: v1
+kind: Secret
+metadata:
+ name: {{ .Values.vCenter.configSecret.name }}
+ namespace: {{ .Release.Namespace }}
+data:
+ csi-vsphere.conf: {{ tpl .Values.vCenter.configSecret.configTemplate . | b64enc | quote }}
+{{- end -}}
diff --git a/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/vsphere-csi-storageclass.yaml b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/vsphere-csi-storageclass.yaml
new file mode 100755
index 000000000..01c07e4cb
--- /dev/null
+++ b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/templates/vsphere-csi-storageclass.yaml
@@ -0,0 +1,16 @@
+{{- if .Values.storageClass.enabled -}}
+apiVersion: storage.k8s.io/v1
+kind: StorageClass
+metadata:
+ name: {{ .Values.storageClass.name | quote }}
+ annotations:
+ storageclass.kubernetes.io/is-default-class: {{ .Values.storageClass.isDefault | quote }}
+provisioner: csi.vsphere.vmware.com
+parameters:
+ {{- if .Values.storageClass.datastoreURL }}
+ datastoreURL: {{ .Values.storageClass.datastoreURL | quote }}
+ {{- end }}
+ {{- if .Values.storageClass.storagePolicyName }}
+ storagepolicyname: {{ .Values.storageClass.storagePolicyName | quote }}
+ {{- end }}
+{{- end -}}
diff --git a/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/values.yaml b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/values.yaml
new file mode 100755
index 000000000..8cdd1f4d1
--- /dev/null
+++ b/charts/rancher-vsphere-csi/rancher-vsphere-csi/2.2.000-rc01/values.yaml
@@ -0,0 +1,75 @@
+vCenter:
+ host: ""
+ port: 443
+ insecureFlag: "1"
+ clusterId: ""
+ datacenters: ""
+ username: ""
+ password: ""
+ configSecret:
+ name: "vsphere-config-secret"
+ generate: true
+ configTemplate: |
+ [Global]
+ cluster-id = {{ required ".Values.vCenter.clusterId must be provided" (default .Values.vCenter.clusterId .Values.global.cattle.clusterId) | quote }}
+ user = {{ .Values.vCenter.username | quote }}
+ password = {{ .Values.vCenter.password | quote }}
+ port = {{ .Values.vCenter.port | quote }}
+ insecure-flag = {{ .Values.vCenter.insecureFlag | quote }}
+
+ [VirtualCenter {{ .Values.vCenter.host | quote }}]
+ datacenters = {{ .Values.vCenter.datacenters | quote }}
+
+csiController:
+ csiResizer:
+ enabled: false
+ image:
+ repository: rancher/mirrored-cloud-provider-vsphere-csi-release-driver
+ tag: v2.2.0
+ csiAttacher:
+ repository: rancher/mirrored-k8scsi-csi-attacher
+ tag: v3.1.0
+ csiResizer:
+ repository: rancher/mirrored-k8scsi-csi-resizer
+ tag: v1.1.0
+ livenessProbe:
+ repository: rancher/mirrored-k8scsi-livenessprobe
+ tag: v2.2.0
+ vsphereSyncer:
+ repository: rancher/mirrored-cloud-provider-vsphere-csi-release-syncer
+ tag: v2.2.0
+ csiProvisioner:
+ repository: rancher/mirrored-k8scsi-csi-provisioner
+ tag: v2.1.0
+ nodeSelector: {}
+
+# Internal features
+csiMigration:
+ enabled: false
+csiAuthCheck:
+ enabled: false
+onlineVolumeExtend:
+ enabled: false
+
+csiNode:
+ prefixPath: ""
+ image:
+ repository: rancher/mirrored-cloud-provider-vsphere-csi-release-driver
+ tag: v2.2.0
+ nodeDriverRegistrar:
+ repository: rancher/mirrored-k8scsi-csi-node-driver-registrar
+ tag: v2.1.0
+ livenessProbe:
+ repository: rancher/mirrored-k8scsi-livenessprobe
+ tag: v2.2.0
+
+storageClass:
+ enabled: true
+ name: "vsphere-csi-sc"
+ isDefault: true
+ storagePolicyName: ""
+ datastoreURL: ""
+
+global:
+ cattle:
+ systemDefaultRegistry: ""
diff --git a/index.yaml b/index.yaml
old mode 100644
new mode 100755
index 1fd712610..a523ff60a
--- a/index.yaml
+++ b/index.yaml
@@ -20,6 +20,196 @@ 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-05-10T18:02:54.015545691Z"
+ description: Fleet Manager - GitOps at Scale
+ digest: 7486340490d7d32e6637154e664f53f08419421f0d11c3e1eeeb6aecea86e4c4
+ icon: https://charts.rancher.io/assets/logos/fleet.svg
+ name: fleet
+ urls:
+ - assets/fleet/fleet-0.3.500-rc10.tgz
+ version: 0.3.500-rc10
+ - 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-05-10T18:02:54.014876089Z"
+ description: Fleet Manager - GitOps at Scale
+ digest: 71cb70ec0bd7bb3d21eacb34fbd4ed3072997cfb98d3881638bbcc5d137d6927
+ icon: https://charts.rancher.io/assets/logos/fleet.svg
+ name: fleet
+ urls:
+ - assets/fleet/fleet-0.3.500-rc09.tgz
+ version: 0.3.500-rc09
+ - 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-05-10T18:02:54.014008588Z"
+ description: Fleet Manager - GitOps at Scale
+ digest: 6f8e8e5dca94d4b826ddda815f57e7fdbc081d038613d9d74105a15498d1b46c
+ icon: https://charts.rancher.io/assets/logos/fleet.svg
+ name: fleet
+ urls:
+ - assets/fleet/fleet-0.3.500-rc08.tgz
+ version: 0.3.500-rc08
+ - 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-05-10T18:02:54.013309187Z"
+ description: Fleet Manager - GitOps at Scale
+ digest: 9b9e66ecf7f92e537aeaf226920a46e84e127df6357fbc6528c8a8875070d198
+ icon: https://charts.rancher.io/assets/logos/fleet.svg
+ name: fleet
+ urls:
+ - assets/fleet/fleet-0.3.500-rc07.tgz
+ version: 0.3.500-rc07
+ - 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-05-10T18:02:54.012346785Z"
+ description: Fleet Manager - GitOps at Scale
+ digest: 0fefba92f5f16d2bb2820e582d5da5745ef9e7923c414d36ebbaf62c4b39b3ef
+ icon: https://charts.rancher.io/assets/logos/fleet.svg
+ name: fleet
+ urls:
+ - assets/fleet/fleet-0.3.500-rc06.tgz
+ version: 0.3.500-rc06
+ - 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-05-10T18:02:54.011596183Z"
+ 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-05-10T18:02:54.010874382Z"
+ 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-05-10T18:02:54.010263381Z"
+ 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-05-10T18:02:54.00964308Z"
+ 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-05-10T18:02:54.009002479Z"
+ 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 +229,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-05-10T18:02:54.008253077Z"
+ 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 +341,166 @@ 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-05-10T18:02:54.022643604Z"
+ description: Fleet Manager Agent - GitOps at Scale
+ digest: a2c1c673e13ba54c96cb9daab2510b358118d89b43e646d358151e258c560949
+ icon: https://charts.rancher.io/assets/logos/fleet.svg
+ name: fleet-agent
+ urls:
+ - assets/fleet-agent/fleet-agent-0.3.500-rc10.tgz
+ version: 0.3.500-rc10
+ - 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-05-10T18:02:54.021874802Z"
+ description: Fleet Manager Agent - GitOps at Scale
+ digest: a458f204ecfba7648fc98a148d7dd9b5e8958b3ed4d34f797a5915d78cb354d1
+ icon: https://charts.rancher.io/assets/logos/fleet.svg
+ name: fleet-agent
+ urls:
+ - assets/fleet-agent/fleet-agent-0.3.500-rc09.tgz
+ version: 0.3.500-rc09
+ - 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-05-10T18:02:54.021419601Z"
+ description: Fleet Manager Agent - GitOps at Scale
+ digest: 43b5d98fc8d8d82c6bc98f857292ddea06763744dd856cd230fa3632411550ed
+ icon: https://charts.rancher.io/assets/logos/fleet.svg
+ name: fleet-agent
+ urls:
+ - assets/fleet-agent/fleet-agent-0.3.500-rc08.tgz
+ version: 0.3.500-rc08
+ - 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-05-10T18:02:54.020934201Z"
+ description: Fleet Manager Agent - GitOps at Scale
+ digest: a040631b230113b4b22d89edf9067a8a76486e572592c9143dcc5d55af8137e5
+ icon: https://charts.rancher.io/assets/logos/fleet.svg
+ name: fleet-agent
+ urls:
+ - assets/fleet-agent/fleet-agent-0.3.500-rc07.tgz
+ version: 0.3.500-rc07
+ - 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-05-10T18:02:54.0205066Z"
+ description: Fleet Manager Agent - GitOps at Scale
+ digest: 69d9126272298c5540de5ae8345098886cd8ea25122057dd90ee9ff45b7cb896
+ icon: https://charts.rancher.io/assets/logos/fleet.svg
+ name: fleet-agent
+ urls:
+ - assets/fleet-agent/fleet-agent-0.3.500-rc06.tgz
+ version: 0.3.500-rc06
+ - 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-05-10T18:02:54.020067099Z"
+ 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-05-10T18:02:54.018808297Z"
+ 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-05-10T18:02:54.018052895Z"
+ 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-05-10T18:02:54.017413094Z"
+ 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-05-10T18:02:54.016710893Z"
+ 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 +517,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-05-10T18:02:54.016008991Z"
+ 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 +614,166 @@ 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-05-10T18:02:54.03128602Z"
+ description: Fleet Manager CustomResourceDefinitions
+ digest: a19f5dd21917f0905394b788c113f8277156a86070e5bb13f8e7cf9876ecd467
+ icon: https://charts.rancher.io/assets/logos/fleet.svg
+ name: fleet-crd
+ urls:
+ - assets/fleet-crd/fleet-crd-0.3.500-rc10.tgz
+ version: 0.3.500-rc10
+ - 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-05-10T18:02:54.030677118Z"
+ description: Fleet Manager CustomResourceDefinitions
+ digest: 851114f93c12c46a64b4ab991401b781ff6ac4d8f8ea2de55c1ef620bc76a0b5
+ icon: https://charts.rancher.io/assets/logos/fleet.svg
+ name: fleet-crd
+ urls:
+ - assets/fleet-crd/fleet-crd-0.3.500-rc09.tgz
+ version: 0.3.500-rc09
+ - 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-05-10T18:02:54.030022117Z"
+ description: Fleet Manager CustomResourceDefinitions
+ digest: 0fc34c8a36f2e61a552311d96d2dc33b0325e5f08a63e7dc9fa446a378880cce
+ icon: https://charts.rancher.io/assets/logos/fleet.svg
+ name: fleet-crd
+ urls:
+ - assets/fleet-crd/fleet-crd-0.3.500-rc08.tgz
+ version: 0.3.500-rc08
+ - 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-05-10T18:02:54.029335416Z"
+ description: Fleet Manager CustomResourceDefinitions
+ digest: 4f64cd7bbfb4000fca476e3d745cfc9658e0d3d2c4aea7c087ce12b1bd745e6d
+ icon: https://charts.rancher.io/assets/logos/fleet.svg
+ name: fleet-crd
+ urls:
+ - assets/fleet-crd/fleet-crd-0.3.500-rc07.tgz
+ version: 0.3.500-rc07
+ - 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-05-10T18:02:54.028650815Z"
+ description: Fleet Manager CustomResourceDefinitions
+ digest: ca6681e937acdbe58d3fe718a2b78b45e696438bc26d5c3ae86fd804cc87a8b6
+ icon: https://charts.rancher.io/assets/logos/fleet.svg
+ name: fleet-crd
+ urls:
+ - assets/fleet-crd/fleet-crd-0.3.500-rc06.tgz
+ version: 0.3.500-rc06
+ - 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-05-10T18:02:54.027519813Z"
+ 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-05-10T18:02:54.026776911Z"
+ 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-05-10T18:02:54.025359909Z"
+ 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-05-10T18:02:54.024727608Z"
+ 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-05-10T18:02:54.024081906Z"
+ 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 +790,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-05-10T18:02:54.023384405Z"
+ 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"
@@ -349,6 +910,47 @@ entries:
urls:
- released/assets/longhorn/longhorn-1.1.100.tgz
version: 1.1.100
+ - 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
+ catalog.cattle.io/release-name: longhorn
+ catalog.cattle.io/ui-component: longhorn
+ apiVersion: v1
+ appVersion: v1.1.1
+ created: "2021-05-10T18:02:54.034295725Z"
+ description: Longhorn is a distributed block storage system for Kubernetes.
+ digest: 2b03733c24223c72a3dcdecf40ff53a3117a7fbadef6eaba734d142daa706be4
+ home: https://github.com/longhorn/longhorn
+ icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/longhorn/icon/color/longhorn-icon-color.png
+ keywords:
+ - longhorn
+ - storage
+ - distributed
+ - block
+ - device
+ - iscsi
+ - nfs
+ kubeVersion: '>=v1.16.0-r0'
+ maintainers:
+ - email: maintainers@longhorn.io
+ name: Longhorn maintainers
+ 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-share-manager
+ - https://github.com/longhorn/longhorn-manager
+ - https://github.com/longhorn/longhorn-ui
+ - https://github.com/longhorn/longhorn-tests
+ - https://github.com/longhorn/backing-image-manager
+ urls:
+ - assets/longhorn/longhorn-1.1.100-rc01.tgz
+ version: 1.1.100-rc01
- annotations:
catalog.cattle.io/auto-install: longhorn-crd=match
catalog.cattle.io/certified: rancher
@@ -390,6 +992,47 @@ entries:
urls:
- released/assets/longhorn/longhorn-1.1.001.tgz
version: 1.1.001
+ - 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
+ catalog.cattle.io/release-name: longhorn
+ catalog.cattle.io/ui-component: longhorn
+ apiVersion: v1
+ appVersion: v1.1.0
+ created: "2021-05-10T18:02:54.032783922Z"
+ description: Longhorn is a distributed block storage system for Kubernetes.
+ digest: 09a586f9ddccef1840e4c3cb548d7d412dd5cec650e3a86483086164d50da9d8
+ home: https://github.com/longhorn/longhorn
+ icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/longhorn/icon/color/longhorn-icon-color.svg?sanitize=true
+ keywords:
+ - longhorn
+ - storage
+ - distributed
+ - block
+ - device
+ - iscsi
+ kubeVersion: '>=v1.16.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-share-manager
+ - https://github.com/longhorn/longhorn-manager
+ - https://github.com/longhorn/longhorn-ui
+ - https://github.com/longhorn/longhorn-tests
+ urls:
+ - 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
@@ -525,6 +1168,20 @@ entries:
urls:
- released/assets/longhorn/longhorn-crd-1.1.100.tgz
version: 1.1.100
+ - 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-05-10T18:02:54.034719226Z"
+ description: Installs the CRDs for longhorn.
+ digest: 7e42f13e1fed328a45771c12dde4794a43cb0168c60cb5be3c667a31ae16c331
+ name: longhorn-crd
+ type: application
+ urls:
+ - assets/longhorn/longhorn-crd-1.1.100-rc01.tgz
+ version: 1.1.100-rc01
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
@@ -539,6 +1196,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-05-10T18:02:54.034504126Z"
+ 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"
@@ -597,7 +1268,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: a876d6497ff38cce265e3a873a7ad07fc51ffba72541105da0a66333c25f6fd1
keywords:
- monitoring
@@ -607,6 +1279,109 @@ 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-05-10T18:02:54.041530138Z"
+ 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: f7fe452446d259fc52a1875cd6495f4ab745b179980064b60436e13b4ef2971f
+ keywords:
+ - monitoring
+ - alertmanger
+ - webhook
+ name: rancher-alerting-drivers
+ urls:
+ - assets/rancher-alerting-drivers/rancher-alerting-drivers-1.0.100-rc04.tgz
+ version: 1.0.100-rc04
+ - 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-05-10T18:02:54.039374734Z"
+ 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-05-10T18:02:54.037511731Z"
+ 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-05-10T18:02:54.035834728Z"
+ 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
@@ -621,7 +1396,8 @@ entries:
apiVersion: v2
appVersion: 1.0.4
created: "2021-05-05T18:40:51.167654644Z"
- 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: 578dc0bbe0df5c0afce9ad2e038f8922416e95bbf20803b6c4aa9d9558a4a60a
icon: https://charts.rancher.io/assets/logos/backup-restore.svg
keywords:
@@ -631,6 +1407,78 @@ 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-05-10T18:02:54.045490846Z"
+ description: Provides ability to back up and restore the Rancher application running
+ on any Kubernetes cluster
+ digest: fbfa91a1ca467b388313b824c2eb48b52b32e5f02fd7def2405c2bb0962ce283
+ 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-rc04.tgz
+ version: 1.0.400-rc04
+ - 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-05-10T18:02:54.044786244Z"
+ 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-05-10T18:02:54.044022743Z"
+ 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
@@ -644,7 +1492,8 @@ entries:
apiVersion: v1
appVersion: v1.0.3
created: "2021-05-05T18:40:51.166979439Z"
- 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:
@@ -654,6 +1503,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-05-10T18:02:54.042086839Z"
+ 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
@@ -667,7 +1540,8 @@ entries:
apiVersion: v1
appVersion: v1.0.3
created: "2021-05-05T18:40:51.166289335Z"
- 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:
@@ -690,7 +1564,8 @@ entries:
apiVersion: v1
appVersion: v1.0.2
created: "2021-05-05T18:40:51.165448329Z"
- 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:
@@ -712,7 +1587,8 @@ entries:
apiVersion: v1
appVersion: v1.0.2
created: "2021-05-05T18:40:51.164743624Z"
- 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:
@@ -738,6 +1614,51 @@ 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-05-10T18:02:54.046457348Z"
+ description: Installs the CRDs for rancher-backup.
+ digest: e59575812057664d9a44a0242e11981bc04bd45f32a2d2df48ab715b9191a662
+ name: rancher-backup-crd
+ type: application
+ urls:
+ - assets/rancher-backup-crd/rancher-backup-crd-1.0.400-rc04.tgz
+ version: 1.0.400-rc04
+ - 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-05-10T18:02:54.046233547Z"
+ 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-05-10T18:02:54.046011847Z"
+ 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"
@@ -752,6 +1673,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-05-10T18:02:54.045768246Z"
+ 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"
@@ -807,7 +1742,8 @@ entries:
apiVersion: v1
appVersion: v1.0.4
created: "2021-05-05T18:40:51.173190281Z"
- 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: 9e32ec9dd1599d222dc84043950f96ed337524b01db2439b853fad05ecd7c210
icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg
keywords:
@@ -816,6 +1752,28 @@ entries:
urls:
- released/assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.402.tgz
version: 1.0.402
+ - 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.4
+ created: "2021-05-10T18:02:54.054387162Z"
+ 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:
+ - 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
@@ -828,7 +1786,8 @@ entries:
apiVersion: v1
appVersion: v1.0.4
created: "2021-05-05T18:40:51.172448876Z"
- 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: 9522df520c0e369eff8c371a379a3c622a9151ba003faefcdd9d0f14f66d0195
icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg
keywords:
@@ -837,6 +1796,182 @@ entries:
urls:
- 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
+ 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.4
+ created: "2021-05-10T18:02:54.053623761Z"
+ description: The cis-operator enables running CIS benchmark security scans on
+ a kubernetes cluster
+ digest: 8345022157ce2325d292216ca3a46f2edf039202167198c2950abac6c5c9c25b
+ 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.400-rc07.tgz
+ version: 1.0.400-rc07
+ - 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.4
+ created: "2021-05-10T18:02:54.052750559Z"
+ description: The cis-operator enables running CIS benchmark security scans on
+ a kubernetes cluster
+ digest: 3df08d4ad434ffe240bb1699e3e96e78d15caf2dbe6deca86431b6f4acb677e5
+ 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.400-rc06.tgz
+ version: 1.0.400-rc06
+ - 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.4
+ created: "2021-05-10T18:02:54.051861257Z"
+ description: The cis-operator enables running CIS benchmark security scans on
+ a kubernetes cluster
+ digest: 65d922c11d11adebe51b81eead7014d935c62d6d2fd4650a441845ed7fd6388c
+ 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.400-rc05.tgz
+ version: 1.0.400-rc05
+ - 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.4
+ created: "2021-05-10T18:02:54.050996056Z"
+ description: The cis-operator enables running CIS benchmark security scans on
+ a kubernetes cluster
+ digest: 2bfe69681ba5609e883575a854dca6170fea7cce6253935e090c7117fcf26913
+ 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.400-rc04.tgz
+ version: 1.0.400-rc04
+ - 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.4
+ created: "2021-05-10T18:02:54.050168754Z"
+ 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:
+ - 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
+ 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.4
+ created: "2021-05-10T18:02:54.049397753Z"
+ 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:
+ - 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.4
+ created: "2021-05-10T18:02:54.048613951Z"
+ 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:
+ - 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/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-05-10T18:02:54.04788405Z"
+ 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:
+ - 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
@@ -849,7 +1984,8 @@ entries:
apiVersion: v1
appVersion: v1.0.3
created: "2021-05-05T18:40:51.171689071Z"
- 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: c548033c5ec3822f2c89f0a1a19e3f4ce063f59a4ee021523642886ec3bf13a2
icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg
keywords:
@@ -858,6 +1994,28 @@ entries:
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-05-10T18:02:54.047155649Z"
+ 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
@@ -870,7 +2028,8 @@ entries:
apiVersion: v1
appVersion: v1.0.3
created: "2021-05-05T18:40:51.171002266Z"
- 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: 2cce59f4f78b975edd93b0d707c5282fa44a6fa1f19d702ed4be8c221170c8d1
icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg
keywords:
@@ -891,7 +2050,8 @@ entries:
apiVersion: v1
appVersion: v1.0.2
created: "2021-05-05T18:40:51.170231861Z"
- 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: b3a6ce49c5e6918a1658f682fdf25e241d9638fde4b8c046a70562c13228c8c0
icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg
keywords:
@@ -911,7 +2071,8 @@ entries:
apiVersion: v1
appVersion: v1.0.1
created: "2021-05-05T18:40:51.169445256Z"
- 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: 407c19666ce5c083c50d8ef2cbc4fbc26b811106bbfc6b3d25a659a593c0aa3c
icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg
keywords:
@@ -935,6 +2096,20 @@ entries:
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-05-10T18:02:54.057965869Z"
+ 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"
@@ -949,6 +2124,118 @@ entries:
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-05-10T18:02:54.057650268Z"
+ description: Installs the CRDs for rancher-cis-benchmark.
+ digest: 05569eda13249c570a96a984742792a5580a3d7897eaf45bb8afdc458903a9d9
+ name: rancher-cis-benchmark-crd
+ type: application
+ urls:
+ - assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.400-rc07.tgz
+ version: 1.0.400-rc07
+ - 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-05-10T18:02:54.057317067Z"
+ description: Installs the CRDs for rancher-cis-benchmark.
+ digest: 7ed6ff83cf9fe83c4051ce7613414f6e0e8f706f03a1bf8f361978d27e7497cb
+ name: rancher-cis-benchmark-crd
+ type: application
+ urls:
+ - assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.400-rc06.tgz
+ version: 1.0.400-rc06
+ - 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-05-10T18:02:54.056917667Z"
+ description: Installs the CRDs for rancher-cis-benchmark.
+ digest: 21d2742bdaa4957c00a78840ad7a2b8ab207d08c8f0a05be084e7ab2102bed99
+ name: rancher-cis-benchmark-crd
+ type: application
+ urls:
+ - assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.400-rc05.tgz
+ version: 1.0.400-rc05
+ - 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-05-10T18:02:54.056505466Z"
+ description: Installs the CRDs for rancher-cis-benchmark.
+ digest: 781f96f568e1bf50feb0325df4bf7914f1e4d83977cbd16e1fbff746f43706da
+ name: rancher-cis-benchmark-crd
+ type: application
+ urls:
+ - assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.400-rc04.tgz
+ version: 1.0.400-rc04
+ - 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-05-10T18:02:54.055848565Z"
+ 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-05-10T18:02:54.055607264Z"
+ 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-05-10T18:02:54.055360064Z"
+ 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-05-10T18:02:54.055104863Z"
+ 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"
@@ -963,6 +2250,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-05-10T18:02:54.054881963Z"
+ 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"
@@ -977,6 +2278,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-05-10T18:02:54.054641163Z"
+ 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"
@@ -1028,6 +2343,28 @@ entries:
urls:
- released/assets/rancher-eks-operator/rancher-eks-operator-2.0.100.tgz
version: 2.0.100
+ - annotations:
+ catalog.cattle.io/auto-install: rancher-eks-operator-crd=match
+ catalog.cattle.io/certified: rancher
+ catalog.cattle.io/hidden: "true"
+ catalog.cattle.io/namespace: cattle-system
+ catalog.cattle.io/os: linux
+ catalog.cattle.io/provides-gvr: eksclusterconfigs.eks.cattle.io/v1
+ catalog.cattle.io/rancher-version: 2.0.1-rc1
+ catalog.cattle.io/release-name: rancher-eks-operator
+ catalog.cattle.io/scope: management
+ apiVersion: v2
+ appVersion: 2.0.1
+ created: "2021-05-10T18:02:54.05842027Z"
+ description: A Helm chart for provisioning EKS clusters
+ digest: 569dd4b97c02936eaa436cf31d627c9ed180ac015a5921daf8fc83f3d509aed9
+ home: https://github.com/rancher/eks-operator
+ name: rancher-eks-operator
+ sources:
+ - https://github.com/rancher/eks-operator
+ urls:
+ - assets/rancher-eks-operator/rancher-eks-operator-2.0.100-rc01.tgz
+ version: 2.0.100-rc01
rancher-eks-operator-crd:
- annotations:
catalog.cattle.io/certified: rancher
@@ -1044,6 +2381,21 @@ entries:
urls:
- released/assets/rancher-eks-operator-crd/rancher-eks-operator-crd-2.0.100.tgz
version: 2.0.100
+ - 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-eks-operator-crd
+ apiVersion: v2
+ appVersion: 2.0.1
+ created: "2021-05-10T18:02:54.05869067Z"
+ description: EKS Operator CustomResourceDefinitions
+ digest: fd0a2eba506918f7041fe83e8dc97b4880f6676254511d7c112a624960c8f676
+ name: rancher-eks-operator-crd
+ urls:
+ - assets/rancher-eks-operator-crd/rancher-eks-operator-crd-2.0.100-rc01.tgz
+ version: 2.0.100-rc01
rancher-external-ip-webhook:
- annotations:
catalog.cattle.io/certified: rancher
@@ -1072,6 +2424,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-05-10T18:02:54.060315573Z"
+ 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
@@ -1139,7 +2519,8 @@ entries:
apiVersion: v1
appVersion: v3.3.0
created: "2021-05-05T18:40:51.184440856Z"
- 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: 29fee69448fac2b432b77d49ad67a51e851bb06ca2ac1531ccf5765187394346
home: https://github.com/open-policy-agent/gatekeeper
icon: https://charts.rancher.io/assets/logos/gatekeeper.svg
@@ -1152,6 +2533,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-05-10T18:02:54.062362577Z"
+ 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
@@ -1164,7 +2571,8 @@ entries:
apiVersion: v1
appVersion: v3.3.0
created: "2021-05-05T18:40:51.183423249Z"
- 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
@@ -1177,6 +2585,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-05-10T18:02:54.061364575Z"
+ 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
@@ -1190,7 +2624,8 @@ entries:
apiVersion: v1
appVersion: v3.2.1
created: "2021-05-05T18:40:51.182388842Z"
- 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
@@ -1215,7 +2650,8 @@ entries:
apiVersion: v1
appVersion: v3.1.1
created: "2021-05-05T18:40:51.181507936Z"
- 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
@@ -1239,7 +2675,8 @@ entries:
apiVersion: v1
appVersion: v3.1.1
created: "2021-05-05T18:40:51.180691031Z"
- 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
@@ -1267,6 +2704,20 @@ entries:
urls:
- released/assets/rancher-gatekeeper/rancher-gatekeeper-crd-3.3.001.tgz
version: 3.3.001
+ - 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-05-10T18:02:54.063674179Z"
+ description: Installs the CRDs for rancher-gatekeeper.
+ digest: 3aa8a1c82e5ba772e1edee2a1c4cc38452eab2e3761a01bbaeea15dead79b03c
+ name: rancher-gatekeeper-crd
+ type: application
+ urls:
+ - 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/hidden: "true"
@@ -1281,6 +2732,20 @@ entries:
urls:
- 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-05-10T18:02:54.063208978Z"
+ 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"
@@ -1359,6 +2824,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-05-10T18:02:54.066323084Z"
+ 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
@@ -1381,7 +2878,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: f505dffbf0690bf76300aefafe3263561acf396b11d06a521b44d3fa3e5ceec8
icon: https://charts.rancher.io/assets/logos/istio.svg
keywords:
@@ -1391,6 +2889,70 @@ 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-05-10T18:02:54.094429936Z"
+ 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: c662cffec015b6d78453f975110bb4c93feaa1cc66aac9332094553300b7b78e
+ 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-rc03.tgz
+ version: 1.9.300-rc03
+ - 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-05-10T18:02:54.091822331Z"
+ 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
@@ -1412,7 +2974,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: 35fab0e6cc73030a608580bf5ec8605b24f30b38e2268183fc82c7784bf9e9f0
icon: https://charts.rancher.io/assets/logos/istio.svg
keywords:
@@ -1422,6 +2985,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-05-10T18:02:54.089114126Z"
+ 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-05-10T18:02:54.086407321Z"
+ 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
@@ -1443,7 +3070,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: 1192b4865431cc81c0980b53d3cffd31b9d77b1c894e1bdb4737103b75bd410e
icon: https://charts.rancher.io/assets/logos/istio.svg
keywords:
@@ -1453,6 +3081,70 @@ 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-05-10T18:02:54.083798116Z"
+ 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: 1cf57f0513219ba95e0fe579beece3dadda9150551b968c2c37d8e978147f1e2
+ 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-rc03.tgz
+ version: 1.8.500-rc03
+ - 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-05-10T18:02:54.081042311Z"
+ 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
@@ -1474,7 +3166,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: d9d9aeb64f5a00e5b71c82acc1a8447956bfa21e9b75893603f429f506df5c6a
icon: https://charts.rancher.io/assets/logos/istio.svg
keywords:
@@ -1484,6 +3177,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-05-10T18:02:54.077021204Z"
+ 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-05-10T18:02:54.074429299Z"
+ 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
@@ -1505,7 +3262,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: ab1e015808b1014dad0c6539931bfdb00136b789f4cd36f2907b83c37db2be2f
icon: https://charts.rancher.io/assets/logos/istio.svg
keywords:
@@ -1515,6 +3273,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-05-10T18:02:54.071697494Z"
+ 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
@@ -1536,7 +3326,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:
@@ -1546,6 +3337,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-05-10T18:02:54.068878889Z"
+ 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
@@ -1569,7 +3392,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:
@@ -1597,7 +3421,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:
@@ -1625,7 +3450,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:
@@ -1647,7 +3473,9 @@ entries:
apiVersion: v2
appVersion: v1.32.0
created: "2021-05-05T18:40:51.228120847Z"
- 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: 44a2328068ff29368957eda00d5b3492154ebb052a4fc5d6e79066a082a1e838
home: https://github.com/kiali/kiali
icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png
@@ -1669,6 +3497,41 @@ entries:
urls:
- released/assets/rancher-kiali-server/rancher-kiali-server-1.32.100.tgz
version: 1.32.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.32.0
+ created: "2021-05-10T18:02:54.098775844Z"
+ 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"
@@ -1680,7 +3543,9 @@ entries:
apiVersion: v2
appVersion: v1.29.0
created: "2021-05-05T18:40:51.226759238Z"
- 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: 12471b3eb61f9d804a3f16a951d56eafde897152574720f42af61ddafd6c409f
home: https://github.com/kiali/kiali
icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png
@@ -1702,6 +3567,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-05-10T18:02:54.09690504Z"
+ 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"
@@ -1713,7 +3613,9 @@ entries:
apiVersion: v2
appVersion: v1.29.0
created: "2021-05-05T18:40:51.225141428Z"
- 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
@@ -1735,6 +3637,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-05-10T18:02:54.095649738Z"
+ 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"
@@ -1746,7 +3683,9 @@ entries:
apiVersion: v2
appVersion: v1.24.0
created: "2021-05-05T18:40:51.223880619Z"
- 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
@@ -1779,7 +3718,9 @@ entries:
apiVersion: v2
appVersion: v1.24.0
created: "2021-05-05T18:40:51.222691711Z"
- 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
@@ -1812,7 +3753,9 @@ entries:
apiVersion: v2
appVersion: v1.23.0
created: "2021-05-05T18:40:51.221364002Z"
- 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
@@ -1846,6 +3789,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-05-10T18:02:54.099438245Z"
+ 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
@@ -1857,6 +3811,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-05-10T18:02:54.099212545Z"
+ 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
@@ -1868,6 +3833,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-05-10T18:02:54.098996544Z"
+ 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
@@ -1930,6 +3906,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-05-10T18:02:54.101665449Z"
+ 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
@@ -1942,7 +3946,8 @@ entries:
apiVersion: v1
appVersion: 3.9.4
created: "2021-05-05T18:40:51.245911866Z"
- 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: cf6627b84f89d3d2464bbfb441d1fbe2727a579cd00f321b3d143e17944a5dc2
icon: https://charts.rancher.io/assets/logos/logging.svg
keywords:
@@ -1953,6 +3958,167 @@ entries:
urls:
- released/assets/rancher-logging/rancher-logging-3.9.400.tgz
version: 3.9.400
+ - 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/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.4
+ created: "2021-05-10T18:02:54.116401576Z"
+ description: Collects and filter logs using highly configurable CRDs. Powered
+ by Banzai Cloud Logging Operator.
+ digest: 2f177fe756b63faeba777f8059abaa4f09ef184f813ad89c2fe527fd87943637
+ icon: https://charts.rancher.io/assets/logos/logging.svg
+ keywords:
+ - logging
+ - monitoring
+ - security
+ name: rancher-logging
+ urls:
+ - assets/rancher-logging/rancher-logging-3.9.400-rc08.tgz
+ version: 3.9.400-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/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.4
+ created: "2021-05-10T18:02:54.115055774Z"
+ description: Collects and filter logs using highly configurable CRDs. Powered
+ by Banzai Cloud Logging Operator.
+ digest: 4f5eb289f265116154449d9c129ab5f433866634b76dad82445cdc8cfd8f95de
+ icon: https://charts.rancher.io/assets/logos/logging.svg
+ keywords:
+ - logging
+ - monitoring
+ - security
+ name: rancher-logging
+ urls:
+ - assets/rancher-logging/rancher-logging-3.9.400-rc07.tgz
+ version: 3.9.400-rc07
+ - 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/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.4
+ created: "2021-05-10T18:02:54.113859072Z"
+ description: Collects and filter logs using highly configurable CRDs. Powered
+ by Banzai Cloud Logging Operator.
+ digest: 09a3fc9b8554719cf4f9463dca232401292ca86e871f5675c96aa272d2bb3960
+ icon: https://charts.rancher.io/assets/logos/logging.svg
+ keywords:
+ - logging
+ - monitoring
+ - security
+ name: rancher-logging
+ urls:
+ - assets/rancher-logging/rancher-logging-3.9.400-rc06.tgz
+ version: 3.9.400-rc06
+ - 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/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.4
+ created: "2021-05-10T18:02:54.112458769Z"
+ 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
+ - monitoring
+ - security
+ name: rancher-logging
+ urls:
+ - 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/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.4
+ created: "2021-05-10T18:02:54.111160867Z"
+ 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
+ - monitoring
+ - security
+ name: rancher-logging
+ urls:
+ - 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/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.4
+ created: "2021-05-10T18:02:54.109496564Z"
+ 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
+ - monitoring
+ - security
+ name: rancher-logging
+ urls:
+ - 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/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.4
+ created: "2021-05-10T18:02:54.108126661Z"
+ 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
+ - monitoring
+ - security
+ name: rancher-logging
+ urls:
+ - 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
@@ -1965,7 +4131,8 @@ entries:
apiVersion: v1
appVersion: 3.9.0
created: "2021-05-05T18:40:51.244512457Z"
- 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: 06b97edd3c44fa75ce625fcce267b4eaf7551c3de96ecff51f0c68cf83ddcd16
icon: https://charts.rancher.io/assets/logos/logging.svg
keywords:
@@ -1976,6 +4143,54 @@ entries:
urls:
- 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.9.0
+ created: "2021-05-10T18:02:54.106778959Z"
+ 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
+ - monitoring
+ - security
+ name: rancher-logging
+ urls:
+ - 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/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-05-10T18:02:54.105548856Z"
+ 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:
+ - 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
@@ -1988,7 +4203,8 @@ entries:
apiVersion: v1
appVersion: 3.9.0
created: "2021-05-05T18:40:51.243223248Z"
- 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: 1e03aae28c38ea89819cd1c229132f80f364007470b45d7e04fe597d7b6d34a1
icon: https://charts.rancher.io/assets/logos/logging.svg
keywords:
@@ -1999,6 +4215,30 @@ entries:
urls:
- 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/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-05-10T18:02:54.104362654Z"
+ 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:
+ - 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
@@ -2011,7 +4251,8 @@ entries:
apiVersion: v1
appVersion: 3.9.0
created: "2021-05-05T18:40:51.24198184Z"
- 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: b6b5e0c627f5594033b3558ff1f2d9c01b1f504a53cbc91b4e75d443ef81a784
icon: https://charts.rancher.io/assets/logos/logging.svg
keywords:
@@ -2022,6 +4263,30 @@ entries:
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-05-10T18:02:54.102921551Z"
+ 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
@@ -2034,7 +4299,8 @@ entries:
apiVersion: v1
appVersion: 3.8.2
created: "2021-05-05T18:40:51.240662531Z"
- 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: 7ec4dfb2441832d22651e9263f4bbdcda9e1f064b9e32c70d0fb7c4f6641331a
icon: https://charts.rancher.io/assets/logos/logging.svg
keywords:
@@ -2057,7 +4323,8 @@ entries:
apiVersion: v1
appVersion: 3.6.0
created: "2021-05-05T18:40:51.239456823Z"
- 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: a89b3a4327484343c59a88949479c106e40b2587df194e18910cf83099291aa6
icon: https://charts.rancher.io/assets/logos/logging.svg
keywords:
@@ -2079,7 +4346,8 @@ entries:
apiVersion: v1
appVersion: 3.6.0
created: "2021-05-05T18:40:51.238228615Z"
- 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: 3f3cd871fe5c6708b3fcdcd7a9f6e87ee41eb8f5505bdaed3f01791ac2bf7faf
icon: https://charts.rancher.io/assets/logos/logging.svg
keywords:
@@ -2105,6 +4373,104 @@ entries:
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-05-10T18:02:54.14021872Z"
+ description: Installs the CRDs for rancher-logging.
+ digest: 59cf37aa7cf382851e12a8203dbf9e66ce773d08481b2efd21b49f90c548283a
+ name: rancher-logging-crd
+ type: application
+ urls:
+ - assets/rancher-logging/rancher-logging-crd-3.9.400-rc08.tgz
+ version: 3.9.400-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-05-10T18:02:54.138186416Z"
+ description: Installs the CRDs for rancher-logging.
+ digest: e25af09b3f69e4b3f15952b6eb5bb707443bd866429b86b8a0368b20f2e04bef
+ name: rancher-logging-crd
+ type: application
+ urls:
+ - assets/rancher-logging/rancher-logging-crd-3.9.400-rc07.tgz
+ version: 3.9.400-rc07
+ - 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-05-10T18:02:54.136176213Z"
+ description: Installs the CRDs for rancher-logging.
+ digest: bec6ba83dcaca3ebc29fa12288d20009c9161d0ffeb32a412acfb93443ba391d
+ name: rancher-logging-crd
+ type: application
+ urls:
+ - assets/rancher-logging/rancher-logging-crd-3.9.400-rc06.tgz
+ version: 3.9.400-rc06
+ - 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-05-10T18:02:54.133925208Z"
+ 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-05-10T18:02:54.131459904Z"
+ 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-05-10T18:02:54.129577Z"
+ 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-05-10T18:02:54.127325796Z"
+ 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"
@@ -2119,6 +4485,34 @@ entries:
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-05-10T18:02:54.124992292Z"
+ 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-05-10T18:02:54.122995588Z"
+ 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"
@@ -2133,6 +4527,20 @@ entries:
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-05-10T18:02:54.121393885Z"
+ 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"
@@ -2147,6 +4555,20 @@ entries:
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-05-10T18:02:54.119704982Z"
+ 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"
@@ -2264,7 +4686,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: 889cad879c97388506eb4f927a83276b861fdbe8f9af6f12eff3c124bdc2d7dc
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
@@ -2295,6 +4719,2039 @@ entries:
urls:
- released/assets/rancher-monitoring/rancher-monitoring-14.5.100.tgz
version: 14.5.100
+ - 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-05-10T18:02:54.709144367Z"
+ 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: ae9bef9c734c45a8caf5acf1f9ea318625b5d41d9a1f228cf9c52a989086a540
+ 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-rc18.tgz
+ version: 14.5.100-rc18
+ - 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-05-10T18:02:54.680517714Z"
+ 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: edc3b724c954c6bdd5ca01219329cbf113b251f5ef086aa87f9461c1e12b3a69
+ 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-rc17.tgz
+ version: 14.5.100-rc17
+ - 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-05-10T18:02:54.651983662Z"
+ 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: 33853a958c9d6cabdc2f364ca2ad2d83dad3bdfa16ab67531d340ff4e3bf3d31
+ 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-rc16.tgz
+ version: 14.5.100-rc16
+ - 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-05-10T18:02:54.6183414Z"
+ 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: b3e0662966b40ea4227c17249b1af7987f23f7486aa2630b0f0ba39bbada970f
+ 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-rc15.tgz
+ version: 14.5.100-rc15
+ - 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-05-10T18:02:54.589396947Z"
+ 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: e2b77b356d7b2fd0677f479d5d72d654943dc45b91ca0645a1d102ad18625e5c
+ 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-rc14.tgz
+ version: 14.5.100-rc14
+ - 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-05-10T18:02:54.559050391Z"
+ 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: af008fa760b3be2743e4a7b83b8ecd8b82939a319c4587e8127443a4cb1963e8
+ 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-rc13.tgz
+ version: 14.5.100-rc13
+ - 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-05-10T18:02:54.529994537Z"
+ 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: 299a28d0083be35afb4e486883c6f03c147a0b2c33cc153ab4af06e1a1074f59
+ 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-rc12.tgz
+ version: 14.5.100-rc12
+ - 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-05-10T18:02:54.498168479Z"
+ 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: d26f49d4d8be58aa3302fce2852a19d0ec6916d7ccd40e80ba889e5cf0df5533
+ 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-rc11.tgz
+ version: 14.5.100-rc11
+ - 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-05-10T18:02:54.467724923Z"
+ 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: afddca73f63f084b11e4a177c1bf8e6715565977533ebd8fc16cedf27fa55058
+ 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-rc10.tgz
+ version: 14.5.100-rc10
+ - 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-05-10T18:02:54.436832466Z"
+ 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: 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:
+ - 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-rc09.tgz
+ version: 14.5.100-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: v2
+ appVersion: 0.46.0
+ created: "2021-05-10T18:02:54.407195311Z"
+ 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: 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:
+ - 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-rc08.tgz
+ version: 14.5.100-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: v2
+ appVersion: 0.46.0
+ created: "2021-05-10T18:02:54.375734953Z"
+ 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-05-10T18:02:54.344344396Z"
+ 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-05-10T18:02:54.315312942Z"
+ 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-05-10T18:02:54.284637886Z"
+ 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-05-10T18:02:54.253944729Z"
+ 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-05-10T18:02:54.225638477Z"
+ 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-05-10T18:02:54.198814928Z"
+ 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-05-10T18:02:54.171973978Z"
+ 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
@@ -2369,7 +6826,9 @@ entries:
- 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.
+ 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: 3f93da60974177e625398702800aa3ed43bbc995e8291c5e786726105b499ce3
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
@@ -2398,6 +6857,1048 @@ entries:
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-05-10T18:02:55.00441571Z"
+ 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-05-10T18:02:54.973268553Z"
+ 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-05-10T18:02:54.940911094Z"
+ 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-05-10T18:02:54.913169542Z"
+ 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-05-10T18:02:54.885918592Z"
+ 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-05-10T18:02:54.856126237Z"
+ 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-05-10T18:02:54.826313083Z"
+ 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-05-10T18:02:54.797380329Z"
+ 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-05-10T18:02:54.767597875Z"
+ 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-05-10T18:02:54.739362423Z"
+ 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
@@ -2470,7 +7971,9 @@ 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.
+ 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
@@ -2599,7 +8102,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
@@ -2726,7 +8231,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
@@ -2862,7 +8369,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
@@ -2904,6 +8413,272 @@ entries:
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-05-10T18:02:55.117975419Z"
+ description: Installs the CRDs for rancher-monitoring.
+ digest: 3f9c0ec8e30639c757ac18abefc3d9be50a9f363e314276f0066952c039e8de0
+ name: rancher-monitoring-crd
+ type: application
+ urls:
+ - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc18.tgz
+ version: 14.5.100-rc18
+ - 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-05-10T18:02:55.111875108Z"
+ description: Installs the CRDs for rancher-monitoring.
+ digest: 93f39d34f22a19369640fffae2c26009755b6efaba3ffac01125a16a8de68a86
+ name: rancher-monitoring-crd
+ type: application
+ urls:
+ - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc17.tgz
+ version: 14.5.100-rc17
+ - 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-05-10T18:02:55.106208398Z"
+ description: Installs the CRDs for rancher-monitoring.
+ digest: 201b6cb1dd24800ab36cd8b09e27707738cee9bcddc39f9d7ca10faf7a103c65
+ name: rancher-monitoring-crd
+ type: application
+ urls:
+ - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc16.tgz
+ version: 14.5.100-rc16
+ - 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-05-10T18:02:55.101048288Z"
+ description: Installs the CRDs for rancher-monitoring.
+ digest: 42d8e460c825eeb0bea24058b7862fec5a5fa0c3b58a631a01dacd2e0e5d20fe
+ name: rancher-monitoring-crd
+ type: application
+ urls:
+ - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc15.tgz
+ version: 14.5.100-rc15
+ - 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-05-10T18:02:55.095173177Z"
+ description: Installs the CRDs for rancher-monitoring.
+ digest: 82b667de4f5ed1f1182ab13dc27f3a96eb1c3f39e5eb7fa59b5c326acae5dea6
+ name: rancher-monitoring-crd
+ type: application
+ urls:
+ - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc14.tgz
+ version: 14.5.100-rc14
+ - 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-05-10T18:02:55.089996568Z"
+ description: Installs the CRDs for rancher-monitoring.
+ digest: 9540549d99c019c16a99bb0e396f8f675917ab37d6df78157387195e89375d34
+ name: rancher-monitoring-crd
+ type: application
+ urls:
+ - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc13.tgz
+ version: 14.5.100-rc13
+ - 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-05-10T18:02:55.084769458Z"
+ description: Installs the CRDs for rancher-monitoring.
+ digest: 3ad691654109d66816dbac2d10fd131e1ef1a80b7859c0fcf5fd112f0c260edb
+ name: rancher-monitoring-crd
+ type: application
+ urls:
+ - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc12.tgz
+ version: 14.5.100-rc12
+ - 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-05-10T18:02:55.077331145Z"
+ description: Installs the CRDs for rancher-monitoring.
+ digest: 2d8d99b035b1e36356f797bb53ad46a6c86a3b64a2b998dcbec89a208efe3979
+ name: rancher-monitoring-crd
+ type: application
+ urls:
+ - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc11.tgz
+ version: 14.5.100-rc11
+ - 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-05-10T18:02:55.071991335Z"
+ description: Installs the CRDs for rancher-monitoring.
+ digest: 6ba5645dd5291efb0cf21ca42863ad33417e24b98ccfb11f2e917ba9527dd267
+ name: rancher-monitoring-crd
+ type: application
+ urls:
+ - assets/rancher-monitoring/rancher-monitoring-crd-14.5.100-rc10.tgz
+ version: 14.5.100-rc10
+ - 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-05-10T18:02:55.064687421Z"
+ 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-05-10T18:02:55.059312411Z"
+ 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-05-10T18:02:55.051330897Z"
+ 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-05-10T18:02:55.046120787Z"
+ 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-05-10T18:02:55.039579475Z"
+ 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-05-10T18:02:55.032917863Z"
+ 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-05-10T18:02:55.027171652Z"
+ 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-05-10T18:02:55.021870342Z"
+ 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-05-10T18:02:55.01503373Z"
+ description: Installs the CRDs for rancher-monitoring.
+ digest: eca0f74ffa14f6d316336b54dd09b62fa9dc4dce8fbcf0c9a36c3f48ec6fae3b
+ name: rancher-monitoring-crd
+ type: application
+ urls:
+ - 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-05-10T18:02:55.00961192Z"
+ 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"
@@ -2918,6 +8693,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-05-10T18:02:55.184442942Z"
+ 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-05-10T18:02:55.178923832Z"
+ 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-05-10T18:02:55.173446621Z"
+ 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-05-10T18:02:55.168047611Z"
+ 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-05-10T18:02:55.1619493Z"
+ 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-05-10T18:02:55.156707591Z"
+ 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-05-10T18:02:55.140908162Z"
+ 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-05-10T18:02:55.135394851Z"
+ 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-05-10T18:02:55.12942944Z"
+ 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-05-10T18:02:55.123455829Z"
+ 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"
@@ -3002,6 +8917,33 @@ 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-05-10T18:02:55.185391543Z"
+ 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
@@ -3021,6 +8963,42 @@ entries:
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-05-10T18:02:55.185983044Z"
+ description: Control Rancher using GitOps
+ digest: 452ea8b948b67340e5e4f102cf3f0d349158b27abf3f676240fb9aa7c8df99fd
+ name: rancher-operator
+ urls:
+ - assets/rancher-operator/rancher-operator-0.1.400-rc05.tgz
+ version: 0.1.400-rc05
+ - 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-05-10T18:02:55.185690144Z"
+ description: Control Rancher using GitOps
+ digest: 2b596760a4060b81989fa4aa0ae9ece6bcc73c8993ca80b079516af8544b2c39
+ 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
@@ -3109,6 +9087,36 @@ 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-05-10T18:02:55.187514147Z"
+ description: Rancher Operator CustomResourceDefinitions
+ digest: a96cdda47cc9006ccdd07e624c4e3403923d23c269a7866732aeb6778d2a781d
+ name: rancher-operator-crd
+ urls:
+ - assets/rancher-operator-crd/rancher-operator-crd-0.1.400-rc05.tgz
+ version: 0.1.400-rc05
+ - 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-05-10T18:02:55.186556046Z"
+ description: Rancher Operator CustomResourceDefinitions
+ digest: 3f8dd58adfbe37cee883543c64f1205682825d6e5c06589f0b01d07c05992186
+ 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"
@@ -3182,6 +9190,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-05-10T18:02:55.189773351Z"
+ 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-05-10T18:02:55.18915565Z"
+ 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-05-10T18:02:55.188126748Z"
+ 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"
@@ -3213,6 +9263,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-05-10T18:02:55.192052656Z"
+ 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-05-10T18:02:55.190866953Z"
+ 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"
@@ -3223,13 +9333,31 @@ entries:
apiVersion: v1
appVersion: 0.1.0
created: "2021-05-05T18:40:51.487863381Z"
- 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: bee24b78c6d8e2da1b2efba5d3b26f73a9dda628e6023dd548706702cbc5b0a3
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-05-10T18:02:55.193024257Z"
+ 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
@@ -3238,7 +9366,8 @@ entries:
apiVersion: v1
appVersion: 0.1.0
created: "2021-05-05T18:40:51.481952141Z"
- 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
@@ -3253,7 +9382,8 @@ entries:
apiVersion: v1
appVersion: 0.1.0
created: "2021-05-05T18:40:51.481197036Z"
- 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
@@ -3269,7 +9399,8 @@ entries:
apiVersion: v1
appVersion: 0.1.0
created: "2021-05-05T18:40:51.480421931Z"
- 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
@@ -3285,7 +9416,8 @@ entries:
apiVersion: v1
appVersion: 0.1.0
created: "2021-05-05T18:40:51.479757627Z"
- 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: 73b11a51246c216a7587628fee346541d6b5e82246e11d586b4926254f7999fa
name: rancher-pushprox
type: application
@@ -3308,6 +9440,66 @@ entries:
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-05-10T18:02:55.195326162Z"
+ description: A Helm chart for Sachet based on the upstream https://github.com/messagebird/sachet
+ digest: 8d79dfe8930a299c2c74d83ef6d0010837034e225be6a910907eb7b6ea291686
+ name: rancher-sachet
+ type: application
+ urls:
+ - assets/rancher-sachet/rancher-sachet-1.0.100-rc04.tgz
+ version: 1.0.100-rc04
+ - 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-05-10T18:02:55.194797061Z"
+ 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.cattle.io/release-name: rancher-sachet
+ apiVersion: v2
+ appVersion: 0.2.3
+ created: "2021-05-10T18:02:55.19425506Z"
+ description: A Helm chart for Sachet based on the upstream https://github.com/messagebird/sachet
+ digest: 74196eda6a9cc9798af4afe7c56ee7ec0cb834ace80725002be6d06944a0a93c
+ name: rancher-sachet
+ type: application
+ urls:
+ - 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"
+ catalog.cattle.io/os: linux
+ catalog.cattle.io/release-name: rancher-sachet
+ apiVersion: v2
+ appVersion: 0.2.3
+ created: "2021-05-10T18:02:55.193700859Z"
+ description: A Helm chart for Sachet based on the upstream https://github.com/messagebird/sachet
+ digest: 99cd90346300c4ce75f2220100729bbfe410d46a5eaf7c1ebe6566a02a8d4aa7
+ name: rancher-sachet
+ type: application
+ urls:
+ - assets/rancher-sachet/rancher-sachet-1.0.100-rc01.tgz
+ version: 1.0.100-rc01
rancher-tracing:
- annotations:
catalog.cattle.io/hidden: "true"
@@ -3318,12 +9510,48 @@ entries:
apiVersion: v1
appVersion: 1.20.0
created: "2021-05-05T18:40:51.490391698Z"
- 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: bcc6b3e69cc504dcfed31628f9ad79a9aac921b26a802493b5ec448e2ab2ed26
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-05-10T18:02:55.197089065Z"
+ 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-05-10T18:02:55.196491064Z"
+ 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
@@ -3333,12 +9561,31 @@ entries:
apiVersion: v1
appVersion: 1.20.0
created: "2021-05-05T18:40:51.489742893Z"
- 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-05-10T18:02:55.195889163Z"
+ 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
@@ -3348,7 +9595,9 @@ entries:
apiVersion: v1
appVersion: 1.20.0
created: "2021-05-05T18:40:51.489074789Z"
- 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:
@@ -3378,7 +9627,53 @@ 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-05-10T18:02:55.197615066Z"
+ 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
+ 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.2.0
+ created: "2021-05-10T18:02:55.199279269Z"
+ description: vSphere Cloud Storage Interface (CSI)
+ digest: f258ddffde7838bbc7db066a1a6cc9d0795773063f9090ae084f5bc90cded5ce
+ 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.2.000-rc01.tgz
+ version: 2.2.000-rc01
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: vSphere CSI
@@ -3402,7 +9697,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-05-10T18:02:55.198415067Z"
+ 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-05-10T18:02:55.201602273Z"
+ 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"
@@ -3437,6 +9774,66 @@ 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-05-10T18:02:55.201055872Z"
+ description: ValidatingAdmissionWebhook for Rancher types
+ digest: a70550c026136aea24230a82600e9db1269e55a7f71e3af05827d80f942dc20d
+ name: rancher-webhook
+ urls:
+ - assets/rancher-webhook/rancher-webhook-0.1.000-rc03.tgz
+ version: 0.1.000-rc03
+ - 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-05-10T18:02:55.200648771Z"
+ 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-05-10T18:02:55.200217871Z"
+ 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-05-10T18:02:55.19960787Z"
+ 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"
@@ -3517,6 +9914,233 @@ 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-05-10T18:02:55.210066989Z"
+ description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter
+ digest: 0a047693ad2af5f0576cc5f382dbe5a2e43cae822def022ff5fda521fcefef7e
+ 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-rc11.tgz
+ version: 0.1.000-rc11
+ - 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-05-10T18:02:55.209441088Z"
+ description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter
+ digest: 9c38f0a761dfac051f4cf0ec53ff828c842225b99253644dced6352d4da178bb
+ 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-rc10.tgz
+ version: 0.1.000-rc10
+ - 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-05-10T18:02:55.208803586Z"
+ description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter
+ digest: 1e496fb1da6e51efbb80fb18bb392a0ba2ddb826e480bfa19aa8460193f938ef
+ 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-rc09.tgz
+ version: 0.1.000-rc09
+ - 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-05-10T18:02:55.208174685Z"
+ description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter
+ digest: 886674f19ed84d26024ba7368498b4c8185eef61ab1639a50673db715943084a
+ 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-rc08.tgz
+ version: 0.1.000-rc08
+ - 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-05-10T18:02:55.207545084Z"
+ description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter
+ digest: 36d93c3014cb099ed93abd5e5104abd3949e06b4e25ce92badd87d4757abc751
+ 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-rc07.tgz
+ version: 0.1.000-rc07
+ - 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-05-10T18:02:55.206914783Z"
+ description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter
+ digest: ffedaeeb6b0467eaf8745624151baac53bd4f3573cf9ddf00ef5225ac4f4de54
+ 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-rc06.tgz
+ version: 0.1.000-rc06
+ - 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-05-10T18:02:55.206297182Z"
+ description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter
+ digest: 1191ed3ce2de19d0aaa9b165d16914e5b86c62764ed508d426950e34aa1cd43c
+ 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-rc05.tgz
+ version: 0.1.000-rc05
+ - 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-05-10T18:02:55.205612681Z"
+ 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-05-10T18:02:55.20501398Z"
+ 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-05-10T18:02:55.204072478Z"
+ 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-05-10T18:02:55.203120976Z"
+ 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-05-10T18:02:55.202353975Z"
+ 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
@@ -3526,7 +10150,8 @@ entries:
apiVersion: v2
appVersion: 0.1.1
created: "2021-05-05T18:40:51.495614932Z"
- 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: 32611c63810c57ce722c074a06280481d88e93483018dbf41e63f24941f7c2d6
maintainers:
- email: arvind.iyengar@suse.com
@@ -3536,6 +10161,177 @@ 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.1
+ created: "2021-05-10T18:02:55.2158905Z"
+ description: Manages upgrading the wins server version and configuration across
+ all of your Windows nodes
+ digest: af8c1c157c195b33006bf0d4d37f3c218b285dffce9b1ea9e6f9ecc9db7451bc
+ 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-rc08.tgz
+ version: 0.0.100-rc08
+ - 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.1
+ created: "2021-05-10T18:02:55.215221598Z"
+ description: Manages upgrading the wins server version and configuration across
+ all of your Windows nodes
+ digest: 8240fe00bb238a76f01bb13a3904f659d27890529bdff23d089887f87fb325c7
+ 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-rc07.tgz
+ version: 0.0.100-rc07
+ - 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-05-10T18:02:55.214559597Z"
+ description: Manages upgrading the wins server version and configuration across
+ all of your Windows nodes
+ digest: 800ed0407cc7b88fe938778bfdf6c70d0b87c9c29f771ed26bf3103c512eafb4
+ 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-rc06.tgz
+ version: 0.0.100-rc06
+ - 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-05-10T18:02:55.213927496Z"
+ description: Manages upgrading the wins server version and configuration across
+ all of your Windows nodes
+ digest: 2c46216ab1cf783b33ab42ce7f5a34e8f87322099e50a4fda224f24cd98b30a7
+ 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-rc05.tgz
+ version: 0.0.100-rc05
+ - 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-05-10T18:02:55.213118594Z"
+ description: Manages upgrading the wins server version and configuration across
+ all of your Windows nodes
+ digest: 2d53e57153080cbbb7b873b313037e8631993ff7b775b32b34b9ee363a066570
+ 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-rc04.tgz
+ version: 0.0.100-rc04
+ - 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-05-10T18:02:55.212501193Z"
+ description: Manages upgrading the wins server version and configuration across
+ all of your Windows nodes
+ digest: 21c7e3d91197aeb05a924a03c89f96d41e33f1328fbc309f4e04e2664ec07417
+ 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-rc03.tgz
+ version: 0.0.100-rc03
+ - 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-05-10T18:02:55.211908192Z"
+ description: Manages upgrading the wins server version and configuration across
+ all of your Windows nodes
+ digest: 7df2dc9a38c73fadcaffa61d77490fa48f6ab5dbb98ea8ece5b704ceab400ba6
+ 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-rc02.tgz
+ version: 0.0.100-rc02
+ - 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-05-10T18:02:55.211261791Z"
+ 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-05-10T18:02:55.21067719Z"
+ 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
@@ -3556,6 +10352,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-05-10T18:02:55.2163639Z"
+ 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
@@ -3595,4 +10410,22 @@ entries:
urls:
- released/assets/system-upgrade-controller/system-upgrade-controller-0.7.001.tgz
version: 0.7.001
+ - 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: system-upgrade-controller
+ apiVersion: v1
+ appVersion: v0.7.0
+ created: "2021-05-10T18:02:55.216689201Z"
+ description: General purpose controller to make system level updates to nodes
+ digest: 4db3c4de021cb1e5cd27b8efd218d6e1d3edaa404d2148057b118893a98d1122
+ home: https://github.com/rancher/system-charts/charts/system-upgrade-controller
+ name: system-upgrade-controller
+ sources:
+ - https://github.com/rancher/system-charts/charts/system-upgrade-controller
+ urls:
+ - assets/system-upgrade-controller/system-upgrade-controller-0.7.001-rc01.tgz
+ version: 0.7.001-rc01
generated: "2021-05-05T18:40:51.137493443Z"