Regenerate released directory

Merge pull request #1176 from aiyengar2/use_backslashes_for_windows_exporter

Use backslashes for windows_exporter and bump wins-upgrader
pull/1200/head
actions 2021-05-04 00:10:38 +00:00
parent b30d4956cc
commit e17b8cc9df
47 changed files with 327 additions and 4830 deletions

4933
index.yaml Executable file → Normal file

File diff suppressed because it is too large Load Diff

View File

@ -64,10 +64,10 @@ kubernetes.io/os: windows
{{- end -}}
{{- define "windowsExporter.validatePathPrefix" -}}
{{- $pathPrefix := (default "C:/" .Values.global.cattle.rkeWindowsPathPrefix) -}}
{{- if (contains "\\" $pathPrefix) -}}
{{- fail ".Values.global.cattle.rkeWindowsPathPrefix must not contain backslashes" -}}
{{- else if (not (hasSuffix "/" $pathPrefix)) -}}
{{- fail ".Values.global.cattle.rkeWindowsPathPrefix must end in '/'" -}}
{{- if .Values.global.cattle.rkeWindowsPathPrefix -}}
{{- $prefixPath := (.Values.global.cattle.rkeWindowsPathPrefix | replace "/" "\\") -}}
{{- if (not (hasSuffix "\\" $prefixPath)) -}}
{{- fail (printf ".Values.global.cattle.rkeWindowsPathPrefix must end in '/' or '\\', found %s" $prefixPath) -}}
{{- end -}}
{{- end -}}
{{- end -}}

View File

@ -67,7 +67,7 @@ spec:
path: \\.\pipe\rancher_wins_proxy
- name: binary-host-path
hostPath:
path: {{ default "C:/" .Values.global.cattle.rkeWindowsPathPrefix }}etc/windows-exporter
path: {{ default "C:\\" .Values.global.cattle.rkeWindowsPathPrefix | replace "\\" "/" }}etc/windows-exporter
type: DirectoryOrCreate
- name: exporter-scripts
configMap:

View File

@ -7,7 +7,7 @@
global:
cattle:
systemDefaultRegistry: ""
rkeWindowsPathPrefix: "C:/"
rkeWindowsPathPrefix: "C:\\"
# Configure ServiceMonitor that monitors metrics
serviceMonitor:

View File

@ -64,10 +64,10 @@ kubernetes.io/os: windows
{{- end -}}
{{- define "windowsExporter.validatePathPrefix" -}}
{{- $pathPrefix := (default "C:/" .Values.global.cattle.rkeWindowsPathPrefix) -}}
{{- if (contains "\\" $pathPrefix) -}}
{{- fail ".Values.global.cattle.rkeWindowsPathPrefix must not contain backslashes" -}}
{{- else if (not (hasSuffix "/" $pathPrefix)) -}}
{{- fail ".Values.global.cattle.rkeWindowsPathPrefix must end in '/'" -}}
{{- if .Values.global.cattle.rkeWindowsPathPrefix -}}
{{- $prefixPath := (.Values.global.cattle.rkeWindowsPathPrefix | replace "/" "\\") -}}
{{- if (not (hasSuffix "\\" $prefixPath)) -}}
{{- fail (printf ".Values.global.cattle.rkeWindowsPathPrefix must end in '/' or '\\', found %s" $prefixPath) -}}
{{- end -}}
{{- end -}}
{{- end -}}

View File

@ -67,7 +67,7 @@ spec:
path: \\.\pipe\rancher_wins_proxy
- name: binary-host-path
hostPath:
path: {{ default "C:/" .Values.global.cattle.rkeWindowsPathPrefix }}etc/windows-exporter
path: {{ default "C:\\" .Values.global.cattle.rkeWindowsPathPrefix | replace "\\" "/" }}etc/windows-exporter
type: DirectoryOrCreate
- name: exporter-scripts
configMap:

View File

@ -7,7 +7,7 @@
global:
cattle:
systemDefaultRegistry: ""
rkeWindowsPathPrefix: "C:/"
rkeWindowsPathPrefix: "C:\\"
# Configure ServiceMonitor that monitors metrics
serviceMonitor:

View File

