Regenerate released directory

Merge pull request #1159 from thedadams/add-eks-operator-31592

Add eks-operator
pull/1215/head
actions 2021-04-27 23:05:00 +00:00
parent 2b39ec8384
commit 165c284763
60 changed files with 715 additions and 5681 deletions

5844
index.yaml Executable file → Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,11 @@
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
description: EKS Operator CustomResourceDefinitions
name: rancher-eks-operator-crd
version: 2.0.100

View File

@ -0,0 +1,216 @@
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
annotations:
helm.sh/resource-policy: keep
name: eksclusterconfigs.eks.cattle.io
spec:
group: eks.cattle.io
names:
kind: EKSClusterConfig
plural: eksclusterconfigs
shortNames:
- ekscc
scope: Namespaced
subresources:
status: {}
validation:
openAPIV3Schema:
properties:
spec:
properties:
amazonCredentialSecret:
nullable: true
type: string
displayName:
nullable: true
type: string
imported:
type: boolean
kmsKey:
nullable: true
type: string
kubernetesVersion:
nullable: true
type: string
loggingTypes:
items:
nullable: true
type: string
nullable: true
type: array
nodeGroups:
items:
properties:
desiredSize:
nullable: true
type: integer
diskSize:
nullable: true
type: integer
ec2SshKey:
nullable: true
type: string
gpu:
nullable: true
type: boolean
imageId:
nullable: true
type: string
instanceType:
nullable: true
type: string
labels:
additionalProperties:
nullable: true
type: string
nullable: true
type: object
launchTemplate:
nullable: true
properties:
id:
nullable: true
type: string
name:
nullable: true
type: string
version:
nullable: true
type: integer
type: object
maxSize:
nullable: true
type: integer
minSize:
nullable: true
type: integer
nodegroupName:
nullable: true
type: string
requestSpotInstances:
nullable: true
type: boolean
resourceTags:
additionalProperties:
nullable: true
type: string
nullable: true
type: object
spotInstanceTypes:
items:
nullable: true
type: string
nullable: true
type: array
subnets:
items:
nullable: true
type: string
nullable: true
type: array
tags:
additionalProperties:
nullable: true
type: string
nullable: true
type: object
userData:
nullable: true
type: string
version:
nullable: true
type: string
required:
- nodegroupName
type: object
nullable: true
type: array
privateAccess:
nullable: true
type: boolean
publicAccess:
nullable: true
type: boolean
publicAccessSources:
items:
nullable: true
type: string
nullable: true
type: array
region:
nullable: true
type: string
secretsEncryption:
nullable: true
type: boolean
securityGroups:
items:
nullable: true
type: string
nullable: true
type: array
serviceRole:
nullable: true
type: string
subnets:
items:
nullable: true
type: string
nullable: true
type: array
tags:
additionalProperties:
nullable: true
type: string
nullable: true
type: object
type: object
status:
properties:
failureMessage:
nullable: true
type: string
managedLaunchTemplateID:
nullable: true
type: string
managedLaunchTemplateVersions:
additionalProperties:
nullable: true
type: string
nullable: true
type: object
networkFieldsSource:
nullable: true
type: string
phase:
nullable: true
type: string
securityGroups:
items:
nullable: true
type: string
nullable: true
type: array
subnets:
items:
nullable: true
type: string
nullable: true
type: array
templateVersionsToDelete:
items:
nullable: true
type: string
nullable: true
type: array
virtualNetwork:
nullable: true
type: string
type: object
type: object
version: v1
versions:
- name: v1
served: true
storage: true

View File

@ -0,0 +1,18 @@
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
description: A Helm chart for provisioning EKS clusters
home: https://github.com/rancher/eks-operator
name: rancher-eks-operator
sources:
- https://github.com/rancher/eks-operator
version: 2.0.100

View File

@ -0,0 +1,4 @@
You have deployed the Rancher EKS operator
Version: {{ .Chart.AppVersion }}
Description: This operator provisions EKS clusters
from EKSClusterConfig CRs.

View File

@ -0,0 +1,9 @@
{{/* vim: set filetype=mustache: */}}
{{- define "system_default_registry" -}}
{{- if .Values.global.systemDefaultRegistry -}}
{{- printf "%s/" .Values.global.systemDefaultRegistry -}}
{{- else -}}
{{- "" -}}
{{- end -}}
{{- end -}}

