mirror of https://git.rancher.io/charts
Clean up old charts from merge
parent
a012444f66
commit
915ac0edec
200
README.md
200
README.md
|
@ -1,199 +1,3 @@
|
|||
## charts
|
||||
# Asset Branch
|
||||
|
||||
This is charts repo to automate system charts and adding overlays files on top of it.
|
||||
|
||||
Charts will have two categories:
|
||||
|
||||
1. Charts that Rancher created and maintained (**Rancher original**).
|
||||
|
||||
2. Charts that Rancher modified from upstream (**Rancher modified**).
|
||||
|
||||
**Rancher original** chart is created and maintained by Rancher Team, such as rancher-cis-benchmark, rancher-k3s-upgrader.
|
||||
|
||||
**Rancher modified** chart is modified from upstream chart, while there are customizations added into the upstream chart from rancher side.
|
||||
|
||||
For **Rancher original** charts, it should have the following tree structure
|
||||
|
||||
```text
|
||||
packages/${CHART_NAME}/
|
||||
charts/ # regular helm chart directory
|
||||
templates/
|
||||
Chart.yaml
|
||||
values.yaml
|
||||
```
|
||||
|
||||
For **Rancher original** charts with a crds directory, it should have the following tree structure
|
||||
|
||||
```text
|
||||
packages/${CHART_NAME}/
|
||||
package.yaml # metadata manifest to enable or disable crds generation
|
||||
charts/ # regular helm chart directory
|
||||
templates/
|
||||
crds/
|
||||
Chart.yaml
|
||||
values.yaml
|
||||
```
|
||||
|
||||
For **Rancher modified** charts, it should have the following tree structure
|
||||
|
||||
```text
|
||||
packages/${CHART_NAME}/
|
||||
package.yaml # metadata manifest containing upstream chart location, package version
|
||||
${CHART_NAME}.patch # patch file containing the diff between modified chart and upstream
|
||||
overlay/* # overlay files that needs to added on top of upstream, for example, questions.yaml
|
||||
```
|
||||
|
||||
A regular `package.yaml` will have the following content:
|
||||
|
||||
```yaml
|
||||
url: https://charts.bitnami.com/bitnami/external-dns-2.20.10.tgz # url to fetch upstream chart, omit this field for a rancher original chart
|
||||
packageVersion: 00 # packageVersion of modified charts, producing a $version-$packageVersion chart. For example, if istio 1.4.7 is modified with changes, rancher produces a 1.4.700 chart version that includes the modification rancher made on top of upstream charts.
|
||||
generateCRDChart:
|
||||
enabled: true
|
||||
```
|
||||
|
||||
Here is an **example** of upstream chart based on git repository
|
||||
|
||||
```yaml
|
||||
url: https://github.com/open-policy-agent/gatekeeper.git # Url to fetch upstream chart from git
|
||||
subdirectory: chart/gatekeeper-operator # Sub directory for helm charts in git repo
|
||||
type: git # optinal, indicate that upstream chart is from git
|
||||
commit: v3.1.0-beta.8 # the revision of git repo
|
||||
packageVersion: 00 # package version
|
||||
generateCRDChart:
|
||||
enabled: true
|
||||
```
|
||||
|
||||
Here is an **example** of local chart with a crds directory
|
||||
|
||||
```yaml
|
||||
generateCRDChart:
|
||||
enabled: true
|
||||
```
|
||||
|
||||
### Workflow
|
||||
|
||||
Modifying **Rancher original** charts is the same workflow as modifying helm charts. First make changes into `charts/` and commit changes. CI will automatically upload artifacts if file contents have been changed.
|
||||
|
||||
Modifying **Rancher modified** takes extra steps, as it requires modifications to be saved into patch files so that later it can retrieve the chart based on upstream chart and patch files.
|
||||
|
||||
The step includes:
|
||||
|
||||
1. Run `make CHART={CHART_NAME} prepare`
|
||||
|
||||
This prepares `charts` with the current upstream chart and current patch.
|
||||
|
||||
2. Change the version in `package.yaml`. If upstream chart needs to be updated, update url to point the latest chart. `packageVersion` also needs to updated.
|
||||
|
||||
3. Make modification to your charts.
|
||||
|
||||
4. Run `make CHART={CHART_NAME} patch`
|
||||
|
||||
This will compare your current chart with upstream chart and generate the correct patch.
|
||||
|
||||
5. Run `make CHART={CHART_NAME} clean`
|
||||
|
||||
This will clean up the `charts` directory so that it won't be committed.
|
||||
|
||||
This repo provides a [workflow](./.github/workflows) that automatically uploads patch files and tarball of charts. Commit will only need to update `package/${chart-name}/charts` and make sure patches are
|
||||
up-to-date with the latest chart. It also automatically build github pages to serve `index.yaml` and artifacts of charts.
|
||||
|
||||
### Experimental: Splitting CRDs from an upstream package into a separate package
|
||||
|
||||
**Note to Contributers:** This flag can only be used to create separate CRD charts if your chart meets the following three requirements:
|
||||
- The chart defines one or more CRDs
|
||||
- The chart is based on an upstream chart and includes a `package.yaml` (if this is not the case, you will need to manually create a separate CRD chart)
|
||||
- The chart tries to install some default CRs based on the CRDs that it defines (if this is not the case, you should place the CRDs directly within the `templates/` directory of the chart; using a CRD chart is only necessary since rendering the chart will fail since the `kind` of the default CRs cannot be found in the cluster as the CRD is not installed yet).
|
||||
|
||||
There are cases in which upstream charts import CRDs into a cluster using the Helm 3 `crd/` directory, which allows a user to first install the CRDs before rendering the templates created by the chart. However, using this approach has certain caveats [as documented by Helm](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/), such as an inability to upgrade / delete those CRDs and or use the `--dry-run` flag on the package before installing the CRDs. As a result, it may be advised to move those CRDs into a separate chart under the `templates/` directory so that the lifecycle of those CRDs can continue to be managed by Helm.
|
||||
|
||||
However, in the current `rancher/charts` model, this would require deleting the CRDs from the upstream chart (which introduces significant changes to the package's patch) and maintaining a separate CRD chart that also needs to be kept up to date with the upstream chart. This poses several challenges, including but not limited to:
|
||||
- Keeping the version of the Rancher chart and the CRD chart consistent
|
||||
- Keeping the annotations added to the CRD chart in line with those added to the Rancher chart
|
||||
- Adding a validation YAML to the Rancher chart to direct the user to install the CRD chart before installing the Rancher chart if CRDs do not currently exist on the server
|
||||
- Viewing the patch between the CRDs introduced by the upstream chart and the CRDs within the CRD chart
|
||||
|
||||
To resolve this, `rancher/charts` has a flag that can be added to the `package.yaml` of any Rancher chart that allows you to specify `generateCRDChart.enabled=true`. When this mode is enabled, the following changes are applied during each step of the `rancher/charts` developer workflow:
|
||||
|
||||
1. On running `make CHART={CHART_NAME} prepare:
|
||||
|
||||
After running the default prepare script to pull the chart from upstream and apply the patch, a new directory called `charts-crd` is also created alongside `charts`. This will represent your new CRD chart. Any CRDs located within the Rancher chart in `charts/crd/` will be relocated to `charts-crd/templates/` and a new `charts-crd/Chart.yaml` (with chart names `{CHART_NAME}-crd`) and `charts-crd/README.md` will be generated. The `charts-crd/Chart.yaml` and `charts/Chart.yaml` will also be updated with the relevant annotations used by Rancher to auto-install the CRD chart from Dashboard.
|
||||
|
||||
If you are using the `generateCRDChart.assumeOwnershipOfCRDs` flag, the CRDs will instead be located in `charts-crd/crd-manifest/*` and some additional resources (ConfigMap, Jobs, and RBAC resources) will be created in the `charts-crd/templates` directory instead. This option should only be enabled if the chart is expected to be deployed in a setting where all or a subset of your CRDs may or may not already exist, in which case your CRD chart may want to assume ownership of the CRDs to prevent a failure on deploy.
|
||||
|
||||
In addition, a new file `charts/templates/validate-install-${CHART_NAME}-crd.yaml` will be added to your Rancher chart that is automatically configured to validate whether the CRDs that have been moved to the CRD chart are installed onto your cluster before trying to render the Rancher chart. For example, here is an error you might encounter if you try to install the Rancher chart first:
|
||||
|
||||
```
|
||||
Error: execution error at ({CHART_NAME}/templates/validate-install-{CHART_NAME}-crd.yaml:15:5): Required CRDs are missing. Please install the {CHART_NAME}-crd chart before installing this chart.
|
||||
```
|
||||
|
||||
See `scripts/prepare-crds` for more information on the default templates used for generating these files.
|
||||
|
||||
2. On making modification to either chart or running `make CHART={CHART_NAME} patch`
|
||||
|
||||
The experience of modifying values within the `charts` directory and making a new patch is unchanged. The same workflow also applies to the `charts-crd` directory with two caveats:
|
||||
- Changes to `charts/templates/validate-install-${CHART_NAME}-crd.yaml`, `charts-crd/Chart.yaml`, and `charts-crd/README.md` will be ignored / not be shown in the patch as they are not expected to be updated
|
||||
- Any changes to `charts-crd/templates/*` (`charts-crd/crd-manifest/*` if you are using the `generateCRDChart.assumeOwnershipOfCRDs` flag) will show up in the patch as if you had changed the relevant file within `charts/crd/*`.
|
||||
|
||||
Files added to the `overlay` directory will only overlay onto the Rancher chart, not the CRD chart.
|
||||
|
||||
3. On running `make CHART={CHART_NAME} clean`
|
||||
|
||||
This will clean up both the `charts` directory and the `charts-crd` directory so that either directory won't be committed.
|
||||
|
||||
4. On running `make CHART={CHART_NAME} charts`
|
||||
|
||||
A tarball for both the original chart and the CRD chart will be generated.
|
||||
|
||||
Some more considerations when migrating to using this flag:
|
||||
- After adding this flag to a chart, you will have to look through the upstream chart and manually remove any CRD build specific code from the upstream chart (i.e. removing `helm.sh/hook: crd-install` from the CRD files, removing any cleanup Jobs introduced by the upstream chart to automatically delete CRDs on uninstall, etc.)
|
||||
- The CRDs moved to their own chart must not contain any code that was pulled from helper templates located within the main chart. If it is found that this is necessary for any chart, please submit a feature request.
|
||||
|
||||
See `packages/rancher-monitoring` for an example of a chart that currently uses this flag.
|
||||
|
||||
|
||||
### Override existing Chart
|
||||
|
||||
By default CI script doesn't allow changes to be made against existing chart. In order to make changes you have to bump chart version. There is a backdoor method to make changes to your existing chart without having to bump version. You can delete the tar.gz file you want to override and commit the change. Here is an example of [commit](https://github.com/rancher/charts/commit/3ec3d344c7e20eda6d2c6e0e9d33a4e00a33edfc#diff-db2aa3c5b9630208bd8568672c84f408).
|
||||
|
||||
### Helm repo index
|
||||
|
||||
To add this repo as a helm repo, run
|
||||
|
||||
```text
|
||||
helm repo add ${repo_name} https://charts.rancher.io
|
||||
```
|
||||
|
||||
To use a forked version of this chart repo, you can try either of these:
|
||||
|
||||
1. If you just need to test chart tar.gz file, you can run `make CHART=${name} charts` to generate tar.gz files. It will be generated under `docs/${chart_name}`.
|
||||
|
||||
2. You can also setup github page to serve your tar.gz files on your forked repo. Github pages usually requires you to have this set up on [specific branches](https://help.github.com/en/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site#choosing-a-publishing-source).
|
||||
|
||||
3. You can directly add `https://github.com/rancher/charts` into rancher catalog. In order to show all the charts you have to run `make CHART=${chart_name} prepare` and make sure there is `chart-original` folder on each chart folder if your chart relies on a upstream chart.
|
||||
|
||||
### Makefile
|
||||
|
||||
`make bootstrap`:
|
||||
|
||||
Download binaries that are needed for ci scripts.
|
||||
|
||||
`make prepare`:
|
||||
|
||||
Prepare the chart for modification. This will apply the upstream chart with the current patch. Use `CHART=${NAME}` for specific chart.
|
||||
|
||||
`make charts`:
|
||||
|
||||
Generate tarball for each charts. Use `CHART=${NAME}` for specific chart.
|
||||
|
||||
`make patch`:
|
||||
|
||||
Compare the current chart with upstream and generate patch file. Use `CHART=${NAME}` for specific chart.
|
||||
|
||||
`make validate`:
|
||||
|
||||
Validate if patch file can be applied.
|
||||
|
||||
`make mirror`:
|
||||
|
||||
Run image mirroring scripts.(Experimental)
|
||||
This branch is auto-generated from main-source branch, please open PRs to dev-2.5-source and they will migrate to main-source.
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,41 +1,5 @@
|
|||
apiVersion: v1
|
||||
entries:
|
||||
backup-restore-operator:
|
||||
- annotations:
|
||||
catalog.cattle.io/auto-install: backup-restore-operator-crd=match
|
||||
catalog.cattle.io/certified: rancher
|
||||
catalog.cattle.io/namespace: cattle-resources-system
|
||||
catalog.cattle.io/provides-gvr: resources.cattle.io.resourceset/v1
|
||||
catalog.cattle.io/release-name: backup-restore-operator
|
||||
catalog.cattle.io/ui-component: backup-restore-operator
|
||||
apiVersion: v1
|
||||
appVersion: v0.1.0-rc1
|
||||
created: "2020-09-29T16:16:38.119836-07:00"
|
||||
description: Backup-restore-operator can be used to backup kubernetes cluster
|
||||
metadata for certain applications and restore from it
|
||||
digest: 9d735ff127af81bd9081df638c6e117e51d33128e6506daaa4ab9093ff86cbe3
|
||||
keywords:
|
||||
- applications
|
||||
- infrastructure
|
||||
name: backup-restore-operator
|
||||
urls:
|
||||
- assets/backup-restore-operator/backup-restore-operator-0.1.0.tgz
|
||||
version: 0.1.0
|
||||
backup-restore-operator-crd:
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: rancher
|
||||
catalog.cattle.io/hidden: "true"
|
||||
catalog.cattle.io/namespace: cattle-resources-system
|
||||
catalog.cattle.io/release-name: backup-restore-operator-crd
|
||||
apiVersion: v1
|
||||
created: "2020-09-29T16:16:38.120071-07:00"
|
||||
description: Installs the CRDs for backup-restore-operator.
|
||||
digest: 0128891bba900400239732fbd0e445cb0ed0be0056c704b1cafb04e7f6f06652
|
||||
name: backup-restore-operator-crd
|
||||
type: application
|
||||
urls:
|
||||
- assets/backup-restore-operator/backup-restore-operator-crd-0.1.0.tgz
|
||||
version: 0.1.0
|
||||
fleet:
|
||||
- annotations:
|
||||
catalog.cattle.io/auto-install: fleet-crd=match
|
||||
|
@ -47,7 +11,7 @@ entries:
|
|||
catalog.cattle.io/release-name: fleet
|
||||
apiVersion: v2
|
||||
appVersion: 0.3.0-beta6
|
||||
created: "2020-09-30T23:34:22.123930193Z"
|
||||
created: "2020-09-30T18:00:01.747675-07:00"
|
||||
description: Fleet Manager - GitOps at Scale
|
||||
digest: 116c4bed7df966ecc320827756ed9e202edbd1e21092e0f59b6feddaebd1275b
|
||||
icon: https://charts.rancher.io/assets/logos/fleet.svg
|
||||
|
@ -55,24 +19,6 @@ entries:
|
|||
urls:
|
||||
- assets/fleet/fleet-0.3.0-beta600.tgz
|
||||
version: 0.3.0-beta600
|
||||
- annotations:
|
||||
catalog.cattle.io/auto-install: fleet-crd=match
|
||||
catalog.cattle.io/certified: rancher
|
||||
catalog.cattle.io/experimental: "true"
|
||||
catalog.cattle.io/hidden: "true"
|
||||
catalog.cattle.io/namespace: fleet-system
|
||||
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
|
||||
catalog.cattle.io/release-name: fleet
|
||||
apiVersion: v2
|
||||
appVersion: 0.3.0-beta2
|
||||
created: "2020-09-29T16:16:38.121136-07:00"
|
||||
description: Fleet Manager - GitOps at Scale
|
||||
digest: 24fb97fcb6b8109c06861818791fc76384ffe2e325720e4031e7c6428793b4d4
|
||||
icon: https://charts.rancher.io/assets/logos/fleet.svg
|
||||
name: fleet
|
||||
urls:
|
||||
- assets/fleet/fleet-0.3.0-beta200.tgz
|
||||
version: 0.3.0-beta200
|
||||
fleet-agent:
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: rancher
|
||||
|
@ -81,7 +27,7 @@ entries:
|
|||
catalog.cattle.io/release-name: fleet-agent
|
||||
apiVersion: v2
|
||||
appVersion: 0.3.0-beta6
|
||||
created: "2020-09-30T23:34:22.124345995Z"
|
||||
created: "2020-09-30T18:00:01.750122-07:00"
|
||||
description: Fleet Manager Agent - GitOps at Scale
|
||||
digest: 3168f64e2d46ad9ad3d24207860714341107344441c3a7a519b9bc284cf3ecaa
|
||||
icon: https://charts.rancher.io/assets/logos/fleet.svg
|
||||
|
@ -89,21 +35,6 @@ entries:
|
|||
urls:
|
||||
- assets/fleet-agent/fleet-agent-0.3.0-beta600.tgz
|
||||
version: 0.3.0-beta600
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: rancher
|
||||
catalog.cattle.io/hidden: "true"
|
||||
catalog.cattle.io/namespace: fleet-system
|
||||
catalog.cattle.io/release-name: fleet-agent
|
||||
apiVersion: v2
|
||||
appVersion: 0.3.0-beta2
|
||||
created: "2020-09-29T16:16:38.121608-07:00"
|
||||
description: Fleet Manager Agent - GitOps at Scale
|
||||
digest: 4f7503d8a38578ea41d88a26dd7134a59dd4a0309752a1eeaa2f182b103c54b6
|
||||
icon: https://charts.rancher.io/assets/logos/fleet.svg
|
||||
name: fleet-agent
|
||||
urls:
|
||||
- assets/fleet-agent/fleet-agent-0.3.0-beta200.tgz
|
||||
version: 0.3.0-beta200
|
||||
fleet-crd:
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: rancher
|
||||
|
@ -112,7 +43,7 @@ entries:
|
|||
catalog.cattle.io/release-name: fleet-crd
|
||||
apiVersion: v2
|
||||
appVersion: 0.3.0-beta6
|
||||
created: "2020-09-30T23:34:22.125074697Z"
|
||||
created: "2020-09-30T18:00:01.751271-07:00"
|
||||
description: Fleet Manager CustomResourceDefinitions
|
||||
digest: 08a1f5105f4a58adf815d446823b39c0a9092645cd92b32b29720b617246ce4f
|
||||
icon: https://charts.rancher.io/assets/logos/fleet.svg
|
||||
|
@ -120,21 +51,6 @@ entries:
|
|||
urls:
|
||||
- assets/fleet-crd/fleet-crd-0.3.0-beta600.tgz
|
||||
version: 0.3.0-beta600
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: rancher
|
||||
catalog.cattle.io/hidden: "true"
|
||||
catalog.cattle.io/namespace: fleet-system
|
||||
catalog.cattle.io/release-name: fleet-crd
|
||||
apiVersion: v2
|
||||
appVersion: 0.3.0-beta2
|
||||
created: "2020-09-29T16:16:38.122177-07:00"
|
||||
description: Fleet Manager CustomResourceDefinitions
|
||||
digest: f87f75f102866d0b4e65cec341df4456a4a23d131e9a6059209f71ea522c8be3
|
||||
icon: https://charts.rancher.io/assets/logos/fleet.svg
|
||||
name: fleet-crd
|
||||
urls:
|
||||
- assets/fleet-crd/fleet-crd-0.3.0-beta200.tgz
|
||||
version: 0.3.0-beta200
|
||||
longhorn:
|
||||
- annotations:
|
||||
catalog.cattle.io/auto-install: longhorn-crd=match
|
||||
|
@ -145,7 +61,7 @@ entries:
|
|||
catalog.cattle.io/ui-component: longhorn
|
||||
apiVersion: v1
|
||||
appVersion: v1.0.2
|
||||
created: "2020-09-30T23:34:22.126461101Z"
|
||||
created: "2020-09-30T18:00:01.752535-07:00"
|
||||
description: Longhorn is a distributed block storage system for Kubernetes.
|
||||
digest: f4ceef5347e7d1132a14b8b4c2e32266f5dfc50606e97fae6a1f55cf33937d22
|
||||
home: https://github.com/longhorn/longhorn
|
||||
|
@ -181,7 +97,7 @@ entries:
|
|||
catalog.cattle.io/namespace: longhorn-system
|
||||
catalog.cattle.io/release-name: longhorn-crd
|
||||
apiVersion: v1
|
||||
created: "2020-09-30T23:34:22.126658502Z"
|
||||
created: "2020-09-30T18:00:01.75286-07:00"
|
||||
description: Installs the CRDs for longhorn.
|
||||
digest: c3fc8df8818d884c9df73999999834cebe41ce6567f60222792c2593ad853d31
|
||||
name: longhorn-crd
|
||||
|
@ -200,7 +116,7 @@ entries:
|
|||
catalog.cattle.io/ui-component: rancher-backup
|
||||
apiVersion: v1
|
||||
appVersion: v1.0.0
|
||||
created: "2020-09-30T23:34:22.127229203Z"
|
||||
created: "2020-09-30T18:00:01.753604-07:00"
|
||||
description: Provides ability to back up and restore the Rancher application running
|
||||
on any Kubernetes cluster
|
||||
digest: 15403221be6b30c775399d1d9c2357819dd44c0a43224bc652ffde58c9c7dacf
|
||||
|
@ -219,7 +135,7 @@ entries:
|
|||
catalog.cattle.io/namespace: cattle-resources-system
|
||||
catalog.cattle.io/release-name: rancher-backup-crd
|
||||
apiVersion: v1
|
||||
created: "2020-09-30T23:34:22.127461904Z"
|
||||
created: "2020-09-30T18:00:01.753968-07:00"
|
||||
description: Installs the CRDs for rancher-backup.
|
||||
digest: 574944d51636bd8070873f1ab1f7003a61cafff2f6c91f067766038a7c2ad17b
|
||||
name: rancher-backup-crd
|
||||
|
@ -237,7 +153,7 @@ entries:
|
|||
catalog.cattle.io/ui-component: rancher-cis-benchmark
|
||||
apiVersion: v1
|
||||
appVersion: v1.0.0
|
||||
created: "2020-09-30T23:34:22.128042306Z"
|
||||
created: "2020-09-30T18:00:01.754618-07:00"
|
||||
description: The cis-operator enables running CIS benchmark security scans on
|
||||
a kubernetes cluster
|
||||
digest: a13254879afcd33d0b957d07a038b9f54e8c8d2f9e9a8886955937aadbc18d00
|
||||
|
@ -248,25 +164,6 @@ entries:
|
|||
urls:
|
||||
- assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.000.tgz
|
||||
version: 1.0.000
|
||||
- annotations:
|
||||
catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match
|
||||
catalog.cattle.io/certified: rancher
|
||||
catalog.cattle.io/namespace: cis-operator-system
|
||||
catalog.cattle.io/provides-gvr: cis.cattle.io.clusterscans/v1
|
||||
catalog.cattle.io/release-name: rancher-cis-benchmark
|
||||
catalog.cattle.io/ui-component: rancher-cis-benchmark
|
||||
apiVersion: v1
|
||||
appVersion: v0.0.1
|
||||
created: "2020-09-29T16:16:38.12259-07:00"
|
||||
description: The cis-operator enables running CIS benchmark security scans on
|
||||
a kubernetes cluster
|
||||
digest: f2b679435320cc3f6b2f0ffe45e340cd83d4876d8d651e590e66833eaef90a23
|
||||
keywords:
|
||||
- security
|
||||
name: rancher-cis-benchmark
|
||||
urls:
|
||||
- assets/rancher-cis-benchmark/rancher-cis-benchmark-0.0.1.tgz
|
||||
version: 0.0.1
|
||||
rancher-cis-benchmark-crd:
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: rancher
|
||||
|
@ -274,7 +171,7 @@ entries:
|
|||
catalog.cattle.io/namespace: cis-operator-system
|
||||
catalog.cattle.io/release-name: rancher-cis-benchmark-crd
|
||||
apiVersion: v1
|
||||
created: "2020-09-30T23:34:22.128263206Z"
|
||||
created: "2020-09-30T18:00:01.755244-07:00"
|
||||
description: Installs the CRDs for rancher-cis-benchmark.
|
||||
digest: d0dc8ebe295444108d4191422674ee97ba993dec62af43c2abaeef0bb6d1765b
|
||||
name: rancher-cis-benchmark-crd
|
||||
|
@ -282,20 +179,6 @@ entries:
|
|||
urls:
|
||||
- assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.000.tgz
|
||||
version: 1.0.000
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: rancher
|
||||
catalog.cattle.io/hidden: "true"
|
||||
catalog.cattle.io/namespace: cis-operator-system
|
||||
catalog.cattle.io/release-name: rancher-cis-benchmark-crd
|
||||
apiVersion: v1
|
||||
created: "2020-09-29T16:16:38.122789-07:00"
|
||||
description: Installs the CRDs for rancher-cis-benchmark.
|
||||
digest: 9c44381117aa2aa4684c9cf0fcc23b9975738465040ca7fc0906f2cb2a99af88
|
||||
name: rancher-cis-benchmark-crd
|
||||
type: application
|
||||
urls:
|
||||
- assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-0.0.1.tgz
|
||||
version: 0.0.1
|
||||
rancher-gatekeeper:
|
||||
- annotations:
|
||||
catalog.cattle.io/auto-install: rancher-gatekeeper-crd=match
|
||||
|
@ -306,7 +189,7 @@ entries:
|
|||
catalog.cattle.io/release-name: rancher-gatekeeper
|
||||
apiVersion: v1
|
||||
appVersion: v3.1.1
|
||||
created: "2020-09-30T23:34:22.12961451Z"
|
||||
created: "2020-09-30T18:00:01.756352-07:00"
|
||||
description: Modifies Open Policy Agent's upstream gatekeeper chart that provides
|
||||
policy-based control for cloud native environments
|
||||
digest: 5ad532baf589b6027455cd22e427f5a0a1d7702f98c119dd33fc7c313422a768
|
||||
|
@ -329,7 +212,7 @@ entries:
|
|||
catalog.cattle.io/namespace: cattle-gatekeeper-system
|
||||
catalog.cattle.io/release-name: rancher-gatekeeper-crd
|
||||
apiVersion: v1
|
||||
created: "2020-09-30T23:34:22.129893211Z"
|
||||
created: "2020-09-30T18:00:01.756806-07:00"
|
||||
description: Installs the CRDs for rancher-gatekeeper.
|
||||
digest: 89d80de1bea71d134b19e6092ae123c08173c172a5201d54b4baa6afedea3855
|
||||
name: rancher-gatekeeper-crd
|
||||
|
@ -348,7 +231,7 @@ entries:
|
|||
catalog.cattle.io/ui-component: istio
|
||||
apiVersion: v1
|
||||
appVersion: 1.7.1
|
||||
created: "2020-09-30T23:34:22.132596419Z"
|
||||
created: "2020-09-30T18:00:01.761384-07:00"
|
||||
dependencies:
|
||||
- alias: kiali
|
||||
condition: kiali.enabled
|
||||
|
@ -366,32 +249,6 @@ entries:
|
|||
urls:
|
||||
- assets/rancher-istio/rancher-istio-1.7.100.tgz
|
||||
version: 1.7.100
|
||||
- annotations:
|
||||
catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.22.001
|
||||
catalog.cattle.io/certified: rancher
|
||||
catalog.cattle.io/namespace: istio-system
|
||||
catalog.cattle.io/release-name: rancher-istio
|
||||
catalog.cattle.io/requires-gvr: monitoring.coreos.com.prometheus/v1
|
||||
catalog.cattle.io/ui-component: istio
|
||||
apiVersion: v1
|
||||
appVersion: 1.7.0
|
||||
created: "2020-09-29T16:16:38.125374-07:00"
|
||||
dependencies:
|
||||
- alias: kiali
|
||||
condition: kiali.enabled
|
||||
name: rancher-kiali-server
|
||||
repository: file://../../rancher-kiali-server/charts
|
||||
version: 1.22.0
|
||||
description: Helm chart for installing istio components with the istioctl
|
||||
digest: 752ab2e5a4f77df11b7211a90fad13b4f8d712edf12d315af2780c197f46777e
|
||||
icon: https://charts.rancher.io/assets/logos/istio.svg
|
||||
keywords:
|
||||
- networking
|
||||
- infrastructure
|
||||
name: rancher-istio
|
||||
urls:
|
||||
- assets/rancher-istio/rancher-istio-1.7.000.tgz
|
||||
version: 1.7.000
|
||||
rancher-kiali-server:
|
||||
- annotations:
|
||||
catalog.cattle.io/auto-install: rancher-kiali-server-crd=match
|
||||
|
@ -402,7 +259,7 @@ entries:
|
|||
catalog.rancher.io/release-name: rancher-kiali-server
|
||||
apiVersion: v2
|
||||
appVersion: v1.23.0
|
||||
created: "2020-09-30T23:34:22.134333524Z"
|
||||
created: "2020-09-30T18:00:01.762674-07:00"
|
||||
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.
|
||||
|
@ -431,7 +288,7 @@ entries:
|
|||
- annotations:
|
||||
catalog.cattle.io/hidden: "true"
|
||||
apiVersion: v2
|
||||
created: "2020-09-30T23:34:22.134502325Z"
|
||||
created: "2020-09-30T18:00:01.763031-07:00"
|
||||
description: Installs the CRDs for rancher-kiali-server.
|
||||
digest: 5d5ebb3498ac0b64cf1a73d743b0f3f45fd40c0a9ee3b26d94ae60176e523574
|
||||
name: rancher-kiali-server-crd
|
||||
|
@ -449,7 +306,7 @@ entries:
|
|||
catalog.cattle.io/ui-component: logging
|
||||
apiVersion: v1
|
||||
appVersion: 3.6.0
|
||||
created: "2020-09-30T23:34:22.135503028Z"
|
||||
created: "2020-09-30T18:00:01.76427-07:00"
|
||||
description: Collects and filter logs using highly configurable CRDs. Powered
|
||||
by Banzai Cloud Logging Operator.
|
||||
digest: be7edca7751f3301d2c4d5e179582cbfc987f1a379fa2371e036304e0c5b62e7
|
||||
|
@ -469,7 +326,7 @@ entries:
|
|||
catalog.cattle.io/namespace: cattle-logging-system
|
||||
catalog.cattle.io/release-name: rancher-logging-crd
|
||||
apiVersion: v1
|
||||
created: "2020-09-30T23:34:22.136726431Z"
|
||||
created: "2020-09-30T18:00:01.765752-07:00"
|
||||
description: Installs the CRDs for rancher-logging.
|
||||
digest: c327f08b1b842dcba42ce8afdd9c6f972125d1299e9bbd16bb1736caee14c436
|
||||
name: rancher-logging-crd
|
||||
|
@ -493,7 +350,7 @@ entries:
|
|||
catalog.cattle.io/ui-component: monitoring
|
||||
apiVersion: v1
|
||||
appVersion: 0.38.1
|
||||
created: "2020-09-30T23:34:22.1597072Z"
|
||||
created: "2020-09-30T18:00:01.787353-07:00"
|
||||
dependencies:
|
||||
- condition: kubeStateMetrics.enabled
|
||||
name: kube-state-metrics
|
||||
|
@ -622,7 +479,7 @@ entries:
|
|||
catalog.cattle.io/namespace: cattle-monitoring-system
|
||||
catalog.cattle.io/release-name: rancher-monitoring-crd
|
||||
apiVersion: v1
|
||||
created: "2020-09-30T23:34:22.165376317Z"
|
||||
created: "2020-09-30T18:00:01.793018-07:00"
|
||||
description: Installs the CRDs for rancher-monitoring.
|
||||
digest: 6a37f6809618363d7143344384d4d2d3a8a09b71ed6ebb4e47d8493d92acdc56
|
||||
name: rancher-monitoring-crd
|
||||
|
@ -641,7 +498,7 @@ entries:
|
|||
catalog.cattle.io/release-name: rancher-operator
|
||||
apiVersion: v2
|
||||
appVersion: 0.1.0-alpha8
|
||||
created: "2020-09-30T23:34:22.165659317Z"
|
||||
created: "2020-09-30T18:00:01.793702-07:00"
|
||||
description: Control Rancher using GitOps
|
||||
digest: 26e121eac6e269a316d5ca89e604dd0e53cbb57a974e5b81c935f958890a4af2
|
||||
name: rancher-operator
|
||||
|
@ -656,7 +513,7 @@ entries:
|
|||
catalog.cattle.io/release-name: rancher-operator-crd
|
||||
apiVersion: v2
|
||||
appVersion: 0.1.0-alpha8
|
||||
created: "2020-09-30T23:34:22.166131219Z"
|
||||
created: "2020-09-30T18:00:01.794415-07:00"
|
||||
description: Rancher Operator CustomResourceDefinitions
|
||||
digest: 1693bea3535af7913880e9d0563a006f0be24984e6fd406fcdce6dcf421d5b1b
|
||||
name: rancher-operator-crd
|
||||
|
@ -671,7 +528,7 @@ entries:
|
|||
catalog.rancher.io/release-name: rancher-pushprox
|
||||
apiVersion: v1
|
||||
appVersion: 0.1.0
|
||||
created: "2020-09-30T23:34:22.166795721Z"
|
||||
created: "2020-09-30T18:00:01.79523-07:00"
|
||||
description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx
|
||||
clients.
|
||||
digest: 3b1ca4678251311ec3b3b2ed2f8db8be1e047f0c866fdc3b48a02fc0b3824a6b
|
||||
|
@ -688,27 +545,13 @@ entries:
|
|||
catalog.cattle.io/release-name: rancher-webhook
|
||||
apiVersion: v2
|
||||
appVersion: 0.1.0-beta5
|
||||
created: "2020-09-30T23:34:22.167062522Z"
|
||||
created: "2020-09-30T18:00:01.795612-07:00"
|
||||
description: ValidatingAdmissionWebhook for Rancher types
|
||||
digest: 0b1022adfcef3d3066e5792ecd9cb78c6f7da89158b6f8b39ec56f645152a3d1
|
||||
name: rancher-webhook
|
||||
urls:
|
||||
- assets/rancher-webhook/rancher-webhook-0.1.0-beta500.tgz
|
||||
version: 0.1.0-beta500
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: rancher
|
||||
catalog.cattle.io/experimental: "true"
|
||||
catalog.cattle.io/namespace: cattle-system
|
||||
catalog.cattle.io/release-name: rancher-webhook
|
||||
apiVersion: v2
|
||||
appVersion: 0.1.0-alpha8
|
||||
created: "2020-09-29T16:16:38.150446-07:00"
|
||||
description: ValidatingAdmissionWebhook for Rancher types
|
||||
digest: ca518958a38c0eb4cc27b7e67e649161f02727f8c4b7d44e4a4a7b60dc0c1062
|
||||
name: rancher-webhook
|
||||
urls:
|
||||
- assets/rancher-webhook/rancher-webhook-0.1.0-alpha800.tgz
|
||||
version: 0.1.0-alpha800
|
||||
rio:
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: rancher
|
||||
|
@ -719,7 +562,7 @@ entries:
|
|||
catalog.cattle.io/requires-gvr: networking.istio.io.virtualservice/v1beta1
|
||||
apiVersion: v1
|
||||
appVersion: 0.8.0-rc2
|
||||
created: "2020-09-30T23:34:22.167851724Z"
|
||||
created: "2020-09-30T18:00:01.796163-07:00"
|
||||
description: The application deployment engine for Kubernetes
|
||||
digest: bf08db8edbddb79252e883a5b12788e9703444caa27443aeaf677615b852a80e
|
||||
home: https://rio.io
|
||||
|
@ -728,4 +571,4 @@ entries:
|
|||
urls:
|
||||
- assets/rio/rio-0.8.000.tgz
|
||||
version: 0.8.000
|
||||
generated: "2020-09-30T23:34:22.12275739Z"
|
||||
generated: "2020-09-30T18:00:01.746255-07:00"
|
||||
|
|
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.1.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#78C9CF;}
|
||||
.st1{fill:#3D98D3;}
|
||||
</style>
|
||||
<path class="st0" d="M234.5662994,299.1336975c0,23.6747437-19.1920471,42.8668213-42.8668213,42.8668213
|
||||
s-42.8668365-19.1920776-42.8668365-42.8668213c0-23.6747742,19.1920624-42.8668518,42.8668365-42.8668518
|
||||
S234.5662994,275.4589233,234.5662994,299.1336975z M363.1673584,299.1336975
|
||||
c0,23.6747437-19.1920776,42.8668213-42.8668213,42.8668213c-23.6747742,0-42.8668518-19.1920776-42.8668518-42.8668213
|
||||
c0-23.6747742,19.1920776-42.8668518,42.8668518-42.8668518
|
||||
C343.9752808,256.2668457,363.1673584,275.4589233,363.1673584,299.1336975z M296.4945679,191.0804291
|
||||
c0,22.688385-18.3925781,41.0809479-41.0809631,41.0809479s-41.0809479-18.3925629-41.0809479-41.0809479
|
||||
s18.3925781-41.0809479,41.0809479-41.0809479S296.4945679,168.3920593,296.4945679,191.0804291z"/>
|
||||
<path class="st1" d="M256,51.1999931L256,51.1999931c-67.2799988,0-126.9660034,32.4519997-164.2969971,82.5490112
|
||||
l-29.677002-29.6770096c-3.8889999-3.8889999-7.0709991-2.5709991-7.0709991,2.9290009v92.0000076c0,5.5,4.5,10,10,10h92
|
||||
c5.5,0,6.8179932-3.1820068,2.9290009-7.0709991l-31.4599915-31.4600067
|
||||
C155.9940186,129.4210052,202.835022,102.4009933,256,102.4009933c84.8309937,0,153.6000061,68.7690048,153.6000061,153.6000061
|
||||
S340.8309937,409.6010132,256,409.6010132c-83.6459961,0-151.6710052-66.8630066-153.5549927-150.0559998H51.2450066
|
||||
C53.1390076,371.0160217,144.0770111,460.8010254,256,460.8010254c113.1080017,0,204.7999878-91.6920166,204.7999878-204.7999878
|
||||
S369.1079712,51.2010269,255.9999847,51.2010269L256,51.1999931z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1,43 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.1.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 453.3241577 439.9095764" style="enable-background:new 0 0 453.3241577 439.9095764;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#0AB1D5;}
|
||||
.st1{fill:#F1DF36;}
|
||||
.st2{fill:#FAAF42;}
|
||||
.st3{fill:#9AD7EC;}
|
||||
.st4{fill:#FFFFFF;}
|
||||
.st5{fill:#1280C4;}
|
||||
</style>
|
||||
<path class="st0" d="M226.6629333-0.0027413L84.2849426,193.7442627l142.3800049,180.0979919l140.6350098-177.8119965
|
||||
L226.6629333-0.0027413z"/>
|
||||
<g>
|
||||
<g transform="matrix(1.33333 0 0 -1.33333 0 755.905)">
|
||||
<path class="st1" d="M104.3958588,236.9981689h0.0079956l131.2100067,0.0299988h0.0140076
|
||||
c3.0629883,0,6.1069946,0.6600037,8.9160156,1.8639984l-74.54599,47.655014l-74.1329956-47.8500061
|
||||
c2.6999969-1.1000061,5.6080017-1.6999969,8.5299988-1.6999969"/>
|
||||
<path class="st2" d="M275.4738464,419.9061584L169.9958496,286.5471802l74.5469971-47.655014
|
||||
c3.3919983,1.4519958,6.4389954,3.6970062,8.7470093,6.5599976l75.1040039,93.4300079l6.6860046,8.3169861
|
||||
c1.3737793,1.7166443,2.4824524,3.6295776,3.2890015,5.6749878c0.3840027,0.9649963,0.7000122,1.95401,0.9500122,2.9620056
|
||||
L275.4738464,419.9061584z"/>
|
||||
<path class="st2" d="M0.5648499,356.1971741c0.5796967-2.577179,1.6138458-5.0305176,3.0540009-7.2449951
|
||||
c0.3999939-0.6140137,0.8300018-1.2090149,1.2850037-1.7829895l81.822998-101.7350006
|
||||
c2.3959961-2.9750061,5.5879974-5.2890015,9.1380005-6.7360077l74.1330109,47.8500061L63.2128601,421.6211853
|
||||
L0.5648499,356.1971741z"/>
|
||||
<path class="st3" d="M34.6838531,502.7041626c-2.4400635-2.7939453-4.15242-6.1471863-4.9850006-9.7619934L0.5488586,366.1421509
|
||||
c-0.6499939-2.8259888-0.7140045-5.7739868-0.2380066-8.6329956c0.072998-0.4400024,0.1549988-0.8779907,0.2539978-1.3120117
|
||||
l62.647995,65.4240112L34.6838531,502.7041626z M339.3188477,355.8361816
|
||||
c0.8370056,3.3779907,0.9129944,6.9429932,0.131012,10.3370056l-29.2070007,126.8730164
|
||||
c-0.7819519,3.3922424-2.3454895,6.5549316-4.5660095,9.2359924l-30.20401-82.3760071L339.3188477,355.8361816z"/>
|
||||
<path class="st4" d="M172.9358521,411.4211731l40.6229858,41.32901h-26.5839844l-32.8300171-35.0570068v71.3259888h-20.678009
|
||||
V355.3191528h20.6789856v40.0700073l3.2690125,3.1799927l33.4599915-43.25h27.0299988L172.9358521,411.4211731z"/>
|
||||
<path class="st5" d="M130.967865,513.821167l39.0279846,53.1090088h-0.0329895l-0.1409912-0.0020142
|
||||
c-0.3338013-0.0008545-0.667572-0.0092163-1.0010071-0.0250244c-0.0400085-0.0020142-0.0769958-0.0100098-0.1149902-0.0120239
|
||||
c-2.9637756-0.1617432-5.867157-0.902771-8.54599-2.1810303l-118.214035-56.4819031
|
||||
c-2.7721863-1.3261719-5.243576-3.2057495-7.2619934-5.5230103l28.529007-81.0830078l67.7550049,92.2290344V513.821167z
|
||||
M298.0708618,508.2301636L179.7828674,564.710144c-3.0567017,1.4563599-6.3990784,2.2146606-9.7850037,2.2199707
|
||||
l105.4750061-147.0239868l30.20401,82.3770142c-2.0719299,2.5126343-4.6677856,4.5422668-7.6059875,5.946991"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.0 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
205
index.yaml
205
index.yaml
|
@ -1,41 +1,5 @@
|
|||
apiVersion: v1
|
||||
entries:
|
||||
backup-restore-operator:
|
||||
- annotations:
|
||||
catalog.cattle.io/auto-install: backup-restore-operator-crd=match
|
||||
catalog.cattle.io/certified: rancher
|
||||
catalog.cattle.io/namespace: cattle-resources-system
|
||||
catalog.cattle.io/provides-gvr: resources.cattle.io.resourceset/v1
|
||||
catalog.cattle.io/release-name: backup-restore-operator
|
||||
catalog.cattle.io/ui-component: backup-restore-operator
|
||||
apiVersion: v1
|
||||
appVersion: v0.1.0-rc1
|
||||
created: "2020-09-29T16:16:38.119836-07:00"
|
||||
description: Backup-restore-operator can be used to backup kubernetes cluster
|
||||
metadata for certain applications and restore from it
|
||||
digest: 9d735ff127af81bd9081df638c6e117e51d33128e6506daaa4ab9093ff86cbe3
|
||||
keywords:
|
||||
- applications
|
||||
- infrastructure
|
||||
name: backup-restore-operator
|
||||
urls:
|
||||
- assets/backup-restore-operator/backup-restore-operator-0.1.0.tgz
|
||||
version: 0.1.0
|
||||
backup-restore-operator-crd:
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: rancher
|
||||
catalog.cattle.io/hidden: "true"
|
||||
catalog.cattle.io/namespace: cattle-resources-system
|
||||
catalog.cattle.io/release-name: backup-restore-operator-crd
|
||||
apiVersion: v1
|
||||
created: "2020-09-29T16:16:38.120071-07:00"
|
||||
description: Installs the CRDs for backup-restore-operator.
|
||||
digest: 0128891bba900400239732fbd0e445cb0ed0be0056c704b1cafb04e7f6f06652
|
||||
name: backup-restore-operator-crd
|
||||
type: application
|
||||
urls:
|
||||
- assets/backup-restore-operator/backup-restore-operator-crd-0.1.0.tgz
|
||||
version: 0.1.0
|
||||
fleet:
|
||||
- annotations:
|
||||
catalog.cattle.io/auto-install: fleet-crd=match
|
||||
|
@ -47,7 +11,7 @@ entries:
|
|||
catalog.cattle.io/release-name: fleet
|
||||
apiVersion: v2
|
||||
appVersion: 0.3.0-beta6
|
||||
created: "2020-09-30T23:34:22.123930193Z"
|
||||
created: "2020-09-30T18:00:01.747675-07:00"
|
||||
description: Fleet Manager - GitOps at Scale
|
||||
digest: 116c4bed7df966ecc320827756ed9e202edbd1e21092e0f59b6feddaebd1275b
|
||||
icon: https://charts.rancher.io/assets/logos/fleet.svg
|
||||
|
@ -55,24 +19,6 @@ entries:
|
|||
urls:
|
||||
- assets/fleet/fleet-0.3.0-beta600.tgz
|
||||
version: 0.3.0-beta600
|
||||
- annotations:
|
||||
catalog.cattle.io/auto-install: fleet-crd=match
|
||||
catalog.cattle.io/certified: rancher
|
||||
catalog.cattle.io/experimental: "true"
|
||||
catalog.cattle.io/hidden: "true"
|
||||
catalog.cattle.io/namespace: fleet-system
|
||||
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
|
||||
catalog.cattle.io/release-name: fleet
|
||||
apiVersion: v2
|
||||
appVersion: 0.3.0-beta2
|
||||
created: "2020-09-29T16:16:38.121136-07:00"
|
||||
description: Fleet Manager - GitOps at Scale
|
||||
digest: 24fb97fcb6b8109c06861818791fc76384ffe2e325720e4031e7c6428793b4d4
|
||||
icon: https://charts.rancher.io/assets/logos/fleet.svg
|
||||
name: fleet
|
||||
urls:
|
||||
- assets/fleet/fleet-0.3.0-beta200.tgz
|
||||
version: 0.3.0-beta200
|
||||
fleet-agent:
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: rancher
|
||||
|
@ -81,7 +27,7 @@ entries:
|
|||
catalog.cattle.io/release-name: fleet-agent
|
||||
apiVersion: v2
|
||||
appVersion: 0.3.0-beta6
|
||||
created: "2020-09-30T23:34:22.124345995Z"
|
||||
created: "2020-09-30T18:00:01.750122-07:00"
|
||||
description: Fleet Manager Agent - GitOps at Scale
|
||||
digest: 3168f64e2d46ad9ad3d24207860714341107344441c3a7a519b9bc284cf3ecaa
|
||||
icon: https://charts.rancher.io/assets/logos/fleet.svg
|
||||
|
@ -89,21 +35,6 @@ entries:
|
|||
urls:
|
||||
- assets/fleet-agent/fleet-agent-0.3.0-beta600.tgz
|
||||
version: 0.3.0-beta600
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: rancher
|
||||
catalog.cattle.io/hidden: "true"
|
||||
catalog.cattle.io/namespace: fleet-system
|
||||
catalog.cattle.io/release-name: fleet-agent
|
||||
apiVersion: v2
|
||||
appVersion: 0.3.0-beta2
|
||||
created: "2020-09-29T16:16:38.121608-07:00"
|
||||
description: Fleet Manager Agent - GitOps at Scale
|
||||
digest: 4f7503d8a38578ea41d88a26dd7134a59dd4a0309752a1eeaa2f182b103c54b6
|
||||
icon: https://charts.rancher.io/assets/logos/fleet.svg
|
||||
name: fleet-agent
|
||||
urls:
|
||||
- assets/fleet-agent/fleet-agent-0.3.0-beta200.tgz
|
||||
version: 0.3.0-beta200
|
||||
fleet-crd:
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: rancher
|
||||
|
@ -112,7 +43,7 @@ entries:
|
|||
catalog.cattle.io/release-name: fleet-crd
|
||||
apiVersion: v2
|
||||
appVersion: 0.3.0-beta6
|
||||
created: "2020-09-30T23:34:22.125074697Z"
|
||||
created: "2020-09-30T18:00:01.751271-07:00"
|
||||
description: Fleet Manager CustomResourceDefinitions
|
||||
digest: 08a1f5105f4a58adf815d446823b39c0a9092645cd92b32b29720b617246ce4f
|
||||
icon: https://charts.rancher.io/assets/logos/fleet.svg
|
||||
|
@ -120,21 +51,6 @@ entries:
|
|||
urls:
|
||||
- assets/fleet-crd/fleet-crd-0.3.0-beta600.tgz
|
||||
version: 0.3.0-beta600
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: rancher
|
||||
catalog.cattle.io/hidden: "true"
|
||||
catalog.cattle.io/namespace: fleet-system
|
||||
catalog.cattle.io/release-name: fleet-crd
|
||||
apiVersion: v2
|
||||
appVersion: 0.3.0-beta2
|
||||
created: "2020-09-29T16:16:38.122177-07:00"
|
||||
description: Fleet Manager CustomResourceDefinitions
|
||||
digest: f87f75f102866d0b4e65cec341df4456a4a23d131e9a6059209f71ea522c8be3
|
||||
icon: https://charts.rancher.io/assets/logos/fleet.svg
|
||||
name: fleet-crd
|
||||
urls:
|
||||
- assets/fleet-crd/fleet-crd-0.3.0-beta200.tgz
|
||||
version: 0.3.0-beta200
|
||||
longhorn:
|
||||
- annotations:
|
||||
catalog.cattle.io/auto-install: longhorn-crd=match
|
||||
|
@ -145,7 +61,7 @@ entries:
|
|||
catalog.cattle.io/ui-component: longhorn
|
||||
apiVersion: v1
|
||||
appVersion: v1.0.2
|
||||
created: "2020-09-30T23:34:22.126461101Z"
|
||||
created: "2020-09-30T18:00:01.752535-07:00"
|
||||
description: Longhorn is a distributed block storage system for Kubernetes.
|
||||
digest: f4ceef5347e7d1132a14b8b4c2e32266f5dfc50606e97fae6a1f55cf33937d22
|
||||
home: https://github.com/longhorn/longhorn
|
||||
|
@ -181,7 +97,7 @@ entries:
|
|||
catalog.cattle.io/namespace: longhorn-system
|
||||
catalog.cattle.io/release-name: longhorn-crd
|
||||
apiVersion: v1
|
||||
created: "2020-09-30T23:34:22.126658502Z"
|
||||
created: "2020-09-30T18:00:01.75286-07:00"
|
||||
description: Installs the CRDs for longhorn.
|
||||
digest: c3fc8df8818d884c9df73999999834cebe41ce6567f60222792c2593ad853d31
|
||||
name: longhorn-crd
|
||||
|
@ -200,7 +116,7 @@ entries:
|
|||
catalog.cattle.io/ui-component: rancher-backup
|
||||
apiVersion: v1
|
||||
appVersion: v1.0.0
|
||||
created: "2020-09-30T23:34:22.127229203Z"
|
||||
created: "2020-09-30T18:00:01.753604-07:00"
|
||||
description: Provides ability to back up and restore the Rancher application running
|
||||
on any Kubernetes cluster
|
||||
digest: 15403221be6b30c775399d1d9c2357819dd44c0a43224bc652ffde58c9c7dacf
|
||||
|
@ -219,7 +135,7 @@ entries:
|
|||
catalog.cattle.io/namespace: cattle-resources-system
|
||||
catalog.cattle.io/release-name: rancher-backup-crd
|
||||
apiVersion: v1
|
||||
created: "2020-09-30T23:34:22.127461904Z"
|
||||
created: "2020-09-30T18:00:01.753968-07:00"
|
||||
description: Installs the CRDs for rancher-backup.
|
||||
digest: 574944d51636bd8070873f1ab1f7003a61cafff2f6c91f067766038a7c2ad17b
|
||||
name: rancher-backup-crd
|
||||
|
@ -237,7 +153,7 @@ entries:
|
|||
catalog.cattle.io/ui-component: rancher-cis-benchmark
|
||||
apiVersion: v1
|
||||
appVersion: v1.0.0
|
||||
created: "2020-09-30T23:34:22.128042306Z"
|
||||
created: "2020-09-30T18:00:01.754618-07:00"
|
||||
description: The cis-operator enables running CIS benchmark security scans on
|
||||
a kubernetes cluster
|
||||
digest: a13254879afcd33d0b957d07a038b9f54e8c8d2f9e9a8886955937aadbc18d00
|
||||
|
@ -248,25 +164,6 @@ entries:
|
|||
urls:
|
||||
- assets/rancher-cis-benchmark/rancher-cis-benchmark-1.0.000.tgz
|
||||
version: 1.0.000
|
||||
- annotations:
|
||||
catalog.cattle.io/auto-install: rancher-cis-benchmark-crd=match
|
||||
catalog.cattle.io/certified: rancher
|
||||
catalog.cattle.io/namespace: cis-operator-system
|
||||
catalog.cattle.io/provides-gvr: cis.cattle.io.clusterscans/v1
|
||||
catalog.cattle.io/release-name: rancher-cis-benchmark
|
||||
catalog.cattle.io/ui-component: rancher-cis-benchmark
|
||||
apiVersion: v1
|
||||
appVersion: v0.0.1
|
||||
created: "2020-09-29T16:16:38.12259-07:00"
|
||||
description: The cis-operator enables running CIS benchmark security scans on
|
||||
a kubernetes cluster
|
||||
digest: f2b679435320cc3f6b2f0ffe45e340cd83d4876d8d651e590e66833eaef90a23
|
||||
keywords:
|
||||
- security
|
||||
name: rancher-cis-benchmark
|
||||
urls:
|
||||
- assets/rancher-cis-benchmark/rancher-cis-benchmark-0.0.1.tgz
|
||||
version: 0.0.1
|
||||
rancher-cis-benchmark-crd:
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: rancher
|
||||
|
@ -274,7 +171,7 @@ entries:
|
|||
catalog.cattle.io/namespace: cis-operator-system
|
||||
catalog.cattle.io/release-name: rancher-cis-benchmark-crd
|
||||
apiVersion: v1
|
||||
created: "2020-09-30T23:34:22.128263206Z"
|
||||
created: "2020-09-30T18:00:01.755244-07:00"
|
||||
description: Installs the CRDs for rancher-cis-benchmark.
|
||||
digest: d0dc8ebe295444108d4191422674ee97ba993dec62af43c2abaeef0bb6d1765b
|
||||
name: rancher-cis-benchmark-crd
|
||||
|
@ -282,20 +179,6 @@ entries:
|
|||
urls:
|
||||
- assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-1.0.000.tgz
|
||||
version: 1.0.000
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: rancher
|
||||
catalog.cattle.io/hidden: "true"
|
||||
catalog.cattle.io/namespace: cis-operator-system
|
||||
catalog.cattle.io/release-name: rancher-cis-benchmark-crd
|
||||
apiVersion: v1
|
||||
created: "2020-09-29T16:16:38.122789-07:00"
|
||||
description: Installs the CRDs for rancher-cis-benchmark.
|
||||
digest: 9c44381117aa2aa4684c9cf0fcc23b9975738465040ca7fc0906f2cb2a99af88
|
||||
name: rancher-cis-benchmark-crd
|
||||
type: application
|
||||
urls:
|
||||
- assets/rancher-cis-benchmark/rancher-cis-benchmark-crd-0.0.1.tgz
|
||||
version: 0.0.1
|
||||
rancher-gatekeeper:
|
||||
- annotations:
|
||||
catalog.cattle.io/auto-install: rancher-gatekeeper-crd=match
|
||||
|
@ -306,7 +189,7 @@ entries:
|
|||
catalog.cattle.io/release-name: rancher-gatekeeper
|
||||
apiVersion: v1
|
||||
appVersion: v3.1.1
|
||||
created: "2020-09-30T23:34:22.12961451Z"
|
||||
created: "2020-09-30T18:00:01.756352-07:00"
|
||||
description: Modifies Open Policy Agent's upstream gatekeeper chart that provides
|
||||
policy-based control for cloud native environments
|
||||
digest: 5ad532baf589b6027455cd22e427f5a0a1d7702f98c119dd33fc7c313422a768
|
||||
|
@ -329,7 +212,7 @@ entries:
|
|||
catalog.cattle.io/namespace: cattle-gatekeeper-system
|
||||
catalog.cattle.io/release-name: rancher-gatekeeper-crd
|
||||
apiVersion: v1
|
||||
created: "2020-09-30T23:34:22.129893211Z"
|
||||
created: "2020-09-30T18:00:01.756806-07:00"
|
||||
description: Installs the CRDs for rancher-gatekeeper.
|
||||
digest: 89d80de1bea71d134b19e6092ae123c08173c172a5201d54b4baa6afedea3855
|
||||
name: rancher-gatekeeper-crd
|
||||
|
@ -348,7 +231,7 @@ entries:
|
|||
catalog.cattle.io/ui-component: istio
|
||||
apiVersion: v1
|
||||
appVersion: 1.7.1
|
||||
created: "2020-09-30T23:34:22.132596419Z"
|
||||
created: "2020-09-30T18:00:01.761384-07:00"
|
||||
dependencies:
|
||||
- alias: kiali
|
||||
condition: kiali.enabled
|
||||
|
@ -366,32 +249,6 @@ entries:
|
|||
urls:
|
||||
- assets/rancher-istio/rancher-istio-1.7.100.tgz
|
||||
version: 1.7.100
|
||||
- annotations:
|
||||
catalog.cattle.io/auto-install: rancher-kiali-server-crd=1.22.001
|
||||
catalog.cattle.io/certified: rancher
|
||||
catalog.cattle.io/namespace: istio-system
|
||||
catalog.cattle.io/release-name: rancher-istio
|
||||
catalog.cattle.io/requires-gvr: monitoring.coreos.com.prometheus/v1
|
||||
catalog.cattle.io/ui-component: istio
|
||||
apiVersion: v1
|
||||
appVersion: 1.7.0
|
||||
created: "2020-09-29T16:16:38.125374-07:00"
|
||||
dependencies:
|
||||
- alias: kiali
|
||||
condition: kiali.enabled
|
||||
name: rancher-kiali-server
|
||||
repository: file://../../rancher-kiali-server/charts
|
||||
version: 1.22.0
|
||||
description: Helm chart for installing istio components with the istioctl
|
||||
digest: 752ab2e5a4f77df11b7211a90fad13b4f8d712edf12d315af2780c197f46777e
|
||||
icon: https://charts.rancher.io/assets/logos/istio.svg
|
||||
keywords:
|
||||
- networking
|
||||
- infrastructure
|
||||
name: rancher-istio
|
||||
urls:
|
||||
- assets/rancher-istio/rancher-istio-1.7.000.tgz
|
||||
version: 1.7.000
|
||||
rancher-kiali-server:
|
||||
- annotations:
|
||||
catalog.cattle.io/auto-install: rancher-kiali-server-crd=match
|
||||
|
@ -402,7 +259,7 @@ entries:
|
|||
catalog.rancher.io/release-name: rancher-kiali-server
|
||||
apiVersion: v2
|
||||
appVersion: v1.23.0
|
||||
created: "2020-09-30T23:34:22.134333524Z"
|
||||
created: "2020-09-30T18:00:01.762674-07:00"
|
||||
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.
|
||||
|
@ -431,7 +288,7 @@ entries:
|
|||
- annotations:
|
||||
catalog.cattle.io/hidden: "true"
|
||||
apiVersion: v2
|
||||
created: "2020-09-30T23:34:22.134502325Z"
|
||||
created: "2020-09-30T18:00:01.763031-07:00"
|
||||
description: Installs the CRDs for rancher-kiali-server.
|
||||
digest: 5d5ebb3498ac0b64cf1a73d743b0f3f45fd40c0a9ee3b26d94ae60176e523574
|
||||
name: rancher-kiali-server-crd
|
||||
|
@ -449,7 +306,7 @@ entries:
|
|||
catalog.cattle.io/ui-component: logging
|
||||
apiVersion: v1
|
||||
appVersion: 3.6.0
|
||||
created: "2020-09-30T23:34:22.135503028Z"
|
||||
created: "2020-09-30T18:00:01.76427-07:00"
|
||||
description: Collects and filter logs using highly configurable CRDs. Powered
|
||||
by Banzai Cloud Logging Operator.
|
||||
digest: be7edca7751f3301d2c4d5e179582cbfc987f1a379fa2371e036304e0c5b62e7
|
||||
|
@ -469,7 +326,7 @@ entries:
|
|||
catalog.cattle.io/namespace: cattle-logging-system
|
||||
catalog.cattle.io/release-name: rancher-logging-crd
|
||||
apiVersion: v1
|
||||
created: "2020-09-30T23:34:22.136726431Z"
|
||||
created: "2020-09-30T18:00:01.765752-07:00"
|
||||
description: Installs the CRDs for rancher-logging.
|
||||
digest: c327f08b1b842dcba42ce8afdd9c6f972125d1299e9bbd16bb1736caee14c436
|
||||
name: rancher-logging-crd
|
||||
|
@ -493,7 +350,7 @@ entries:
|
|||
catalog.cattle.io/ui-component: monitoring
|
||||
apiVersion: v1
|
||||
appVersion: 0.38.1
|
||||
created: "2020-09-30T23:34:22.1597072Z"
|
||||
created: "2020-09-30T18:00:01.787353-07:00"
|
||||
dependencies:
|
||||
- condition: kubeStateMetrics.enabled
|
||||
name: kube-state-metrics
|
||||
|
@ -622,7 +479,7 @@ entries:
|
|||
catalog.cattle.io/namespace: cattle-monitoring-system
|
||||
catalog.cattle.io/release-name: rancher-monitoring-crd
|
||||
apiVersion: v1
|
||||
created: "2020-09-30T23:34:22.165376317Z"
|
||||
created: "2020-09-30T18:00:01.793018-07:00"
|
||||
description: Installs the CRDs for rancher-monitoring.
|
||||
digest: 6a37f6809618363d7143344384d4d2d3a8a09b71ed6ebb4e47d8493d92acdc56
|
||||
name: rancher-monitoring-crd
|
||||
|
@ -641,7 +498,7 @@ entries:
|
|||
catalog.cattle.io/release-name: rancher-operator
|
||||
apiVersion: v2
|
||||
appVersion: 0.1.0-alpha8
|
||||
created: "2020-09-30T23:34:22.165659317Z"
|
||||
created: "2020-09-30T18:00:01.793702-07:00"
|
||||
description: Control Rancher using GitOps
|
||||
digest: 26e121eac6e269a316d5ca89e604dd0e53cbb57a974e5b81c935f958890a4af2
|
||||
name: rancher-operator
|
||||
|
@ -656,7 +513,7 @@ entries:
|
|||
catalog.cattle.io/release-name: rancher-operator-crd
|
||||
apiVersion: v2
|
||||
appVersion: 0.1.0-alpha8
|
||||
created: "2020-09-30T23:34:22.166131219Z"
|
||||
created: "2020-09-30T18:00:01.794415-07:00"
|
||||
description: Rancher Operator CustomResourceDefinitions
|
||||
digest: 1693bea3535af7913880e9d0563a006f0be24984e6fd406fcdce6dcf421d5b1b
|
||||
name: rancher-operator-crd
|
||||
|
@ -671,7 +528,7 @@ entries:
|
|||
catalog.rancher.io/release-name: rancher-pushprox
|
||||
apiVersion: v1
|
||||
appVersion: 0.1.0
|
||||
created: "2020-09-30T23:34:22.166795721Z"
|
||||
created: "2020-09-30T18:00:01.79523-07:00"
|
||||
description: Sets up a deployment of the PushProx proxy and a DaemonSet of PushProx
|
||||
clients.
|
||||
digest: 3b1ca4678251311ec3b3b2ed2f8db8be1e047f0c866fdc3b48a02fc0b3824a6b
|
||||
|
@ -688,27 +545,13 @@ entries:
|
|||
catalog.cattle.io/release-name: rancher-webhook
|
||||
apiVersion: v2
|
||||
appVersion: 0.1.0-beta5
|
||||
created: "2020-09-30T23:34:22.167062522Z"
|
||||
created: "2020-09-30T18:00:01.795612-07:00"
|
||||
description: ValidatingAdmissionWebhook for Rancher types
|
||||
digest: 0b1022adfcef3d3066e5792ecd9cb78c6f7da89158b6f8b39ec56f645152a3d1
|
||||
name: rancher-webhook
|
||||
urls:
|
||||
- assets/rancher-webhook/rancher-webhook-0.1.0-beta500.tgz
|
||||
version: 0.1.0-beta500
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: rancher
|
||||
catalog.cattle.io/experimental: "true"
|
||||
catalog.cattle.io/namespace: cattle-system
|
||||
catalog.cattle.io/release-name: rancher-webhook
|
||||
apiVersion: v2
|
||||
appVersion: 0.1.0-alpha8
|
||||
created: "2020-09-29T16:16:38.150446-07:00"
|
||||
description: ValidatingAdmissionWebhook for Rancher types
|
||||
digest: ca518958a38c0eb4cc27b7e67e649161f02727f8c4b7d44e4a4a7b60dc0c1062
|
||||
name: rancher-webhook
|
||||
urls:
|
||||
- assets/rancher-webhook/rancher-webhook-0.1.0-alpha800.tgz
|
||||
version: 0.1.0-alpha800
|
||||
rio:
|
||||
- annotations:
|
||||
catalog.cattle.io/certified: rancher
|
||||
|
@ -719,7 +562,7 @@ entries:
|
|||
catalog.cattle.io/requires-gvr: networking.istio.io.virtualservice/v1beta1
|
||||
apiVersion: v1
|
||||
appVersion: 0.8.0-rc2
|
||||
created: "2020-09-30T23:34:22.167851724Z"
|
||||
created: "2020-09-30T18:00:01.796163-07:00"
|
||||
description: The application deployment engine for Kubernetes
|
||||
digest: bf08db8edbddb79252e883a5b12788e9703444caa27443aeaf677615b852a80e
|
||||
home: https://rio.io
|
||||
|
@ -728,4 +571,4 @@ entries:
|
|||
urls:
|
||||
- assets/rio/rio-0.8.000.tgz
|
||||
version: 0.8.000
|
||||
generated: "2020-09-30T23:34:22.12275739Z"
|
||||
generated: "2020-09-30T18:00:01.746255-07:00"
|
||||
|
|
Loading…
Reference in New Issue