@ -24,7 +24,7 @@ If the second requirement is not met, there are two options to reconcile:
This is the recommended approach for updating your Windows hosts, but it requires the user to log onto every Windows host to upgrade the wins config. After logging onto each host, you will need to do manually update the wins config.
By default, the wins config is located in `c:\etc\rancher\wins\config`, but you could use the following powershell command to identify the command line arguments passed into the `rancher-wins` service (`--config` corresponds to the config path on the host):
By default, the wins config is located in `C:\etc\rancher\wins\config`, but you could use the following powershell command to identify the command line arguments passed into the `rancher-wins` service (`--config` corresponds to the config path on the host):
```powershell
(Get-CimInstance Win32_Service -Filter 'Name = "rancher-wins"').PathName
```

View File

@ -39,17 +39,17 @@ function Transfer-File
if ($env:WINS_UPGRADE_PATH) {
$winsUpgradePath = $env:WINS_UPGRADE_PATH
} else {
$winsUpgradePath = "c:\etc\rancher\wins\wins-upgrade.exe"
$winsUpgradePath = "C:\etc\rancher\wins\wins-upgrade.exe"
}
$winsUpgradeDir = Split-Path -Path $winsUpgradePath
$winsUpgradeFilename = Split-Path -Path $winsUpgradePath -Leaf
Create-Directory -Path $winsUpgradeDir
Transfer-File -Src "c:\Windows\wins.exe" -Dst $winsUpgradePath
Transfer-File -Src "C:\Windows\wins.exe" -Dst $winsUpgradePath
Create-Directory -Path "c:\host\etc\rancher\wins"
Transfer-File -Src $winsUpgradePath -Dst "c:\host\etc\rancher\wins\$winsUpgradeFilename"
Transfer-File -Src "c:\scripts\config" -Dst "c:\host\etc\rancher\wins\config"
Create-Directory -Path "C:\host\etc\rancher\wins"
Transfer-File -Src $winsUpgradePath -Dst "C:\host\etc\rancher\wins\$winsUpgradeFilename"
Transfer-File -Src "C:\scripts\config" -Dst "C:\host\etc\rancher\wins\config"
$winsOut = wins.exe cli prc run --path=$winsUpgradePath --args="up --wins-args=`'--config=$winsUpgradeDir\config`'"

View File

@ -30,20 +30,24 @@ provider: kubernetes
{{- end -}}
{{- define "winsUpgrader.validatePathPrefix" -}}
{{- $pathPrefix := (default "C:/" .Values.global.cattle.rkeWindowsPathPrefix) -}}
{{- if (contains "\\" $pathPrefix) -}}
{{- fail ".Values.global.cattle.rkeWindowsPathPrefix must not contain backslashes" -}}
{{- else if (not (hasSuffix "/" $pathPrefix)) -}}
{{- fail ".Values.global.cattle.rkeWindowsPathPrefix must end in '/'" -}}
{{- if .Values.global.cattle.rkeWindowsPathPrefix -}}
{{- $prefixPath := (.Values.global.cattle.rkeWindowsPathPrefix | replace "/" "\\") -}}
{{- if (not (hasSuffix "\\" $prefixPath)) -}}
{{- fail (printf ".Values.global.cattle.rkeWindowsPathPrefix must end in '/' or '\\', found %s" $prefixPath) -}}
{{- end -}}
{{- end -}}
{{- end -}}
{{- define "winsUpgrader.winsHostPath" -}}
{{ default "C:/" .Values.global.cattle.rkeWindowsPathPrefix }}etc/rancher/wins
{{ default "C:\\" .Values.global.cattle.rkeWindowsPathPrefix | replace "\\\\" "\\" | replace "\\" "/" }}etc/rancher/wins
{{- end -}}
{{- define "winsUpgrader.winsMasqueradePath" -}}
{{ tpl .Values.masquerade.as . | required "Must provide name for .Values.masquerade.as if enabled" | replace "\\\\" "\\" | replace "\\" "/" }}
{{- end -}}
{{- define "winsUpgrader.winsMasqueradeHostPath" -}}
{{ tpl .Values.masquerade.as . | required "Must provide name for .Values.masquerade.as if enabled" | replace "\\\\" "\\" | replace "\\" "/" | dir }}
{{ include "winsUpgrader.winsMasqueradePath" . | dir }}
{{- end -}}
{{- define "winsUpgrader.nodeSelector" -}}

View File

@ -8,7 +8,7 @@ metadata:
labels: {{ include "winsUpgrader.labels" $ | nindent 4 }}
data:
config: |-
{{ tpl .config $ | replace "/" "\\" | indent 4 }}
{{ tpl .config $ | indent 4 }}
upgrade.ps1: |-
{{ $.Files.Get "scripts/upgrade.ps1" | indent 4 }}
noop.ps1: |-

View File

@ -25,27 +25,27 @@ spec:
containers:
- name: noop
image: {{ template "system_default_registry" $ }}{{ required "Must provide name for .Values.winsConfigs[].image.repository" .image.repository }}:{{ required "Must provide name for .Values.winsConfigs[].tag" .image.tag }}
command: ["pwsh", "-f", "c:/scripts/noop.ps1"]
command: ["pwsh", "-f", "C:/scripts/noop.ps1"]
volumeMounts:
- name: upgrade-scripts
mountPath: c:/scripts/
mountPath: C:/scripts
initContainers:
- name: wins-upgrader
image: {{ template "system_default_registry" $ }}{{ .image.repository }}:{{ .image.tag }}
command: ["pwsh", "-f", "c:/scripts/upgrade.ps1"]
command: ["pwsh", "-f", "C:/scripts/upgrade.ps1"]
volumeMounts:
- name: wins-pipe
mountPath: \\.\pipe\rancher_wins
- name: wins
mountPath: c:/host/etc/rancher/wins
mountPath: C:/host/etc/rancher/wins
- name: upgrade-scripts
mountPath: c:/scripts/
mountPath: C:/scripts
env:
- name: HELM_REVISION_NUMBER
value: {{ $.Release.Revision | quote }}
{{- if $.Values.masquerade.enabled }}
- name: WINS_UPGRADE_PATH
value: {{ $.Values.masquerade.as }}
value: {{ include "winsUpgrader.winsMasqueradePath" $ }}
{{- end }}
volumes:
- name: wins-pipe

View File

@ -7,7 +7,7 @@
global:
cattle:
systemDefaultRegistry: ""
rkeWindowsPathPrefix: "C:/"
rkeWindowsPathPrefix: "C:\\"
## One or more configurations for the wins server to be applied across all of the nodes based on the nodeSelector and tolerations provided
##
@ -24,18 +24,18 @@ winsConfigs:
proxy: rancher_wins_proxy
whiteList:
processPaths:
- {{ default "C:/" .Values.global.cattle.rkeWindowsPathPrefix }}etc/rancher/wins/wins-upgrade.exe
- {{ default "C:/" .Values.global.cattle.rkeWindowsPathPrefix }}etc/windows-exporter/windows-exporter.exe
- {{ default "C:/" .Values.global.cattle.rkeWindowsPathPrefix }}etc/wmi-exporter/wmi-exporter.exe
- {{ default "C:/" .Values.global.cattle.rkeWindowsPathPrefix }}etc/kubernetes/bin/kube-proxy.exe
- {{ default "C:/" .Values.global.cattle.rkeWindowsPathPrefix }}etc/kubernetes/bin/kubelet.exe
- {{ default "C:/" .Values.global.cattle.rkeWindowsPathPrefix }}etc/nginx/nginx.exe
- {{ default "C:/" .Values.global.cattle.rkeWindowsPathPrefix }}opt/bin/flanneld.exe
- {{ default "C:\\" .Values.global.cattle.rkeWindowsPathPrefix | replace "/" "\\" }}etc\rancher\wins\wins-upgrade.exe
- {{ default "C:\\" .Values.global.cattle.rkeWindowsPathPrefix | replace "/" "\\" }}etc\windows-exporter\windows-exporter.exe
- {{ default "C:\\" .Values.global.cattle.rkeWindowsPathPrefix | replace "/" "\\" }}etc\wmi-exporter\wmi-exporter.exe
- {{ default "C:\\" .Values.global.cattle.rkeWindowsPathPrefix | replace "/" "\\" }}etc\kubernetes\bin\kube-proxy.exe
- {{ default "C:\\" .Values.global.cattle.rkeWindowsPathPrefix | replace "/" "\\" }}etc\kubernetes\bin\kubelet.exe
- {{ default "C:\\" .Values.global.cattle.rkeWindowsPathPrefix | replace "/" "\\" }}etc\nginx\nginx.exe
- {{ default "C:\\" .Values.global.cattle.rkeWindowsPathPrefix | replace "/" "\\" }}opt\bin\flanneld.exe
proxyPorts:
- 9796
upgrade:
mode: watching
watchingPath: {{ default "C:/" .Values.global.cattle.rkeWindowsPathPrefix }}etc/rancher/wins/wins.exe
watchingPath: {{ default "C:\\" .Values.global.cattle.rkeWindowsPathPrefix | replace "/" "\\" }}etc\rancher\wins\wins.exe
# By default, `kubernetes.io/os: windows` or `beta.kubernetes.io/os: windows` will be included
nodeSelector: {}
# If provided, these tolerations will be used. Otherwise, it defaults to `[ {operator: Exists} ]`
@ -57,4 +57,4 @@ masquerade:
# wmi_exporter is the only default whitelisted process that may or may not be run on the host, since
# it is only ever deployed if the Windows cluster is also using Prometheus-based Windows monitoring (e.g. Rancher Monitoring V1)
# All of the other default whitelisted processes are required for the Kubernetes cluster to operate
as: '{{ default "C:/" .Values.global.cattle.rkeWindowsPathPrefix }}etc/wmi-exporter/wmi-exporter.exe'
as: '{{ default "C:\\" .Values.global.cattle.rkeWindowsPathPrefix | replace "/" "\\" }}etc\wmi-exporter\wmi-exporter.exe'

View File

@ -12,9 +12,9 @@ entries:
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.5
created: "2021-05-03T23:04:22.288169854Z"
created: "2021-05-04T00:10:33.963689503Z"
description: Fleet Manager - GitOps at Scale
digest: be287464c469040637d9708af85317db8594cf6845df2b4279bd17a8ab871d9e
digest: d10f9ecdedf2f41171a4af86039e64e6bf89aae3384357ca6da7e2d63f6de685
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-05-03T23:04:22.292106663Z"
created: "2021-05-04T00:10:33.967849948Z"
description: Fleet Manager Agent - GitOps at Scale
digest: 27cdf263df05d4a8c3445dd835dc66b3b317911436156f24adf69013474f967a
digest: d2f2015b1903e470b4235fa1682f50b46c2ca08649e95892bd508d1067e220ac
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-05-03T23:04:22.297869977Z"
created: "2021-05-04T00:10:33.97372117Z"
description: Fleet Manager CustomResourceDefinitions
digest: 102187509095cd875ba207eee98c4a3552dae6ab79c32a603a2e48e3d78b3501
digest: c0b1823ea29d1011eb17e7adf9b88640b687583f771ecf0e3d187bdca9e48561
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-crd
urls:
@ -319,9 +319,9 @@ entries:
catalog.cattle.io/ui-component: longhorn
apiVersion: v1
appVersion: v1.1.1
created: "2021-05-03T23:04:22.306343297Z"
created: "2021-05-04T00:10:33.983036948Z"
description: Longhorn is a distributed block storage system for Kubernetes.
digest: 933ea8fd8f8f887d125d0b385aee5c76d3499b93693e0043aac753c7039fc309
digest: 44440585f38a03f28a8f3b4ad00eb49fb40fb17e6d0425fa58d01a040db9e43c
home: https://github.com/longhorn/longhorn
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/longhorn/icon/color/longhorn-icon-color.png
keywords:
@ -517,9 +517,9 @@ entries:
catalog.cattle.io/namespace: longhorn-system
catalog.cattle.io/release-name: longhorn-crd
apiVersion: v1
created: "2021-05-03T23:04:22.3075784Z"
created: "2021-05-04T00:10:33.984224232Z"
description: Installs the CRDs for longhorn.
digest: a1f1125382554787a7457081876a349e456969b116e4918cc14fdf12081f386f
digest: 7e7e222291463a7ca332397d50b25fbf5cf36f6f996075b8f6d242ea0b478be7
name: longhorn-crd
type: application
urls:
@ -589,7 +589,7 @@ entries:
catalog.cattle.io/release-name: rancher-alerting-drivers
apiVersion: v2
appVersion: 1.16.0
created: "2021-05-03T23:04:22.309040503Z"
created: "2021-05-04T00:10:33.986002508Z"
dependencies:
- condition: prom2teams.enabled
name: prom2teams
@ -599,7 +599,7 @@ entries:
repository: file://./charts/sachet
description: The manager for third-party webhook receivers used in Prometheus
Alertmanager
digest: d70aa23ac24243877e4da167fd5742a37d59dc5660e5a24c50f6914a4decedda
digest: 44a9ef08e4d79f85381ed467634744dbb0ed7abc645dd43a389625f62eacd34f
keywords:
- monitoring
- alertmanger
@ -621,10 +621,10 @@ entries:
catalog.cattle.io/ui-component: rancher-backup
apiVersion: v2
appVersion: 1.0.4
created: "2021-05-03T23:04:22.312515011Z"
created: "2021-05-04T00:10:33.989573161Z"
description: Provides ability to back up and restore the Rancher application running
on any Kubernetes cluster
digest: 7dae378c3e847f860b9782dec86c33b6723116ac200abd5a0b996b23f2355c88
digest: 311d6e06690470e942b4c23efdf29e0dca6c4f51c36c2ac8c7a2278d112d49e5
icon: https://charts.rancher.io/assets/logos/backup-restore.svg
keywords:
- applications
@ -736,9 +736,9 @@ entries:
catalog.cattle.io/release-name: rancher-backup-crd
apiVersion: v2
appVersion: 1.0.4
created: "2021-05-03T23:04:22.314104215Z"
created: "2021-05-04T00:10:33.990874044Z"
description: Installs the CRDs for rancher-backup.
digest: 362ca27e5790219a484de53725fe5cb48d131a6056d5163709c409fe0678ed35
digest: 264212a426088f81a0c98237bf3517e8c191e3993964e684255af9a087cb5511
name: rancher-backup-crd
type: application
urls:
@ -812,10 +812,10 @@ entries:
catalog.cattle.io/ui-component: rancher-cis-benchmark
apiVersion: v1
appVersion: v1.0.4
created: "2021-05-03T23:04:22.319246927Z"
created: "2021-05-04T00:10:33.996318072Z"
description: The cis-operator enables running CIS benchmark security scans on
a kubernetes cluster
digest: 2514f1a5b5e403567cc8f9657c0191cd08ba01c4961a4ce45350fabe761629ad
digest: 6bd5b2e8bf76ebb91758d337fd1d6e82c1018bd22efa22a82c52e968783a77ee
icon: https://charts.rancher.io/assets/logos/cis-kube-bench.svg
keywords:
- security
@ -917,9 +917,9 @@ entries:
catalog.cattle.io/namespace: cis-operator-system
catalog.cattle.io/release-name: rancher-cis-benchmark-crd
apiVersion: v1
created: "2021-05-03T23:04:22.320763931Z"
created: "2021-05-04T00:10:33.997926651Z"
description: Installs the CRDs for rancher-cis-benchmark.
digest: afd5072b49502ca6160dfdc1a12c2a1a2b8c0d21493c4440004f077020e46c00
digest: 1ca2329922e4135eadc91daf997a263b53debce45053f42f0d2dc8b63a6bc83b
name: rancher-cis-benchmark-crd
type: application
urls:
@ -1078,10 +1078,10 @@ entries:
catalog.cattle.io/ui-component: gatekeeper
apiVersion: v1
appVersion: v3.3.0
created: "2021-05-03T23:04:22.327872448Z"
created: "2021-05-04T00:10:34.006208242Z"
description: Modifies Open Policy Agent's upstream gatekeeper chart that provides
policy-based control for cloud native environments
digest: 790764e6d38f91e4fb8b938017ac2ce6db040dd2fc1f46fe430493f066d82c4d
digest: 77f83b0fde901f960e8e4aee7d81d8847ce860aceb6d73e4968da7d39314c75c
home: https://github.com/open-policy-agent/gatekeeper
icon: https://charts.rancher.io/assets/logos/gatekeeper.svg
keywords:
@ -1204,9 +1204,9 @@ entries:
catalog.cattle.io/namespace: cattle-gatekeeper-system
catalog.cattle.io/release-name: rancher-gatekeeper-crd
apiVersion: v1
created: "2021-05-03T23:04:22.329664152Z"
created: "2021-05-04T00:10:34.008177916Z"
description: Installs the CRDs for rancher-gatekeeper.
digest: e00718d083c1935854f99df32236ee054367c7c5588d381c86ca79ff90c6c2ca
digest: 6f5a70922fd3c6214d7de29739f1d3e6b0109a449624239898e62601a2f4c9be
name: rancher-gatekeeper-crd
type: application
urls:
@ -1280,9 +1280,9 @@ entries:
catalog.rancher.io/release-name: rancher-grafana
apiVersion: v2
appVersion: 7.4.5
created: "2021-05-03T23:04:22.33321896Z"
created: "2021-05-04T00:10:34.01166187Z"
description: The leading tool for querying and visualizing time series and metrics.
digest: 9e5696f28a97e7d3fadbe5bdbe6b187d23c6445fc2145f327c35f5a75cd555b0
digest: 498498374ff87ed5b1b445fc5528486c46891f1f647d553585dd7aa4431a92e1
home: https://grafana.net
icon: https://raw.githubusercontent.com/grafana/grafana/master/public/img/logo_transparent_400x.png
kubeVersion: ^1.8.0-0
@ -1318,7 +1318,7 @@ entries:
catalog.cattle.io/ui-component: istio
apiVersion: v1
appVersion: 1.9.3
created: "2021-05-03T23:04:22.347253093Z"
created: "2021-05-04T00:10:34.037011136Z"
dependencies:
- condition: kiali.enabled
name: kiali
@ -1328,7 +1328,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: 687c40d4eff6822b0161b1412d735cdc4d486e40a3115c3a08b91ee03f787454
digest: cdc6fe49698a50569eb094255eac645fa80083af488fd405494fdd5a8f07bf72
icon: https://charts.rancher.io/assets/logos/istio.svg
keywords:
- networking
@ -1350,7 +1350,7 @@ entries:
catalog.cattle.io/ui-component: istio
apiVersion: v1
appVersion: 1.8.5
created: "2021-05-03T23:04:22.344920088Z"
created: "2021-05-04T00:10:34.025886483Z"
dependencies:
- condition: kiali.enabled
name: kiali
@ -1360,7 +1360,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: 888eb8c29986a9201d42772edb90655f423398ed327252aa5ecbf60b65d1f0c2
digest: 19243007814c79ac8cf795d4b42f57016c56a0e4958ea1d1d6265821a35e7fa2
icon: https://charts.rancher.io/assets/logos/istio.svg
keywords:
- networking
@ -1504,11 +1504,11 @@ entries:
catalog.rancher.io/release-name: rancher-kiali-server
apiVersion: v2
appVersion: v1.32.0
created: "2021-05-03T23:04:22.353803709Z"
created: "2021-05-04T00:10:34.044698735Z"
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: 3bc12a3baa0e3c238501a80835b872fe56d7f12df8d1648fd9285d2c77cba8eb
digest: a89b19ada8b417639f340b34053fe22f808e363aaee068cb2492579f388adec2
home: https://github.com/kiali/kiali
icon: https://raw.githubusercontent.com/kiali/kiali.io/master/themes/kiali/static/img/kiali_logo_masthead.png
keywords:
@ -1673,9 +1673,9 @@ entries:
- annotations:
catalog.cattle.io/hidden: "true"
apiVersion: v2
created: "2021-05-03T23:04:22.354933912Z"
created: "2021-05-04T00:10:34.045984818Z"
description: Installs the CRDs for rancher-kiali-server.
digest: 4af66387d7270e9c6f0df86759998140a90bc152c8a52c511e5fbb16eac3541a
digest: 75fe1556a72622868b15807ddb53ff3b2aef5b3e9420cd46cf4b9191107c228e
name: rancher-kiali-server-crd
type: application
urls:
@ -1734,9 +1734,9 @@ entries:
catalog.rancher.io/release-name: rancher-kube-state-metrics
apiVersion: v1
appVersion: 1.9.8
created: "2021-05-03T23:04:22.356137514Z"
created: "2021-05-04T00:10:34.048698882Z"
description: Install kube-state-metrics to generate and expose cluster-level metrics
digest: 47e82a17229e14e795d3fb3ea4afa62d45ca535c1f76160adf2e568ec6316f24
digest: bfcc5831a108a49491ee1ee059eb223fd84e6f2c317160c001244ced83c1fdcd
home: https://github.com/kubernetes/kube-state-metrics/
keywords:
- metric
@ -1765,10 +1765,10 @@ entries:
catalog.cattle.io/ui-component: logging
apiVersion: v1
appVersion: 3.9.4
created: "2021-05-03T23:04:22.361771928Z"
created: "2021-05-04T00:10:34.055334694Z"
description: Collects and filter logs using highly configurable CRDs. Powered
by Banzai Cloud Logging Operator.
digest: 277e1069f16ffbce7c355f2bc402d6adb005d2ab5915dd5cb2fc7c69a8d19d56
digest: ee07bc80e1f9bccfc18f1e6c3c4f7f44c9fda96a88e3edb0775ef27bd42dea7a
icon: https://charts.rancher.io/assets/logos/logging.svg
keywords:
- logging
@ -1880,9 +1880,9 @@ entries:
catalog.cattle.io/namespace: cattle-logging-system
catalog.cattle.io/release-name: rancher-logging-crd
apiVersion: v1
created: "2021-05-03T23:04:22.370791549Z"
created: "2021-05-04T00:10:34.065620459Z"
description: Installs the CRDs for rancher-logging.
digest: 59b465d6f36310f191fcf840440f5227547388765a817fc7ef25ddfb0707b810
digest: b86fd5301c3200e3133c4fe9638b655fa8a794c13325fbaa1a2eb114ddfac52f
name: rancher-logging-crd
type: application
urls:
@ -1963,7 +1963,7 @@ entries:
catalog.cattle.io/ui-component: monitoring
apiVersion: v2
appVersion: 0.46.0
created: "2021-05-03T23:04:22.405598232Z"
created: "2021-05-04T00:10:34.108937988Z"
dependencies:
- condition: grafana.enabled
name: grafana
@ -2022,7 +2022,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: 0fefb414a09c736133b39d6932890a9af7c91fe9a4a9812c7c5980e3d1743fa8
digest: 57fb911bc26c49c523352fb9f19a79852c722c404f929090b3eb6207dbce5efe
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
keywords:
@ -2558,9 +2558,9 @@ entries:
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/release-name: rancher-monitoring-crd
apiVersion: v1
created: "2021-05-03T23:04:22.506095269Z"
created: "2021-05-04T00:10:34.218352545Z"
description: Installs the CRDs for rancher-monitoring.
digest: 32fe754b0ca48e0dc1e0fa6f5dc5e530add1de5fc91a915cea2ef21b90f1931e
digest: b3ec2acac4dbc17ca65cd4fc3aead0a6ddf1209b118ae5711e0dbc1921f8b130
name: rancher-monitoring-crd
type: application
urls:
@ -2631,9 +2631,9 @@ entries:
catalog.rancher.io/release-name: rancher-node-exporter
apiVersion: v1
appVersion: 1.1.2
created: "2021-05-03T23:04:22.530832228Z"
created: "2021-05-04T00:10:34.245684085Z"
description: A Helm chart for prometheus node-exporter
digest: 04e0b18f4b351a4178e7c714c70e3bd4c850b2ee64da47b86bea76ebbef30eb9
digest: 35d9cbf4998a656984777a3e95912ce995eb81d0bc5c2383d8c5936ecf68d964
home: https://github.com/prometheus/node_exporter/
keywords:
- node-exporter
@ -2662,9 +2662,9 @@ entries:
catalog.cattle.io/release-name: rancher-operator
apiVersion: v2
appVersion: 0.1.4
created: "2021-05-03T23:04:22.532983933Z"
created: "2021-05-04T00:10:34.247444762Z"
description: Control Rancher using GitOps
digest: cab38d9d4526588539a6f836f62e2d4039d7af9bfabf8e5b63af21f435d106a0
digest: c6d38b0abe369ca889004fc17cc46782303fa99ef6ce05abb9418cf05278d850
name: rancher-operator
urls:
- assets/rancher-operator/rancher-operator-0.1.400.tgz
@ -2750,9 +2750,9 @@ entries:
catalog.cattle.io/release-name: rancher-operator-crd
apiVersion: v2
appVersion: 0.1.4
created: "2021-05-03T23:04:22.536519941Z"
created: "2021-05-04T00:10:34.250523621Z"
description: Rancher Operator CustomResourceDefinitions
digest: f703ac161d0d5c0abe7b834348e1b3f6ed395226104157bb9577c11e8d46975f
digest: 5508dfbe30d3155fb082363499cee48c02bf3d949ba8ece78290f2855e7dbead
name: rancher-operator-crd
urls:
- assets/rancher-operator-crd/rancher-operator-crd-0.1.400.tgz
@ -2823,9 +2823,9 @@ entries:
catalog.cattle.io/release-name: rancher-prom2teams
apiVersion: v1
appVersion: 3.2.1
created: "2021-05-03T23:04:22.537081443Z"
created: "2021-05-04T00:10:34.251234112Z"
description: A Helm chart for Prom2Teams based on the upstream https://github.com/idealista/prom2teams
digest: f9f9df960aea4c4e62ea08200c8edddbe65a79c084e45aafc48fe089a5281903
digest: 66d434db57c672b85a18c48b1cb1e4641a19247d31b96097cebdad4308a66fc0
name: rancher-prom2teams
urls:
- assets/rancher-prom2teams/rancher-prom2teams-0.2.000.tgz
@ -2839,9 +2839,9 @@ entries:
catalog.rancher.io/release-name: rancher-prometheus-adapter
apiVersion: v1
appVersion: v0.8.3
created: "2021-05-03T23:04:22.538126245Z"
created: "2021-05-04T00:10:34.252468896Z"
description: A Helm chart for k8s prometheus adapter
digest: 17e85bccec53a48b8475e2cf96b8ddb53f970bb0582a9d827d74440aa3f502e2
digest: f4e2e417b3d21ab863fd8ec3d7c5decf2478fbf97864a556a833d8349b66a19c
home: https://github.com/DirectXMan12/k8s-prometheus-adapter
keywords:
- hpa
@ -2870,10 +2870,10 @@ entries:
catalog.rancher.io/release-name: rancher-pushprox
apiVersion: v1
appVersion: 0.1.0
created: "2021-05-03T23:04:22.541759754Z"
created: "2021-05-04T00:10:34.256942337Z"
description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx
clients.
digest: 5ebd675a36a12a4e093003026eb65bfedf4af60e01bf2b05bc33a920b5fa48d3
digest: d7e23575b8a429f055fe7eb13d6f023e3ecb9c93d8058a9a0dcb31ca26c5445c
name: rancher-pushprox
type: application
urls:
@ -2953,9 +2953,9 @@ entries:
catalog.cattle.io/release-name: rancher-sachet
apiVersion: v2
appVersion: 0.2.3
created: "2021-05-03T23:04:22.542265055Z"
created: "2021-05-04T00:10:34.258521716Z"
description: A Helm chart for Sachet based on the upstream https://github.com/messagebird/sachet
digest: d103fbe3725207e2a5a15848bfdd16eef8df20d79e3dd3d8759cba7651567b1b
digest: d557f7f35ff6b2eb2d70941989db7511084eaa084657cc6e9ee4cc106d33b3c7
name: rancher-sachet
type: application
urls:
@ -2970,11 +2970,11 @@ entries:
catalog.rancher.io/release-name: rancher-tracing
apiVersion: v1
appVersion: 1.20.0
created: "2021-05-03T23:04:22.544012959Z"
created: "2021-05-04T00:10:34.260929084Z"
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: 66a509f0daa6de329f701e3273cdbd240fbeadbae55ff7ad00a04d37a1a377a1
digest: 8887bef2b9313a4260b9666ee52768337314e527f9c063c2517bdb2ea9239c0a
name: rancher-tracing
urls:
- assets/rancher-tracing/rancher-tracing-1.20.100.tgz
@ -3070,9 +3070,9 @@ entries:
catalog.cattle.io/release-name: rancher-webhook
apiVersion: v2
appVersion: 0.1.0
created: "2021-05-03T23:04:22.546980366Z"
created: "2021-05-04T00:10:34.263934545Z"
description: ValidatingAdmissionWebhook for Rancher types
digest: f950fd5d740727566247f032ee0cef41d6b68f460beb5a20158e21b8ffba0c3b
digest: 393daafa34ad01b73f0e69fea8b7f9e78765ff911997bf5bc508693ab0a91d4e
name: rancher-webhook
urls:
- assets/rancher-webhook/rancher-webhook-0.1.000.tgz
@ -3146,9 +3146,9 @@ entries:
catalog.rancher.io/release-name: rancher-windows-exporter
apiVersion: v1
appVersion: 0.0.4
created: "2021-05-03T23:04:22.547527367Z"
created: "2021-05-04T00:10:34.264569836Z"
description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter
digest: cbf68cd5db022fc44eb77ad887cb86d561f729618b0c175836b92f189a68be96
digest: b32aabeeedb42c2b33852922dfdfc95ee0e88c0dfe66c2c12d9fdf2c747c142a
maintainers:
- email: arvind.iyengar@rancher.com
name: aiyengar2
@ -3165,10 +3165,10 @@ entries:
catalog.cattle.io/release-name: rancher-wins-upgrader
apiVersion: v2
appVersion: 0.1.0
created: "2021-05-03T23:04:22.54849907Z"
created: "2021-05-04T00:10:34.265218828Z"
description: Manages upgrading the wins server version and configuration across
all of your Windows nodes
digest: 79121e5fa46bf7833d708e663c380b5ee275056696452e00acc4c839a7658100
digest: a845b680192633b11e47b0a5757f1ba93a5088eddebe5412e4f4f4e65ef88c4f
maintainers:
- email: arvind.iyengar@suse.com
name: aiyengar2