View File

@ -0,0 +1,15 @@
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: eks-operator
namespace: cattle-system
rules:
- apiGroups: ['']
resources: ['secrets']
verbs: ['get', 'list', 'create', 'watch']
- apiGroups: ['eks.cattle.io']
resources: ['eksclusterconfigs']
verbs: ['get', 'list', 'update', 'watch']
- apiGroups: ['eks.cattle.io']
resources: ['eksclusterconfigs/status']
verbs: ['update']

View File

@ -0,0 +1,13 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: eks-operator
namespace: cattle-system
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: eks-operator
subjects:
- kind: ServiceAccount
name: eks-operator
namespace: cattle-system

View File

@ -0,0 +1,27 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: eks-config-operator
namespace: cattle-system
spec:
replicas: 1
selector:
matchLabels:
ke.cattle.io/operator: eks
template:
metadata:
labels:
ke.cattle.io/operator: eks
spec:
serviceAccountName: eks-operator
containers:
- name: eks-operator
image: {{ template "system_default_registry" . }}{{ .Values.eksOperator.image.repository }}:{{ .Values.eksOperator.image.tag }}
imagePullPolicy: IfNotPresent
env:
- name: HTTP_PROXY
value: {{ .Values.httpProxy }}
- name: HTTPS_PROXY
value: {{ .Values.httpsProxy }}
- name: NO_PROXY
value: {{ .Values.noProxy }}

View File

@ -0,0 +1,5 @@
apiVersion: v1
kind: ServiceAccount
metadata:
namespace: cattle-system
name: eks-operator

View File

@ -0,0 +1,11 @@
global:
systemDefaultRegistry: ""
eksOperator:
image:
repository: rancher/eks-operator
tag: v2.0.1-rc1
httpProxy: ""
httpsProxy: ""
noProxy: ""

View File

