mirror of https://git.rancher.io/charts
Regenerate released directory
Merge pull request #1131 from aiyengar2/fix_crd_chart Fix CRD chart regression and fix CRDs for upgradespull/1158/head
parent
98aacb0887
commit
3a740f93e5
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,2 +1,24 @@
|
|||
# rancher-monitoring-crd
|
||||
A Rancher chart that installs the CRDs used by rancher-monitoring.
|
||||
|
||||
## How does this chart work?
|
||||
|
||||
This chart marshalls all of the CRD files placed in the `crd-manifest` directory into a ConfigMap that is installed onto a cluster alongside relevant RBAC (ServiceAccount, ClusterRoleBinding, ClusterRole, and PodSecurityPolicy).
|
||||
|
||||
Once the relevant dependent resourcees are installed / upgraded / rolled back, this chart executes a post-install / post-upgrade / post-rollback Job that:
|
||||
- Patches any existing versions of the CRDs contained within the `crd-manifest` on the cluster to set `spec.preserveUnknownFields=false`; this step is required since, based on [Kubernetes docs](https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#field-pruning) and a [known workaround](https://github.com/kubernetes-sigs/controller-tools/issues/476#issuecomment-691519936), such CRDs cannot be upgraded normally from `apiextensions.k8s.io/v1beta1` to `apiextensions.k8s.io/v1`.
|
||||
- Runs a `kubectl apply` on the CRDs that are contained within the crd-manifest ConfigMap to upgrade CRDs in the cluster
|
||||
|
||||
On an uninstall, this chart executes a separate post-delete Job that:
|
||||
- Patches any existing versions of the CRDs contained within `crd-manifest` on the cluster to set `metadata.finalizers=[]`
|
||||
- Runs a `kubectl delete` on the CRDs that are contained within the crd-manifest ConfigMap to clean up the CRDs from the cluster
|
||||
|
||||
Note: If the relevant CRDs already existed in the cluster at the time of install, this chart will absorb ownership of the lifecycle of those CRDs; therefore, on a `helm uninstall`, those CRDs will also be removed from the cluster alongside this chart.
|
||||
|
||||
## Why can't we just place the CRDs in the templates/ directory of the main chart?
|
||||
|
||||
In Helm today, you cannot declare a CRD and declare a resource of that CRD's kind in templates/ without encountering a failure on render.
|
||||
|
||||
## [Helm 3] Why can't we just place the CRDs in the crds/ directory of the main chart?
|
||||
|
||||
The Helm 3 `crds/` directory only supports the installation of CRDs, but does not support the upgrade and removal of CRDs, unlike what this chart facilitiates.
|
|
@ -20,28 +20,28 @@ spec:
|
|||
runAsNonRoot: true
|
||||
runAsUser: 1000
|
||||
initContainers:
|
||||
- name: delete-crds
|
||||
- name: set-preserve-unknown-fields-false
|
||||
image: {{ template "system_default_registry" . }}{{ .Values.image.repository }}:{{ .Values.image.tag }}
|
||||
imagePullPolicy: IfNotPresent
|
||||
command:
|
||||
- /bin/kubectl
|
||||
- delete
|
||||
- --ignore-not-found=true
|
||||
- -f
|
||||
- /etc/config/crd-manifest.yaml
|
||||
volumeMounts:
|
||||
- name: crd-manifest
|
||||
readOnly: true
|
||||
mountPath: /etc/config
|
||||
- /bin/sh
|
||||
- -c
|
||||
- >
|
||||
{{- range $path, $_ := (.Files.Glob "crd-manifest/**.yaml") }}
|
||||
{{- $crd := get (get ($.Files.Get $path | fromYaml) "metadata") "name" }}
|
||||
if [[ -n "$(kubectl get crd {{ $crd }} -o jsonpath='{.spec.preserveUnknownFields}')" ]]; then
|
||||
kubectl patch crd {{ $crd }} -p '{"spec": {"preserveUnknownFields": false, "versions": [{"name": "v1", "served": false, "storage": true}]}}' --type="merge" || true;
|
||||
fi;
|
||||
{{- end }}
|
||||
containers:
|
||||
- name: create-crds
|
||||
image: {{ template "system_default_registry" . }}{{ .Values.image.repository }}:{{ .Values.image.tag }}
|
||||
imagePullPolicy: IfNotPresent
|
||||
command:
|
||||
- /bin/kubectl
|
||||
- apply
|
||||
- -f
|
||||
- /etc/config/crd-manifest.yaml
|
||||
- /bin/sh
|
||||
- -c
|
||||
- >
|
||||
kubectl apply -f /etc/config/crd-manifest.yaml
|
||||
volumeMounts:
|
||||
- name: crd-manifest
|
||||
readOnly: true
|
||||
|
@ -80,10 +80,13 @@ spec:
|
|||
image: {{ template "system_default_registry" . }}{{ .Values.image.repository }}:{{ .Values.image.tag }}
|
||||
imagePullPolicy: IfNotPresent
|
||||
command:
|
||||
- /bin/kubectl
|
||||
- apply
|
||||
- -f
|
||||
- /etc/config/crd-manifest.yaml
|
||||
- /bin/sh
|
||||
- -c
|
||||
- >
|
||||
{{- range $path, $_ := (.Files.Glob "crd-manifest/**.yaml") }}
|
||||
{{- $crd := get (get ($.Files.Get $path | fromYaml) "metadata") "name" }}
|
||||
kubectl patch crd {{ $crd }} -p '{"metadata": {"finalizers": []}}' || true;
|
||||
{{- end }}
|
||||
volumeMounts:
|
||||
- name: crd-manifest
|
||||
readOnly: true
|
||||
|
@ -93,10 +96,10 @@ spec:
|
|||
image: {{ template "system_default_registry" . }}{{ .Values.image.repository }}:{{ .Values.image.tag }}
|
||||
imagePullPolicy: IfNotPresent
|
||||
command:
|
||||
- /bin/kubectl
|
||||
- delete
|
||||
- -f
|
||||
- /etc/config/crd-manifest.yaml
|
||||
- /bin/sh
|
||||
- -c
|
||||
- >
|
||||
kubectl delete -f /etc/config/crd-manifest.yaml
|
||||
volumeMounts:
|
||||
- name: crd-manifest
|
||||
readOnly: true
|
||||
|
|
|
@ -7,5 +7,5 @@ global:
|
|||
systemDefaultRegistry: ""
|
||||
|
||||
image:
|
||||
repository: rancher/kubectl
|
||||
tag: v1.20.2
|
||||
repository: rancher/rancher-agent
|
||||
tag: v2.5.7
|
||||
|
|
|
@ -12,9 +12,9 @@ entries:
|
|||
catalog.cattle.io/release-name: fleet
|
||||
apiVersion: v2
|
||||
appVersion: 0.3.5
|
||||
created: "2021-04-21T22:27:08.005558874Z"
|
||||
created: "2021-04-21T23:27:47.397987617Z"
|
||||
description: Fleet Manager - GitOps at Scale
|
||||
digest: 2a77cbec09897ebef3948741c58a2a280a114942f6e34e6f46bf3c7ba43382d5
|
||||
digest: f866219894b1655007e0c18efad9123ee746c976b91c6706679d9fafc596c0a0
|
||||
icon: https://charts.rancher.io/assets/logos/fleet.svg
|
||||
name: fleet
|
||||
urls:
|
||||
|
@ -124,9 +124,9 @@ entries:
|
|||
catalog.cattle.io/release-name: fleet-agent
|
||||
apiVersion: v2
|
||||
appVersion: 0.3.5
|
||||
created: "2021-04-21T22:27:08.007970858Z"
|
||||
created: "2021-04-21T23:27:47.401848234Z"
|
||||
description: Fleet Manager Agent - GitOps at Scale
|
||||
digest: 215ced5802ea169e1da90dfc34e7f8f9638d0debaa75497f99589f496fb6889e
|
||||
digest: 57b14c696fb90e02d0d09f41504762decbd8fc1aa445ca7c8ae3b37d3fb21465
|
||||
icon: https://charts.rancher.io/assets/logos/fleet.svg
|
||||
name: fleet-agent
|
||||
urls:
|
||||
|
@ -221,9 +221,9 @@ entries:
|
|||
catalog.cattle.io/release-name: fleet-crd
|
||||
apiVersion: v2
|
||||
appVersion: 0.3.5
|
||||
created: "2021-04-21T22:27:08.013414374Z"
|
||||
created: "2021-04-21T23:27:47.406546056Z"
|
||||
description: Fleet Manager CustomResourceDefinitions
|
||||
digest: 7a6a2cc4cab6566277ea8b25d217549c2330fafc2c74b566bb9e1ec465a3a2e3
|
||||
digest: 5167cd21516d55cf21a09099ecec711ac161ebf852aae501ceba230306c2db1c
|
||||
icon: https://charts.rancher.io/assets/logos/fleet.svg
|
||||
name: fleet-crd
|
||||
urls:
|
||||
|
@ -534,7 +534,7 @@ entries:
|
|||
catalog.cattle.io/release-name: rancher-alerting-drivers
|
||||
apiVersion: v2
|
||||
appVersion: 1.16.0
|
||||
created: "2021-04-21T22:27:08.020763434Z"
|
||||
created: "2021-04-21T23:27:47.414282391Z"
|
||||
dependencies:
|
||||
- condition: prom2teams.enabled
|
||||
name: prom2teams
|
||||
|
@ -544,7 +544,7 @@ entries:
|
|||
repository: file://./charts/sachet
|
||||
description: The manager for third-party webhook receivers used in Prometheus
|
||||
Alertmanager
|
||||
digest: 94b835d4cbcb72586a442ff168846243d8d286d3e108e0b135b4ab172aac5085
|
||||
digest: de4ed5a22f123bd2d00e22a0e26c7fe6036cfaf78d4fb2ac64586cb4b2252145
|
||||
keywords:
|
||||
- monitoring
|
||||
- alertmanger
|
||||
|
@ -566,10 +566,10 @@ entries:
|
|||
catalog.cattle.io/ui-component: rancher-backup
|
||||
apiVersion: v2
|
||||
appVersion: 1.0.4
|
||||
created: "2021-04-21T22:27:08.024039084Z"
|
||||
created: "2021-04-21T23:27:47.416926103Z"
|
||||
description: Provides ability to back up and restore the Rancher application running
|
||||
on any Kubernetes cluster
|
||||
digest: b2c6ac262093f84a7eef6fcbfa3a2f9068a67fea8580fa2a2e4c049e4c5d428a
|
||||
digest: 64404d8452364eb8401f8a6e7e10c1ab295ea119779b55e249cbcc4cf0a4113d
|
||||
icon: https://charts.rancher.io/assets/logos/backup-restore.svg
|
||||
keywords:
|
||||
- applications
|
||||
|
@ -681,9 +681,9 @@ entries:
|
|||
catalog.cattle.io/release-name: rancher-backup-crd
|
||||
apiVersion: v2
|
||||
appVersion: 1.0.4
|
||||
created: "2021-04-21T22:27:08.025492595Z"
|
||||
created: "2021-04-21T23:27:47.418286909Z"
|
||||
description: Installs the CRDs for rancher-backup.
|
||||
digest: 0404942b8e1fc5af8dcd42c4d55a648762f7155338370e53416a17839dd43b69
|
||||
digest: bb8be26cb0f7f10dc121cadbbf660d1eb83181e16f405e8b400953713e0c06b2
|
||||
name: rancher-backup-crd
|
||||
type: application
|
||||
urls:
|
||||
|
@ -757,10 +757,10 @@ entries:
|
|||
catalog.cattle.io/ui-component: rancher-cis-benchmark
|
||||
apiVersion: v1
|
||||
appVersion: v1.0.4
|
||||
created: "2021-04-21T22:27:08.029987737Z"
|
||||
created: "2021-04-21T23:27:47.423005931Z"
|
||||
description: The cis-operator enables running CIS benchmark security scans on
|
||||
a kubernetes cluster
|
||||
digest: a57652d766dd026020fb5bd1ceed3469e48816c806d1eed499416f36648783cf
|
||||
digest: c9436ea2c34d2fb1e27b43095627511fc23f14741c8c16c477e340701749b03a
|
||||
icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg
|
||||
keywords:
|
||||
- security
|
||||
|
@ -779,10 +779,10 @@ entries:
|
|||
catalog.cattle.io/ui-component: rancher-cis-benchmark
|
||||
apiVersion: v1
|
||||
appVersion: v1.0.4
|
||||
created: "2021-04-21T22:27:08.029267082Z"
|
||||
created: "2021-04-21T23:27:47.421986826Z"
|
||||
description: The cis-operator enables running CIS benchmark security scans on
|
||||
a kubernetes cluster
|
||||
digest: eb813dc8542437b1cc7435381e30a38cbad1a6181d6ce7dea6e703c8e2304a68
|
||||
digest: 0f9de2e621277993e591634914366da998df8beee2df6364c4115dfda0cfd123
|
||||
icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg
|
||||
keywords:
|
||||
- security
|
||||
|
@ -884,9 +884,9 @@ entries:
|
|||
catalog.cattle.io/namespace: cis-operator-system
|
||||
catalog.cattle.io/release-name: rancher-cis-benchmark-crd
|
||||
apiVersion: v1
|
||||
created: "2021-04-21T22:27:08.031258434Z"
|
||||
created: "2021-04-21T23:27:47.424818739Z"
|
||||
description: Installs the CRDs for rancher-cis-benchmark.
|
||||
digest: bc5f830a47a022dfdad2e462b6e8bb87bf01495699226c56b671680adb8298ed
|
||||
digest: a5ae7fe87921429935609453c599e8bbb883b34c0b3774856fe20444c25b9fe6
|
||||
name: rancher-cis-benchmark-crd
|
||||
type: application
|
||||
urls:
|
||||
|
@ -898,9 +898,9 @@ entries:
|
|||
catalog.cattle.io/namespace: cis-operator-system
|
||||
catalog.cattle.io/release-name: rancher-cis-benchmark-crd
|
||||
apiVersion: v1
|
||||
created: "2021-04-21T22:27:08.031090021Z"
|
||||
created: "2021-04-21T23:27:47.424564838Z"
|
||||
description: Installs the CRDs for rancher-cis-benchmark.
|
||||
digest: df8e014dc38f28d219ea2e35bc48ee2f42111623cacf50bfbc8b24c0c8b4fd5c
|
||||
digest: bc1295f9fa175ed18dd1046a0f45303ef83447bf862785ef61c5a3244e94c1ab
|
||||
name: rancher-cis-benchmark-crd
|
||||
type: application
|
||||
urls:
|
||||
|
@ -1059,10 +1059,10 @@ entries:
|
|||
catalog.cattle.io/ui-component: gatekeeper
|
||||
apiVersion: v1
|
||||
appVersion: v3.3.0
|
||||
created: "2021-04-21T22:27:08.037661023Z"
|
||||
created: "2021-04-21T23:27:47.432973676Z"
|
||||
description: Modifies Open Policy Agent's upstream gatekeeper chart that provides
|
||||
policy-based control for cloud native environments
|
||||
digest: 75aec234f0e8765965ca918fd3d06627454967d207a4b1f1b206267235fb9e84
|
||||
digest: ddbfca0d2482782c19a28c0fa4b98dc18c2ee79b84005b65b477509744d40b64
|
||||
home: https://github.com/open-policy-agent/gatekeeper
|
||||
icon: https://charts.rancher.io/assets/logos/gatekeeper.svg
|
||||
keywords:
|
||||
|
@ -1185,9 +1185,9 @@ entries:
|
|||
catalog.cattle.io/namespace: cattle-gatekeeper-system
|
||||
catalog.cattle.io/release-name: rancher-gatekeeper-crd
|
||||
apiVersion: v1
|
||||
created: "2021-04-21T22:27:08.039825288Z"
|
||||
created: "2021-04-21T23:27:47.434696984Z"
|
||||
description: Installs the CRDs for rancher-gatekeeper.
|
||||
digest: 31b744bcb0edbef84d1af43adc60cf88a4bf87e935d34e5a4c5545a25e0ea1f8
|
||||
digest: 3fe8918f72c64c9fe52b2e60ccd7d65c6f5ad1685994b2676aa78273d51fe3fa
|
||||
name: rancher-gatekeeper-crd
|
||||
type: application
|
||||
urls:
|
||||
|
@ -1261,9 +1261,9 @@ entries:
|
|||
catalog.rancher.io/release-name: rancher-grafana
|
||||
apiVersion: v2
|
||||
appVersion: 7.4.5
|
||||
created: "2021-04-21T22:27:08.04274401Z"
|
||||
created: "2021-04-21T23:27:47.437110895Z"
|
||||
description: The leading tool for querying and visualizing time series and metrics.
|
||||
digest: 5c8ed976fbfa0aaa98fe68e982ff2406466a49e29541581c4b4c2c52db62d092
|
||||
digest: 75bb0d087d8a80c88a628d4984f1df172fc415f465c9d0eac15e78746521bccf
|
||||
home: https://grafana.net
|
||||
icon: https://raw.githubusercontent.com/grafana/grafana/master/public/img/logo_transparent_400x.png
|
||||
kubeVersion: ^1.8.0-0
|
||||
|
@ -1299,7 +1299,7 @@ entries:
|
|||
catalog.cattle.io/ui-component: istio
|
||||
apiVersion: v1
|
||||
appVersion: 1.9.3
|
||||
created: "2021-04-21T22:27:08.064453366Z"
|
||||
created: "2021-04-21T23:27:47.461468306Z"
|
||||
dependencies:
|
||||
- condition: kiali.enabled
|
||||
name: kiali
|
||||
|
@ -1309,7 +1309,7 @@ entries:
|
|||
repository: file://./charts/tracing
|
||||
description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/
|
||||
for details.
|
||||
digest: 0bf67bd8dbf9ddb7f8d6a84a176d403db15c1a8ead3e125ba0117847d4e1a7ee
|
||||
digest: 1e2095cfd201d03d866f29ad021e6908022449b79040fb750c2ebdd09592c0b5
|
||||
icon: https://charts.rancher.io/assets/logos/istio.svg
|
||||
keywords:
|
||||
- networking
|
||||
|
@ -1331,7 +1331,7 @@ entries:
|
|||
catalog.cattle.io/ui-component: istio
|
||||
apiVersion: v1
|
||||
appVersion: 1.9.2
|
||||
created: "2021-04-21T22:27:08.061947975Z"
|
||||
created: "2021-04-21T23:27:47.458387092Z"
|
||||
dependencies:
|
||||
- condition: kiali.enabled
|
||||
name: kiali
|
||||
|
@ -1341,7 +1341,7 @@ entries:
|
|||
repository: file://./charts/tracing
|
||||
description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/
|
||||
for details.
|
||||
digest: 511aa39f071ea663d92a8f0c492cbf06a0150d1f6b5feec797e23ccf26c07f43
|
||||
digest: f17dc325180b09834dde30564b2e310a817d6d35a342317c53515e2fc06c1a7e
|
||||
icon: https://charts.rancher.io/assets/logos/istio.svg
|
||||
keywords:
|
||||
- networking
|
||||
|
@ -1363,7 +1363,7 @@ entries:
|
|||
catalog.cattle.io/ui-component: istio
|
||||
apiVersion: v1
|
||||
appVersion: 1.8.5
|
||||
created: "2021-04-21T22:27:08.059349477Z"
|
||||
created: "2021-04-21T23:27:47.455966681Z"
|
||||
dependencies:
|
||||
- condition: kiali.enabled
|
||||
name: kiali
|
||||
|
@ -1373,7 +1373,7 @@ entries:
|
|||
repository: file://./charts/tracing
|
||||
description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/
|
||||
for details.
|
||||
digest: 355f6e9c93acc8a9999479126a963970077c4fb23422e9c156ae0198c30825a5
|
||||
digest: eda903fafbf0da00a19c38d0495a64077986d7c1a724bb803b38e76ddbe89a56
|
||||
icon: https://charts.rancher.io/assets/logos/istio.svg
|
||||
keywords:
|
||||
- networking
|
||||
|
@ -1395,7 +1395,7 @@ entries:
|
|||
catalog.cattle.io/ui-component: istio
|
||||
apiVersion: v1
|
||||
appVersion: 1.8.4
|
||||
created: "2021-04-21T22:27:08.055568688Z"
|
||||
created: "2021-04-21T23:27:47.45347217Z"
|
||||
dependencies:
|
||||
- condition: kiali.enabled
|
||||
name: kiali
|
||||
|
@ -1405,7 +1405,7 @@ entries:
|
|||
repository: file://./charts/tracing
|
||||
description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/
|
||||
for details.
|
||||
digest: 1ec3f65fb95075ca3b9042390af0386f46014bf5351985ef1f11da7d7d50b281
|
||||
digest: b26ce9ab0d9600e582fa862710163d812f7d191cd0f4574086fba43fad6f0706
|
||||
icon: https://charts.rancher.io/assets/logos/istio.svg
|
||||
keywords:
|
||||
- networking
|
||||
|
@ -1427,7 +1427,7 @@ entries:
|
|||
catalog.cattle.io/ui-component: istio
|
||||
apiVersion: v1
|
||||
appVersion: 1.8.3
|
||||
created: "2021-04-21T22:27:08.0531019Z"
|
||||
created: "2021-04-21T23:27:47.450897358Z"
|
||||
dependencies:
|
||||
- condition: kiali.enabled
|
||||
name: kiali
|
||||
|
@ -1437,7 +1437,7 @@ entries:
|
|||
repository: file://./charts/tracing
|
||||
description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/
|
||||
for details.
|
||||
digest: b7aa38d71dd60c0d3692add12174308e2300a3517856f7c1aa5bcb5a4119a1be
|
||||
digest: ced41de2671e62788b99ea3101f9146ba6f55f9be779cfdd68231e6c497dc864
|
||||
icon: https://charts.rancher.io/assets/logos/istio.svg
|
||||
keywords:
|
||||
- networking
|
||||
|
@ -1581,11 +1581,11 @@ entries:
|
|||
catalog.rancher.io/release-name: rancher-kiali-server
|
||||
apiVersion: v2
|
||||
appVersion: v1.32.0
|
||||
created: "2021-04-21T22:27:08.070991464Z"
|
||||
created: "2021-04-21T23:27:47.47121785Z"
|
||||
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: eb918bef0ec8868457156665ac0df7d6cd29b84f01b6afa0f8eb76c239ef7fac
|
||||
digest: 1dacf53973b23a31624eff75a00bf5d0671e251d3523cdab72c379bc2205a71c
|
||||
home: https://github.com/kiali/kiali
|
||||
icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png
|
||||
keywords:
|
||||
|
@ -1616,11 +1616,11 @@ entries:
|
|||
catalog.rancher.io/release-name: rancher-kiali-server
|
||||
apiVersion: v2
|
||||
appVersion: v1.29.0
|
||||
created: "2021-04-21T22:27:08.069779172Z"
|
||||
created: "2021-04-21T23:27:47.469634543Z"
|
||||
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: 22420bcd16fbd1e6a16c32fc17123cd27e532733c064c3472ade0429423691ae
|
||||
digest: fa728926ad765d285ffa39929a5aa27c3cf68028511f24f9aceb1fb13346aece
|
||||
home: https://github.com/kiali/kiali
|
||||
icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png
|
||||
keywords:
|
||||
|
@ -1785,9 +1785,9 @@ entries:
|
|||
- annotations:
|
||||
catalog.cattle.io/hidden: "true"
|
||||
apiVersion: v2
|
||||
created: "2021-04-21T22:27:08.07185223Z"
|
||||
created: "2021-04-21T23:27:47.472413856Z"
|
||||
description: Installs the CRDs for rancher-kiali-server.
|
||||
digest: a2ca66967adaa73af20e81ddd4cb84bd5341f9dc3ddce75469c02ee027abc8db
|
||||
digest: abdc922b1082f4cb21659cfabbc85d36e53a6df54a7a1957189a0d3d9b7ba6f7
|
||||
name: rancher-kiali-server-crd
|
||||
type: application
|
||||
urls:
|
||||
|
@ -1796,9 +1796,9 @@ entries:
|
|||
- annotations:
|
||||
catalog.cattle.io/hidden: "true"
|
||||
apiVersion: v2
|
||||
created: "2021-04-21T22:27:08.07172692Z"
|
||||
created: "2021-04-21T23:27:47.472257355Z"
|
||||
description: Installs the CRDs for rancher-kiali-server.
|
||||
digest: a4c33c599b49c06e3443de60feb194ae9f154265d34e03f496e09a408a832bf6
|
||||
digest: 6c83b56542f2f0c37c8ed81e9e46f7de3a3bc9009136a8e483d46a4335744b93
|
||||
name: rancher-kiali-server-crd
|
||||
type: application
|
||||
urls:
|
||||
|
@ -1857,9 +1857,9 @@ entries:
|
|||
catalog.rancher.io/release-name: rancher-kube-state-metrics
|
||||
apiVersion: v1
|
||||
appVersion: 1.9.8
|
||||
created: "2021-04-21T22:27:08.073585762Z"
|
||||
created: "2021-04-21T23:27:47.473885263Z"
|
||||
description: Install kube-state-metrics to generate and expose cluster-level metrics
|
||||
digest: 1b4a69b2efca39f8f39640812a4832eac1f91a175fd922ba8cc4df7a2fff7ef7
|
||||
digest: dbd75e9037661ca2c7c5e594e5a0ee6b530095e4c1f9d897c74d421e56f76daf
|
||||
home: https://github.com/kubernetes/kube-state-metrics/
|
||||
keywords:
|
||||
- metric
|
||||
|
@ -1888,10 +1888,10 @@ entries:
|
|||
catalog.cattle.io/ui-component: logging
|
||||
apiVersion: v1
|
||||
appVersion: 3.9.4
|
||||
created: "2021-04-21T22:27:08.081752785Z"
|
||||
created: "2021-04-21T23:27:47.483617507Z"
|
||||
description: Collects and filter logs using highly configurable CRDs. Powered
|
||||
by Banzai Cloud Logging Operator.
|
||||
digest: 1ec037dc4d37ad3e745dae9757ac6b7056389a7b0c10e1ff416edb97beb92a7a
|
||||
digest: b5f4d32b53917fe0b1e8111b958e3b8890ed6d5957167b2870af0c5577067466
|
||||
icon: https://charts.rancher.io/assets/logos/logging.svg
|
||||
keywords:
|
||||
- logging
|
||||
|
@ -1912,10 +1912,10 @@ entries:
|
|||
catalog.cattle.io/ui-component: logging
|
||||
apiVersion: v1
|
||||
appVersion: 3.9.0
|
||||
created: "2021-04-21T22:27:08.08050339Z"
|
||||
created: "2021-04-21T23:27:47.481495097Z"
|
||||
description: Collects and filter logs using highly configurable CRDs. Powered
|
||||
by Banzai Cloud Logging Operator.
|
||||
digest: f17955b2e7b18bd50992df9635d55592e5791fb49e22143cf420efceaef8c7d5
|
||||
digest: edf3a242f93c1116b6136a88a345d1b49c2e0e2fa106e8c5671975adddaa37f7
|
||||
icon: https://charts.rancher.io/assets/logos/logging.svg
|
||||
keywords:
|
||||
- logging
|
||||
|
@ -1936,10 +1936,10 @@ entries:
|
|||
catalog.cattle.io/ui-component: logging
|
||||
apiVersion: v1
|
||||
appVersion: 3.9.0
|
||||
created: "2021-04-21T22:27:08.079372604Z"
|
||||
created: "2021-04-21T23:27:47.47990779Z"
|
||||
description: Collects and filter logs using highly configurable CRDs. Powered
|
||||
by Banzai Cloud Logging Operator.
|
||||
digest: 8958e85c0de1a9059961a2144a4186f494464dec580559c3e429cc5e421fb5a8
|
||||
digest: fc9e223428647c5e13f860c0c552bd10f77b816c8a4f391aef9c56035a9e79ad
|
||||
icon: https://charts.rancher.io/assets/logos/logging.svg
|
||||
keywords:
|
||||
- logging
|
||||
|
@ -2051,9 +2051,9 @@ entries:
|
|||
catalog.cattle.io/namespace: cattle-logging-system
|
||||
catalog.cattle.io/release-name: rancher-logging-crd
|
||||
apiVersion: v1
|
||||
created: "2021-04-21T22:27:08.094301042Z"
|
||||
created: "2021-04-21T23:27:47.495995863Z"
|
||||
description: Installs the CRDs for rancher-logging.
|
||||
digest: 184d25b63a099259104fbd06608aee866d20f7c2d196867384b69d8b269acafb
|
||||
digest: a0a2dfe6f756d84e3697d188ff2e4dcdaa398e31930d762cd229d460966f942e
|
||||
name: rancher-logging-crd
|
||||
type: application
|
||||
urls:
|
||||
|
@ -2065,9 +2065,9 @@ entries:
|
|||
catalog.cattle.io/namespace: cattle-logging-system
|
||||
catalog.cattle.io/release-name: rancher-logging-crd
|
||||
apiVersion: v1
|
||||
created: "2021-04-21T22:27:08.092290689Z"
|
||||
created: "2021-04-21T23:27:47.494202855Z"
|
||||
description: Installs the CRDs for rancher-logging.
|
||||
digest: 553c45c11be7e3c0e519d4ccfbec6b5318d75b4e6e3cd64ecc0f7152f38b50df
|
||||
digest: 5bc56d70a4a57a57b115df444422a408438df879a63897219fda53e7574c5d30
|
||||
name: rancher-logging-crd
|
||||
type: application
|
||||
urls:
|
||||
|
@ -2079,9 +2079,9 @@ entries:
|
|||
catalog.cattle.io/namespace: cattle-logging-system
|
||||
catalog.cattle.io/release-name: rancher-logging-crd
|
||||
apiVersion: v1
|
||||
created: "2021-04-21T22:27:08.089702791Z"
|
||||
created: "2021-04-21T23:27:47.492719848Z"
|
||||
description: Installs the CRDs for rancher-logging.
|
||||
digest: b4602edf8526e2e943aad7a047aa98858938a744708c2bd624ca54be6183fe8a
|
||||
digest: 20c10a3b4371029f8b50dc52ad92d92c46dea8e44c7cf8cb0adb7fe3a3eb7476
|
||||
name: rancher-logging-crd
|
||||
type: application
|
||||
urls:
|
||||
|
@ -2162,7 +2162,7 @@ entries:
|
|||
catalog.cattle.io/ui-component: monitoring
|
||||
apiVersion: v2
|
||||
appVersion: 0.46.0
|
||||
created: "2021-04-21T22:27:08.123068036Z"
|
||||
created: "2021-04-21T23:27:47.530112419Z"
|
||||
dependencies:
|
||||
- condition: grafana.enabled
|
||||
name: grafana
|
||||
|
@ -2221,7 +2221,7 @@ entries:
|
|||
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: 4a23f3355a222cd946ad8b3280b1dcbedee525e0aeb2f3c05f47ca3a7840ee97
|
||||
digest: 7ee0856d7f21d1d15b05f21c8bb9477fd643957c006aaa5ecb161bc28ff874ab
|
||||
home: https://github.com/prometheus-operator/kube-prometheus
|
||||
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
|
||||
keywords:
|
||||
|
@ -2269,7 +2269,7 @@ entries:
|
|||
catalog.cattle.io/ui-component: monitoring
|
||||
apiVersion: v1
|
||||
appVersion: 0.38.1
|
||||
created: "2021-04-21T22:27:08.234947668Z"
|
||||
created: "2021-04-21T23:27:47.643652537Z"
|
||||
dependencies:
|
||||
- condition: grafana.enabled
|
||||
name: grafana
|
||||
|
@ -2328,7 +2328,7 @@ entries:
|
|||
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: 4ab86d00e5eb5f4af796b121c59d8506faa15e9ff60b0a419e92e615b3e97d8a
|
||||
digest: a9e2dcb515469b64ed99b91ca16c6c509afff5ab7fe6746bf62ad7e95d9e1814
|
||||
home: https://github.com/prometheus-operator/kube-prometheus
|
||||
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
|
||||
keywords:
|
||||
|
@ -2862,9 +2862,9 @@ entries:
|
|||
catalog.cattle.io/namespace: cattle-monitoring-system
|
||||
catalog.cattle.io/release-name: rancher-monitoring-crd
|
||||
apiVersion: v1
|
||||
created: "2021-04-21T22:27:08.23969523Z"
|
||||
created: "2021-04-21T23:27:47.648913161Z"
|
||||
description: Installs the CRDs for rancher-monitoring.
|
||||
digest: e1f44d2996c5a276975ddfddad7c9a0819336eba48c90e0a3fac37a3cb4b2db7
|
||||
digest: ed2e92fda7ac2288ef6e6e619bd3b5e617ef95ec0f892cbbca167a59d59df446
|
||||
name: rancher-monitoring-crd
|
||||
type: application
|
||||
urls:
|
||||
|
@ -2876,9 +2876,9 @@ entries:
|
|||
catalog.cattle.io/namespace: cattle-monitoring-system
|
||||
catalog.cattle.io/release-name: rancher-monitoring-crd
|
||||
apiVersion: v1
|
||||
created: "2021-04-21T22:27:08.270835805Z"
|
||||
created: "2021-04-21T23:27:47.676319186Z"
|
||||
description: Installs the CRDs for rancher-monitoring.
|
||||
digest: 0749c05880eb9e655e77eb6757c1821f21dbaec6fd68a4e47052910bf5c5c5b5
|
||||
digest: de97c85306a6ecacc3c92b8437e4377e5291e65cfba61654f24605e91c68ed5a
|
||||
name: rancher-monitoring-crd
|
||||
type: application
|
||||
urls:
|
||||
|
@ -2949,9 +2949,9 @@ entries:
|
|||
catalog.rancher.io/release-name: rancher-node-exporter
|
||||
apiVersion: v1
|
||||
appVersion: 1.1.2
|
||||
created: "2021-04-21T22:27:08.272244812Z"
|
||||
created: "2021-04-21T23:27:47.67720539Z"
|
||||
description: A Helm chart for prometheus node-exporter
|
||||
digest: 1dcf3aff1a9e897c2f7ec9b4e24af2185944d487ca16225d6934e4682dcec14e
|
||||
digest: 372493925de0a1715c7ae9b54b1d7d3d9fdcc1fc5b27cfa68e162a7093809b55
|
||||
home: https://github.com/prometheus/node_exporter/
|
||||
keywords:
|
||||
- node-exporter
|
||||
|
@ -2980,9 +2980,9 @@ entries:
|
|||
catalog.cattle.io/release-name: rancher-operator
|
||||
apiVersion: v2
|
||||
appVersion: 0.1.4
|
||||
created: "2021-04-21T22:27:08.273620717Z"
|
||||
created: "2021-04-21T23:27:47.678716796Z"
|
||||
description: Control Rancher using GitOps
|
||||
digest: 60d9c2fc9e14e001fcf6edccc90cd10d36aaec76d75f4093bf4c26f428d23025
|
||||
digest: 5e0d422b10b5658ee6878a31050f1c6ecfd5eb05fe3ef51a7b3956d97272ee25
|
||||
name: rancher-operator
|
||||
urls:
|
||||
- assets/rancher-operator/rancher-operator-0.1.400.tgz
|
||||
|
@ -3068,9 +3068,9 @@ entries:
|
|||
catalog.cattle.io/release-name: rancher-operator-crd
|
||||
apiVersion: v2
|
||||
appVersion: 0.1.4
|
||||
created: "2021-04-21T22:27:08.276119508Z"
|
||||
created: "2021-04-21T23:27:47.682228212Z"
|
||||
description: Rancher Operator CustomResourceDefinitions
|
||||
digest: fd95ba78daa8dbfcfa3666039f33264ea146de6255c5ac679347e82c532d3313
|
||||
digest: b25f027d8d041ebdd1e1c1cc8aebddfac4e1e713af1cf67541ce91dd5af1aa19
|
||||
name: rancher-operator-crd
|
||||
urls:
|
||||
- assets/rancher-operator-crd/rancher-operator-crd-0.1.400.tgz
|
||||
|
@ -3141,9 +3141,9 @@ entries:
|
|||
catalog.cattle.io/release-name: rancher-prom2teams
|
||||
apiVersion: v1
|
||||
appVersion: 3.2.1
|
||||
created: "2021-04-21T22:27:08.27667295Z"
|
||||
created: "2021-04-21T23:27:47.683275817Z"
|
||||
description: A Helm chart for Prom2Teams based on the upstream https://github.com/idealista/prom2teams
|
||||
digest: 6086ea62d979d8902b7d32295939f5a712fcdb30a674bda213a41380127073f7
|
||||
digest: 4e057953c9c084b0c034324c534e4d64be7285fd369707cfad185c63ebd1c020
|
||||
name: rancher-prom2teams
|
||||
urls:
|
||||
- assets/rancher-prom2teams/rancher-prom2teams-0.2.000.tgz
|
||||
|
@ -3157,9 +3157,9 @@ entries:
|
|||
catalog.rancher.io/release-name: rancher-prometheus-adapter
|
||||
apiVersion: v1
|
||||
appVersion: v0.8.3
|
||||
created: "2021-04-21T22:27:08.277541516Z"
|
||||
created: "2021-04-21T23:27:47.684259122Z"
|
||||
description: A Helm chart for k8s prometheus adapter
|
||||
digest: 6bd54f481b3ac82804917ab445b1eb22fbd4a931672330cbf12fbe398889ee01
|
||||
digest: a48b6da1cd52b7865dc9ab34411f1f200cd48f5ab1aaf823f4adbfc0415e7016
|
||||
home: https://github.com/DirectXMan12/k8s-prometheus-adapter
|
||||
keywords:
|
||||
- hpa
|
||||
|
@ -3188,10 +3188,10 @@ entries:
|
|||
catalog.rancher.io/release-name: rancher-pushprox
|
||||
apiVersion: v1
|
||||
appVersion: 0.1.0
|
||||
created: "2021-04-21T22:27:08.280514643Z"
|
||||
created: "2021-04-21T23:27:47.687566537Z"
|
||||
description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx
|
||||
clients.
|
||||
digest: e7022c832344be0e4fcc15ffffda9b17e9092baa1c8328cf5cbb734e66e154de
|
||||
digest: d12bea0b9f5a6c2ddf39a19e865b3e9a8b9066e42fca21f33a710c343f8b224f
|
||||
name: rancher-pushprox
|
||||
type: application
|
||||
urls:
|
||||
|
@ -3271,9 +3271,9 @@ entries:
|
|||
catalog.cattle.io/release-name: rancher-sachet
|
||||
apiVersion: v2
|
||||
appVersion: 0.2.3
|
||||
created: "2021-04-21T22:27:08.28100748Z"
|
||||
created: "2021-04-21T23:27:47.68815904Z"
|
||||
description: A Helm chart for Sachet based on the upstream https://github.com/messagebird/sachet
|
||||
digest: 103ddc672e0a953d42ad283d9ea9a70ae2d658bbfd7a79cdf3babd99a1be4e95
|
||||
digest: 522747b6fddf0a54c8b7a317500af5410e066a9998d199ca37153526364897bd
|
||||
name: rancher-sachet
|
||||
type: application
|
||||
urls:
|
||||
|
@ -3288,11 +3288,11 @@ entries:
|
|||
catalog.rancher.io/release-name: rancher-tracing
|
||||
apiVersion: v1
|
||||
appVersion: 1.20.0
|
||||
created: "2021-04-21T22:27:08.282305579Z"
|
||||
created: "2021-04-21T23:27:47.689982548Z"
|
||||
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: dc2d100958f17673e21a7182025feac8452c868d37f1e1535d83938dcbf7a632
|
||||
digest: 493cb66b161c9bf395e2c7b9c0a3f4b1f01f140463bf336b04c37493c403621c
|
||||
name: rancher-tracing
|
||||
urls:
|
||||
- assets/rancher-tracing/rancher-tracing-1.20.100.tgz
|
||||
|
@ -3388,9 +3388,9 @@ entries:
|
|||
catalog.cattle.io/release-name: rancher-webhook
|
||||
apiVersion: v2
|
||||
appVersion: 0.1.0
|
||||
created: "2021-04-21T22:27:08.286177375Z"
|
||||
created: "2021-04-21T23:27:47.692793461Z"
|
||||
description: ValidatingAdmissionWebhook for Rancher types
|
||||
digest: c370f1a4ed38c26ff43618138e5479c310b49f20695ef64277d4df8bcb02fc56
|
||||
digest: 136be1a40dd5b2bd5abbffb137b6f5b889cd328b0b8af307f066a2b28d82af1d
|
||||
name: rancher-webhook
|
||||
urls:
|
||||
- assets/rancher-webhook/rancher-webhook-0.1.000.tgz
|
||||
|
@ -3464,9 +3464,9 @@ entries:
|
|||
catalog.rancher.io/release-name: rancher-windows-exporter
|
||||
apiVersion: v1
|
||||
appVersion: 0.0.4
|
||||
created: "2021-04-21T22:27:08.286698614Z"
|
||||
created: "2021-04-21T23:27:47.693356463Z"
|
||||
description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter
|
||||
digest: 50d16ee761acf1c69ef3e0f0805c3df820dfcc05b0d2ebb81299c7a997729319
|
||||
digest: e49533ea699edee56ea7f3672844abb6df09edc39165f749a37344ada54e4ef1
|
||||
maintainers:
|
||||
- email: arvind.iyengar@rancher.com
|
||||
name: aiyengar2
|
||||
|
@ -3483,10 +3483,10 @@ entries:
|
|||
catalog.cattle.io/release-name: rancher-wins-upgrader
|
||||
apiVersion: v2
|
||||
appVersion: 0.1.0
|
||||
created: "2021-04-21T22:27:08.287177751Z"
|
||||
created: "2021-04-21T23:27:47.693953766Z"
|
||||
description: Manages upgrading the wins server version and configuration across
|
||||
all of your Windows nodes
|
||||
digest: 6964c9ca8d323948bb784bab85d43d9b43e3b8fc6a466adfd904f59bfe7cca44
|
||||
digest: 5e9e09a29abf95efe2d07ac038108ba954bd8bf3892f214ec8552abd88a8d80f
|
||||
maintainers:
|
||||
- email: arvind.iyengar@suse.com
|
||||
name: aiyengar2
|
||||
|
|
Loading…
Reference in New Issue