@ -12,9 +12,9 @@ entries:
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.5
created: "2021-04-27T19:45:38.918150796Z"
created: "2021-04-27T23:04:58.89442753Z"
description: Fleet Manager - GitOps at Scale
digest: 23f4183f01bb515745825641a3c5fd3326dc473e5f494193a0e8ce7956438845
digest: ebdef8cd980d8b01390546fd1791152cbba905c1c4f1ac47cf92ffdd24010d29
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-27T19:45:38.920724602Z"
created: "2021-04-27T23:04:58.897637555Z"
description: Fleet Manager Agent - GitOps at Scale
digest: 8cc5a1bedbb9428874a2e60360d4d1c0f832ef7d1c1bf5108179cbd11d76f155
digest: 73b66ca22006a8b0be6471deddb794b9b3c90d1f8f02b440f2b7f45a2f836951
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-27T19:45:38.925675414Z"
created: "2021-04-27T23:04:58.902904896Z"
description: Fleet Manager CustomResourceDefinitions
digest: 8bb0dae4b3c312744a22f5dc66fc22c6d43716c1c6b7519f4e54693225435f2d
digest: 1193c9fb26392a50a047656ffa944ed60f80c0f373fbf8a7d522f0da87be54c6
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-27T19:45:38.932672131Z"
created: "2021-04-27T23:04:58.909590047Z"
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: f474c7e57ed7cdae495fb85ac7917472b1502a9aad6bf08e4a04dee1e700042c
digest: ee392c1726b2b8d6921c2668a7247029ed2d93efdcffad8fb21937285d9d8d59
keywords:
- monitoring
- alertmanger
@ -566,10 +566,10 @@ entries:
catalog.cattle.io/ui-component: rancher-backup
apiVersion: v2
appVersion: 1.0.4
created: "2021-04-27T19:45:38.935220637Z"
created: "2021-04-27T23:04:58.912131867Z"
description: Provides ability to back up and restore the Rancher application running
on any Kubernetes cluster
digest: 48b7b9eb997b229b60c439cf957a61600966c04da49dc0f45522bfe7b321dbf5
digest: 8db21b325293b4e022ec5399ef2de8b364cf927a1d382cf5e9ec460149a9d4db
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-27T19:45:38.936593041Z"
created: "2021-04-27T23:04:58.913056774Z"
description: Installs the CRDs for rancher-backup.
digest: 09b869b712b27edd226e4e1032b16dec27b1f87629664a4f25f77cf24d02a509
digest: db8db88eae23449d43b05b93feb2bda0b9e2f0978173c245269fd9994cf0bb27
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-27T19:45:38.941273352Z"
created: "2021-04-27T23:04:58.917575209Z"
description: The cis-operator enables running CIS benchmark security scans on
a kubernetes cluster
digest: 4d9a13e47f5001f1962fd17cc0ed57b418dd306885e5ca2bed4f8b84ec1c7ef8
digest: cfbf3840d0fb1a016e3d2581a50c4adb3757e8e92bb9c42f4cea4677700d3026
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-27T19:45:38.94063545Z"
created: "2021-04-27T23:04:58.916929504Z"
description: The cis-operator enables running CIS benchmark security scans on
a kubernetes cluster
digest: a2d9345717f194a4623ad447b468144ab4dce294e706bdcbf6e7f811b2646c89
digest: bed1e0cbed0c0ea4b9b4ae0f7e9529661b18eeb1d56d521e7c219927e22c8445
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-27T19:45:38.942422755Z"
created: "2021-04-27T23:04:58.918677218Z"
description: Installs the CRDs for rancher-cis-benchmark.
digest: 26f48fb0737467e4d9807a69c2d09ed1ebbe939229f182a4c8ba421b752555f3
digest: 7347c056b0ffda004de07d6d1f3a9cd5cb1300995ee15ab50b65da729dd90ade
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-27T19:45:38.942219154Z"
created: "2021-04-27T23:04:58.918500116Z"
description: Installs the CRDs for rancher-cis-benchmark.
digest: 35571eff210a662abd4044b00aad8d99fc2158dca83828f2bdd36d4aa026e6b3
digest: 9d3b0bac73c84cf61b0ccb9933ccdbf655266172d82f5c6c095d0184bad2d8c1
name: rancher-cis-benchmark-crd
type: application
urls:
@ -962,6 +962,45 @@ entries:
urls:
- assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.100.tgz
version: 1.0.100
rancher-eks-operator:
- 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-04-27T23:04:58.91893922Z"
description: A Helm chart for provisioning EKS clusters
digest: 5a9cea8c93cb7885baef66b98ae156bb302499c047bb73244f4e14c561b5a16a
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.tgz
version: 2.0.100
rancher-eks-operator-crd:
- 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-04-27T23:04:58.919092121Z"
description: EKS Operator CustomResourceDefinitions
digest: b1c1bb6540610d39e89cb2eb5705dbb2052fc51a728b697ddf2bf80e5e490029
name: rancher-eks-operator-crd
urls:
- assets/rancher-eks-operator-crd/rancher-eks-operator-crd-2.0.100.tgz
version: 2.0.100
rancher-external-ip-webhook:
- annotations:
catalog.cattle.io/certified: rancher
@ -1059,10 +1098,10 @@ entries:
catalog.cattle.io/ui-component: gatekeeper
apiVersion: v1
appVersion: v3.3.0
created: "2021-04-27T19:45:38.94852637Z"
created: "2021-04-27T23:04:58.924926166Z"
description: Modifies Open Policy Agent's upstream gatekeeper chart that provides
policy-based control for cloud native environments
digest: c6e4dd3de3fc288995780c2150432a92be17f221f42eb635e713299164c39a4b
digest: c9d5878f3116cd70878ba050446ac1c3d66437c3c140b798c34bc03f62f6129f
home: https://github.com/open-policy-agent/gatekeeper
icon: https://charts.rancher.io/assets/logos/gatekeeper.svg
keywords:
@ -1185,9 +1224,9 @@ entries:
catalog.cattle.io/namespace: cattle-gatekeeper-system
catalog.cattle.io/release-name: rancher-gatekeeper-crd
apiVersion: v1
created: "2021-04-27T19:45:38.950822875Z"
created: "2021-04-27T23:04:58.926866081Z"
description: Installs the CRDs for rancher-gatekeeper.
digest: 600817732dd2bc56f2a1b23c37e31bacbe40b25e393311f00241287db14563e1
digest: 28273f70eaf5f87551cd5da993b1935ab40d4730511aa2f175f9c698271efa95
name: rancher-gatekeeper-crd
type: application
urls:
@ -1261,9 +1300,9 @@ entries:
catalog.rancher.io/release-name: rancher-grafana
apiVersion: v2
appVersion: 7.4.5
created: "2021-04-27T19:45:38.953235281Z"
created: "2021-04-27T23:04:58.929427501Z"
description: The leading tool for querying and visualizing time series and metrics.
digest: cdad87c7ef11d31d22fc76be7838ab66f1a83dd9ae4356db0e7273b5f0a559a2
digest: b881c927d766b16c91bedfba8a4b2d576f5eb21076e85cc90ff7f304aacd6ca1
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 +1338,7 @@ entries:
catalog.cattle.io/ui-component: istio
apiVersion: v1
appVersion: 1.9.3
created: "2021-04-27T19:45:38.97366433Z"
created: "2021-04-27T23:04:58.949711058Z"
dependencies:
- condition: kiali.enabled
name: kiali
@ -1309,7 +1348,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: eafd8a7c58cc360e1ac4f13bcb7bcc113efbc99e9e1468d94f89d3d92c36e681
digest: 43da8ca0bb4098f8d65b80fcde1df4acf5156aed8cf184ee972a35ccf40e0f04
icon: https://charts.rancher.io/assets/logos/istio.svg
keywords:
- networking
@ -1331,7 +1370,7 @@ entries:
catalog.cattle.io/ui-component: istio
apiVersion: v1
appVersion: 1.9.2
created: "2021-04-27T19:45:38.971513925Z"
created: "2021-04-27T23:04:58.947518141Z"
dependencies:
- condition: kiali.enabled
name: kiali
@ -1341,7 +1380,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: 37d5e1f067f9ad9b8550496a4249c5a8265279349c7c8772b3d673055488b3dd
digest: 796581d6ec3ba318ab783577252dfa70cb6c594a34be1ef19216db212a11a27e
icon: https://charts.rancher.io/assets/logos/istio.svg
keywords:
- networking
@ -1363,7 +1402,7 @@ entries:
catalog.cattle.io/ui-component: istio
apiVersion: v1
appVersion: 1.8.5
created: "2021-04-27T19:45:38.969150919Z"
created: "2021-04-27T23:04:58.945209623Z"
dependencies:
- condition: kiali.enabled
name: kiali
@ -1373,7 +1412,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: 91093bdf6c305b87810cd984e3224406ca4ba68d6d203d06ee7c436e417d2a59
digest: 5a44723480785e7829c802d4d1e672fad672faceaa8a49ef455e1aa5f5156cbe
icon: https://charts.rancher.io/assets/logos/istio.svg
keywords:
- networking
@ -1395,7 +1434,7 @@ entries:
catalog.cattle.io/ui-component: istio
apiVersion: v1
appVersion: 1.8.4
created: "2021-04-27T19:45:38.966365413Z"
created: "2021-04-27T23:04:58.941592895Z"
dependencies:
- condition: kiali.enabled
name: kiali
@ -1405,7 +1444,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: edfdabc75da3e64ea69d8736aeb4ad825a6f9af933580cf8c9b4cd7007e493ea
digest: 4c00d94e6dbcd50956f146a6d120a6947d6a244d3092bc60b852ce955abe5c7b
icon: https://charts.rancher.io/assets/logos/istio.svg
keywords:
- networking
@ -1427,7 +1466,7 @@ entries:
catalog.cattle.io/ui-component: istio
apiVersion: v1
appVersion: 1.8.3
created: "2021-04-27T19:45:38.963420806Z"
created: "2021-04-27T23:04:58.939377078Z"
dependencies:
- condition: kiali.enabled
name: kiali
@ -1437,7 +1476,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: 5345f8af02b0ef78d876aa15f1b89f1b30034f1b6bc4203c8373d93df296a804
digest: 4f2cfad0c57935aa4abdae690363a74a96675fbd86dbef92aaf5d7c153e4bc26
icon: https://charts.rancher.io/assets/logos/istio.svg
keywords:
- networking
@ -1581,11 +1620,11 @@ entries:
catalog.rancher.io/release-name: rancher-kiali-server
apiVersion: v2
appVersion: v1.32.0
created: "2021-04-27T19:45:38.979733145Z"
created: "2021-04-27T23:04:58.955517503Z"
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: 8047f05f527a30552ea06ea37e7099af85a4f34f35ea7c77125d9598fa195c17
digest: ab0c6d215943a408bc5b3ca77b6680f12d7744a297b17866e5da36a591ddbb8c
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 +1655,11 @@ entries:
catalog.rancher.io/release-name: rancher-kiali-server
apiVersion: v2
appVersion: v1.29.0
created: "2021-04-27T19:45:38.978616242Z"
created: "2021-04-27T23:04:58.954514295Z"
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: a7d9b9318217e0bd6cb197b4caf0e09afb48d41305e8280415133f235fba79e5
digest: cdaaa1575a9e9e109bfada02cfc671597d9aaaa5b1f90c3c92f395f87effe9d3
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 +1824,9 @@ entries:
- annotations:
catalog.cattle.io/hidden: "true"
apiVersion: v2
created: "2021-04-27T19:45:38.981414749Z"
created: "2021-04-27T23:04:58.956247409Z"
description: Installs the CRDs for rancher-kiali-server.
digest: d6002375e7fdb3c1d5aeed203eaa129659acaf6f0ddb0e6b3ff7831b733394b7
digest: fb7bd23377f86e8242f46b1824e3c5bf4085d7280eae6cad942d925bf0453e60
name: rancher-kiali-server-crd
type: application
urls:
@ -1796,9 +1835,9 @@ entries:
- annotations:
catalog.cattle.io/hidden: "true"
apiVersion: v2
created: "2021-04-27T19:45:38.981245349Z"
created: "2021-04-27T23:04:58.956125208Z"
description: Installs the CRDs for rancher-kiali-server.
digest: bbdfd6a5c261fa0bec004f2fd9f43e964ac5981c3671218bb4c43bb31fced64d
digest: 70c35cd6869fef5b7a84227b919c5085bb13a7877dc5aea9d8b5582c114c02eb
name: rancher-kiali-server-crd
type: application
urls:
@ -1857,9 +1896,9 @@ entries:
catalog.rancher.io/release-name: rancher-kube-state-metrics
apiVersion: v1
appVersion: 1.9.8
created: "2021-04-27T19:45:38.983186353Z"
created: "2021-04-27T23:04:58.957933322Z"
description: Install kube-state-metrics to generate and expose cluster-level metrics
digest: 449d0ffe28d2fbd246dcf52d817032660a2fd1656162e9593057439f13a8d3af
digest: 7daf86b6ca985eb4445d746990a51ba89a2a375b2b56a76efb0a5a774ab3e538
home: https://github.com/kubernetes/kube-state-metrics/
keywords:
- metric
@ -1888,10 +1927,10 @@ entries:
catalog.cattle.io/ui-component: logging
apiVersion: v1
appVersion: 3.9.4
created: "2021-04-27T19:45:38.98993667Z"
created: "2021-04-27T23:04:58.96542158Z"
description: Collects and filter logs using highly configurable CRDs. Powered
by Banzai Cloud Logging Operator.
digest: 7016cfa9329577484a17e383ceb5931c7a286b3f0d781b24b23f465b9ce3f90c
digest: 44e313ddad61ac37745724058f8ee776d9c0c83c0648647f478bdbd9f8b233fc
icon: https://charts.rancher.io/assets/logos/logging.svg
keywords:
- logging
@ -1912,10 +1951,10 @@ entries:
catalog.cattle.io/ui-component: logging
apiVersion: v1
appVersion: 3.9.0
created: "2021-04-27T19:45:38.988848867Z"
created: "2021-04-27T23:04:58.964338371Z"
description: Collects and filter logs using highly configurable CRDs. Powered
by Banzai Cloud Logging Operator.
digest: da374efe431b05cef625b62122b540a2ecb1aebfc28603b150009add6a5e3ba8
digest: c2b291bb44205a3cb6f0f2b8151ee3e3d8a1b9d44e66f537acedf57208bccef0
icon: https://charts.rancher.io/assets/logos/logging.svg
keywords:
- logging
@ -1936,10 +1975,10 @@ entries:
catalog.cattle.io/ui-component: logging
apiVersion: v1
appVersion: 3.9.0
created: "2021-04-27T19:45:38.987826965Z"
created: "2021-04-27T23:04:58.963345964Z"
description: Collects and filter logs using highly configurable CRDs. Powered
by Banzai Cloud Logging Operator.
digest: 89f37f0eb8e725f4e55be83e3b43d1688ecf4932fbb7aafddabae15113a860b6
digest: 09edf02977701c5d18daf8a0777a9f9bf61f81c97f54c92eca6fa518cea1c70c
icon: https://charts.rancher.io/assets/logos/logging.svg
keywords:
- logging
@ -2051,9 +2090,9 @@ entries:
catalog.cattle.io/namespace: cattle-logging-system
catalog.cattle.io/release-name: rancher-logging-crd
apiVersion: v1
created: "2021-04-27T19:45:39.002811901Z"
created: "2021-04-27T23:04:58.976238664Z"
description: Installs the CRDs for rancher-logging.
digest: d84ca2553a56558b780a75f149d7e04bf576dda82183ea84e45780e14acdf50b
digest: a4fbbfe66f2e5e27228670b52284b9dee055d1d9d48d6316e18b94a3611867ab
name: rancher-logging-crd
type: application
urls:
@ -2065,9 +2104,9 @@ entries:
catalog.cattle.io/namespace: cattle-logging-system
catalog.cattle.io/release-name: rancher-logging-crd
apiVersion: v1
created: "2021-04-27T19:45:39.000766596Z"
created: "2021-04-27T23:04:58.974187648Z"
description: Installs the CRDs for rancher-logging.
digest: 6a5b35443a88931401ced021f93d40886114d41698e5672edf22edc7bf9f078c
digest: a4baa1e6567f9d60b3705089aa26c1750f637b6e21a58e798c41600eb5f0822b
name: rancher-logging-crd
type: application
urls:
@ -2079,9 +2118,9 @@ entries:
catalog.cattle.io/namespace: cattle-logging-system
catalog.cattle.io/release-name: rancher-logging-crd
apiVersion: v1
created: "2021-04-27T19:45:38.998594891Z"
created: "2021-04-27T23:04:58.972420034Z"
description: Installs the CRDs for rancher-logging.
digest: a19f5ce3a240b28fe307e49c8acf4886f39b3416bb11598f9944634a353cbf1e
digest: 40e316c03804e364e503398a33a6ee0ca7955f287567305ae2d0e26d3a7f5936
name: rancher-logging-crd
type: application
urls:
@ -2162,7 +2201,7 @@ entries:
catalog.cattle.io/ui-component: monitoring
apiVersion: v2
appVersion: 0.46.0
created: "2021-04-27T19:45:39.028899164Z"
created: "2021-04-27T23:04:58.999192541Z"
dependencies:
- condition: grafana.enabled
name: grafana
@ -2221,7 +2260,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: 4b2b677f9f01156e22d3636a5c7db181e6771464ed3821506c5b6cf5d0882f68
digest: f85a4c2e6ed140c828b1fbc91991b8f9cce5faac1c982b58330ac76eb85bcf5c
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 +2308,7 @@ entries:
catalog.cattle.io/ui-component: monitoring
apiVersion: v1
appVersion: 0.38.1
created: "2021-04-27T19:45:39.13875093Z"
created: "2021-04-27T23:04:59.099835721Z"
dependencies:
- condition: grafana.enabled
name: grafana
@ -2328,7 +2367,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: 09a61135cdefc6ac831cca167d0f232b8e73199ccbc3feda23c0a14c47cbeaf4
digest: 85fe35607fb2f0eca97cea2114d7beee8b12816db0bfd5686caf1b2b7ae61766
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 +2901,9 @@ entries:
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/release-name: rancher-monitoring-crd
apiVersion: v1
created: "2021-04-27T19:45:39.143294541Z"
created: "2021-04-27T23:04:59.104220055Z"
description: Installs the CRDs for rancher-monitoring.
digest: da5c4a022ed0e22a123a0fb0e1467162d6a017f873dc8b4323a99daedb154529
digest: 8b71af986cfa659b45216fcdf931ff3db5c2efb3378b04283556fed964466a26
name: rancher-monitoring-crd
type: application
urls:
@ -2876,9 +2915,9 @@ entries:
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/release-name: rancher-monitoring-crd
apiVersion: v1
created: "2021-04-27T19:45:39.169744905Z"
created: "2021-04-27T23:04:59.128652344Z"
description: Installs the CRDs for rancher-monitoring.
digest: ec3b699a059aba5ba4c83e6f9aaaf09f3b1c04b39e000699696908b99f645cec
digest: d6dce488c18421d2cb571480b9a6aa18b494bdf91ffe32dad976f352bfc32988
name: rancher-monitoring-crd
type: application
urls:
@ -2949,9 +2988,9 @@ entries:
catalog.rancher.io/release-name: rancher-node-exporter
apiVersion: v1
appVersion: 1.1.2
created: "2021-04-27T19:45:39.170645907Z"
created: "2021-04-27T23:04:59.12948015Z"
description: A Helm chart for prometheus node-exporter
digest: 1a4b5162f07d23ea3c4346d0ba251fee80c4cdef6b1670bc257de7d1d2132be9
digest: 0166360939ca7aa12c884394c7b500e086e8b142c19620a65f31a8bb8fc1d164
home: https://github.com/prometheus/node_exporter/
keywords:
- node-exporter
@ -2980,9 +3019,9 @@ entries:
catalog.cattle.io/release-name: rancher-operator
apiVersion: v2
appVersion: 0.1.4
created: "2021-04-27T19:45:39.172184011Z"
created: "2021-04-27T23:04:59.130656759Z"
description: Control Rancher using GitOps
digest: f31f28b5114b66d0805a74728f2fd4143d64eb339219322515c4f19ecc681c78
digest: 064577ca757eb1af9162eeb3e9720f35bb042cfd5475ed0dc23deeb949840f4d
name: rancher-operator
urls:
- assets/rancher-operator/rancher-operator-0.1.400.tgz
@ -3068,9 +3107,9 @@ entries:
catalog.cattle.io/release-name: rancher-operator-crd
apiVersion: v2
appVersion: 0.1.4
created: "2021-04-27T19:45:39.17580862Z"
created: "2021-04-27T23:04:59.133647882Z"
description: Rancher Operator CustomResourceDefinitions
digest: cd986fb0ec2d03faf4ca5a269a806d19144f3f93d4aa0be25632b2111d3bbf5e
digest: 74fa16fe3a79cd5585cf4b6ad8ff96b908642425705c6df69ac329158309395d
name: rancher-operator-crd
urls:
- assets/rancher-operator-crd/rancher-operator-crd-0.1.400.tgz
@ -3141,9 +3180,9 @@ entries:
catalog.cattle.io/release-name: rancher-prom2teams
apiVersion: v1
appVersion: 3.2.1
created: "2021-04-27T19:45:39.176655922Z"
created: "2021-04-27T23:04:59.134464389Z"
description: A Helm chart for Prom2Teams based on the upstream https://github.com/idealista/prom2teams
digest: a05317eff0b455a37789649b99243b96f502c27771a7903f44fcd891226b5ee5
digest: 79a359d1b94cc90593aed1b44a7611d839bc117416295f160f26061b346fb76b
name: rancher-prom2teams
urls:
- assets/rancher-prom2teams/rancher-prom2teams-0.2.000.tgz
@ -3157,9 +3196,9 @@ entries:
catalog.rancher.io/release-name: rancher-prometheus-adapter
apiVersion: v1
appVersion: v0.8.3
created: "2021-04-27T19:45:39.178182325Z"
created: "2021-04-27T23:04:59.135410696Z"
description: A Helm chart for k8s prometheus adapter
digest: d559bea5ed14dd74e5b53f1739e10b0164597694b084cd2ffd8f200d01e0ffbc
digest: c82859e252b98b866ca0938f26c19c2bb27d327f1b678d59d22b7dbb75193f06
home: https://github.com/DirectXMan12/k8s-prometheus-adapter
keywords:
- hpa
@ -3188,10 +3227,10 @@ entries:
catalog.rancher.io/release-name: rancher-pushprox
apiVersion: v1
appVersion: 0.1.0
created: "2021-04-27T19:45:39.181612434Z"
created: "2021-04-27T23:04:59.138210618Z"
description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx
clients.
digest: 0725de696253d1f69a7da9e3251ff5d6c94694242945af1515baa1b3f36e7dbf
digest: 0f8d3c9d60bf445ea1b94a825afe4a05cb001cf9978372dd4238a20ab8a6e879
name: rancher-pushprox
type: application
urls:
@ -3271,9 +3310,9 @@ entries:
catalog.cattle.io/release-name: rancher-sachet
apiVersion: v2
appVersion: 0.2.3
created: "2021-04-27T19:45:39.182255335Z"
created: "2021-04-27T23:04:59.138697622Z"
description: A Helm chart for Sachet based on the upstream https://github.com/messagebird/sachet
digest: 5217f61e7400b0cdc8f0fbc1548ca42f99556dd139e844773ffe299efcf9b6ec
digest: b9387458ca2eb4dc787a17a9b476d8442049cf22d091cbfbc6395968821bda34
name: rancher-sachet
type: application
urls:
@ -3288,11 +3327,11 @@ entries:
catalog.rancher.io/release-name: rancher-tracing
apiVersion: v1
appVersion: 1.20.0
created: "2021-04-27T19:45:39.183872739Z"
created: "2021-04-27T23:04:59.139987532Z"
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: e881270052ec8b222d442918c616e215a398b261d87f8bcc69b3e5ecc1811a76
digest: 7d52a11b7a7cecb9e70b96e5f43ea76c92e3ee5a9dfca4fdb1071952755a52af
name: rancher-tracing
urls:
- assets/rancher-tracing/rancher-tracing-1.20.100.tgz
@ -3388,13 +3427,13 @@ entries:
catalog.cattle.io/release-name: rancher-webhook
apiVersion: v2
appVersion: 0.2.0-alpha
created: "2021-04-27T19:45:39.186932347Z"
created: "2021-04-27T23:04:59.142504751Z"
dependencies:
- condition: capi.enabled
name: capi
repository: ""
description: ValidatingAdmissionWebhook for Rancher types
digest: f81479938a02424fc767cf4e4d8288777c347cf2d41eedaa0495f98afb285d04
digest: 4fdcd4df03566c6bef74a29d2cd6e7a2baa7fa2e9b82479a2a63f8d29bcb0d09
name: rancher-webhook
urls:
- assets/rancher-webhook/rancher-webhook-0.2.0-alpha01.tgz
@ -3407,9 +3446,9 @@ entries:
catalog.cattle.io/release-name: rancher-webhook
apiVersion: v2
appVersion: 0.1.0
created: "2021-04-27T19:45:39.186561746Z"
created: "2021-04-27T23:04:59.142168948Z"
description: ValidatingAdmissionWebhook for Rancher types
digest: 358ec684e910085213f080d0f5fab19367952a5e035ab1f8c53fddab6fa26612
digest: 6a7aad08de61d935c67241c222c2fcf55c3f48fc4bcb354023d4c2069b860add
name: rancher-webhook
urls:
- assets/rancher-webhook/rancher-webhook-0.1.000.tgz
@ -3483,9 +3522,9 @@ entries:
catalog.rancher.io/release-name: rancher-windows-exporter
apiVersion: v1
appVersion: 0.0.4
created: "2021-04-27T19:45:39.187479848Z"
created: "2021-04-27T23:04:59.142972455Z"
description: Sets up monitoring metrics from Windows nodes via Prometheus windows-exporter
digest: 8751903b1c599d13071ebb7c6aa9f2527fdbec78cc4cb492b9ba6d92a998086a
digest: 09b3352376209dc2881e0e57a3da3e79e61a7944990c11895b3653904ff24715
maintainers:
- email: arvind.iyengar@rancher.com
name: aiyengar2
@ -3502,10 +3541,10 @@ entries:
catalog.cattle.io/release-name: rancher-wins-upgrader
apiVersion: v2
appVersion: 0.1.0
created: "2021-04-27T19:45:39.188114649Z"
created: "2021-04-27T23:04:59.143459558Z"
description: Manages upgrading the wins server version and configuration across
all of your Windows nodes
digest: 0fe695367e7b263394b141d46f9a68cd6ac3fbfab2e6bc56c884c6c208f2aa3c
digest: 4dcd573a1af4fb30db2e9936d768fe65a41267fecaa53975a51147010446e51f
maintainers:
- email: arvind.iyengar@suse.com
name: aiyengar2
@ -3563,9 +3602,9 @@ entries:
catalog.cattle.io/release-name: system-upgrade-controller
apiVersion: v1
appVersion: v0.7.0
created: "2021-04-27T19:45:39.189612953Z"
created: "2021-04-27T23:04:59.144561967Z"
description: General purpose controller to make system level updates to nodes
digest: a2a47b4e9827276162b67e3d562d8eb4407a295d0f25508f9be9921fd66b02b6
digest: c41f06f627535889615d2d29a4f5d98b3d9f20041cce892cadbdfd3e5fc74cb2
home: https://github.com/rancher/system-charts/charts/system-upgrade-controller
name: system-upgrade-controller
sources: