diff --git a/assets/components/openebs/.helmignore b/assets/components/openebs/.helmignore deleted file mode 100644 index 46fd89965..000000000 --- a/assets/components/openebs/.helmignore +++ /dev/null @@ -1,23 +0,0 @@ -# Patterns to ignore when building packages. -# This supports shell glob matching, relative path matching, and -# negation (prefixed with !). Only one pattern per line. -.DS_Store -# Common VCS dirs -.git/ -.gitignore -.bzr/ -.bzrignore -.hg/ -.hgignore -.svn/ -# Common backup files -*.swp -*.bak -*.tmp -*~ -# Various IDEs -.project -.idea/ -*.tmproj -# OWNERS file for Kubernetes -OWNERS diff --git a/assets/components/openebs/Chart.yaml b/assets/components/openebs/Chart.yaml index e8c709de6..e4c39d2c7 100644 --- a/assets/components/openebs/Chart.yaml +++ b/assets/components/openebs/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v1 -appVersion: 1.10.0 +appVersion: 1.11.0 description: Containerized Storage for Containers home: http://www.openebs.io/ icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/openebs/icon/color/openebs-icon-color.png @@ -16,4 +16,4 @@ maintainers: name: openebs sources: - https://github.com/openebs/openebs -version: 1.10.2 +version: 1.11.1 diff --git a/assets/components/openebs/OWNERS b/assets/components/openebs/OWNERS new file mode 100644 index 000000000..874423e12 --- /dev/null +++ b/assets/components/openebs/OWNERS @@ -0,0 +1,6 @@ +approvers: +- kmova +- prateekpandey14 +reviewers: +- kmova +- prateekpandey14 diff --git a/assets/components/openebs/README.md b/assets/components/openebs/README.md index bcfa72cdc..3c180e53d 100644 --- a/assets/components/openebs/README.md +++ b/assets/components/openebs/README.md @@ -1,36 +1,52 @@ -OpenEBS -======= +# OpenEBS Helm Chart -[OpenEBS](https://github.com/openebs/openebs) is an open source storage platform that provides persistent and containerized block storage for DevOps and container environments. +[OpenEBS](https://github.com/openebs/openebs) is an *open source storage platform* that provides persistent and containerized block storage for DevOps and container environments. +OpenEBS provides multiple storage engines that can be plugged in easily. A common pattern is the use of OpenEBS to deliver Dynamic LocalPV for those applications and workloads that want to access disks and cloud volumes directly. OpenEBS can be deployed on any Kubernetes cluster - either in cloud, on-premise or developer laptop (minikube). OpenEBS itself is deployed as just another container on your cluster, and enables storage services that can be designated on a per pod, application, cluster or container level. -Introduction ------------- +## Introduction This chart bootstraps OpenEBS deployment on a [Kubernetes](http://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager. +## Quickstart and documentation + +You can run OpenEBS on any Kubernetes 1.13+ cluster in a matter of seconds. See the [Quickstart Guide to OpenEBS](https://docs.openebs.io/docs/next/quickstart.html) for detailed instructions. + +For more comprehensive documentation, start with the [Welcome to OpenEBS](https://docs.openebs.io/docs/next/overview.html) docs. + ## Prerequisites -- Kubernetes 1.10+ with RBAC enabled + +- Kubernetes 1.13+ with RBAC enabled - iSCSI PV support in the underlying infrastructure -## Installing OpenEBS -``` -helm install --namespace openebs stable/openebs -``` +## Adding OpenEBS Helm repository + +Before installing OpenEBS Helm charts, you need to add the [OpenEBS Helm repository](https://openebs.github.io/charts) to your Helm client. -## Installing OpenEBS with the release name `my-release`: +```bash +helm repo add openebs https://openebs.github.io/charts ``` -helm install --name `my-release` --namespace openebs stable/openebs + +## Installing OpenEBS + +```bash +helm install --namespace openebs openebs/openebs ``` -## To uninstall/delete the `my-release` deployment: +## Installing OpenEBS with the release name + +```bash +helm install --name `my-release` --namespace openebs openebs/openebs ``` + +## To uninstall/delete instance with release name + +```bash helm ls --all helm delete `my-release` ``` - ## Configuration The following table lists the configurable parameters of the OpenEBS chart and their default values. @@ -40,34 +56,34 @@ The following table lists the configurable parameters of the OpenEBS chart and t | `rbac.create` | Enable RBAC Resources | `true` | | `rbac.pspEnabled` | Create pod security policy resources | `false` | | `image.pullPolicy` | Container pull policy | `IfNotPresent` | -| `image.repository` | Specify which docker registry to use | `quay.io/` | +| `image.repository` | Specify which docker registry to use | `""` | | `apiserver.enabled` | Enable API Server | `true` | | `apiserver.image` | Image for API Server | `openebs/m-apiserver` | -| `apiserver.imageTag` | Image Tag for API Server | `1.10.0` | +| `apiserver.imageTag` | Image Tag for API Server | `1.11.0` | | `apiserver.replicas` | Number of API Server Replicas | `1` | | `apiserver.sparse.enabled` | Create Sparse Pool based on Sparsefile | `false` | | `provisioner.enabled` | Enable Provisioner | `true` | | `provisioner.image` | Image for Provisioner | `openebs/openebs-k8s-provisioner` | -| `provisioner.imageTag` | Image Tag for Provisioner | `1.10.0` | +| `provisioner.imageTag` | Image Tag for Provisioner | `1.11.0` | | `provisioner.replicas` | Number of Provisioner Replicas | `1` | | `localprovisioner.enabled` | Enable localProvisioner | `true` | | `localprovisioner.image` | Image for localProvisioner | `openebs/provisioner-localpv` | -| `localprovisioner.imageTag` | Image Tag for localProvisioner | `1.10.0` | +| `localprovisioner.imageTag` | Image Tag for localProvisioner | `1.11.0` | | `localprovisioner.replicas` | Number of localProvisioner Replicas | `1` | | `localprovisioner.basePath` | BasePath for hostPath volumes on Nodes | `/var/openebs/local` | | `webhook.enabled` | Enable admission server | `true` | | `webhook.image` | Image for admission server | `openebs/admission-server` | -| `webhook.imageTag` | Image Tag for admission server | `1.10.0` | +| `webhook.imageTag` | Image Tag for admission server | `1.11.0` | | `webhook.replicas` | Number of admission server Replicas | `1` | | `snapshotOperator.enabled` | Enable Snapshot Provisioner | `true` | | `snapshotOperator.provisioner.image` | Image for Snapshot Provisioner | `openebs/snapshot-provisioner` | -| `snapshotOperator.provisioner.imageTag` | Image Tag for Snapshot Provisioner | `1.10.0` | +| `snapshotOperator.provisioner.imageTag` | Image Tag for Snapshot Provisioner | `1.11.0` | | `snapshotOperator.controller.image` | Image for Snapshot Controller | `openebs/snapshot-controller` | -| `snapshotOperator.controller.imageTag` | Image Tag for Snapshot Controller | `1.10.0` | +| `snapshotOperator.controller.imageTag` | Image Tag for Snapshot Controller | `1.11.0` | | `snapshotOperator.replicas` | Number of Snapshot Operator Replicas | `1` | | `ndm.enabled` | Enable Node Disk Manager | `true` | | `ndm.image` | Image for Node Disk Manager | `openebs/node-disk-manager-amd64` | -| `ndm.imageTag` | Image Tag for Node Disk Manager | `0.5.0` | +| `ndm.imageTag` | Image Tag for Node Disk Manager | `0.6.0` | | `ndm.sparse.path` | Directory where Sparse files are created | `/var/openebs/sparse` | | `ndm.sparse.size` | Size of the sparse file in bytes | `10737418240` | | `ndm.sparse.count` | Number of sparse files to be created | `0` | @@ -75,45 +91,44 @@ The following table lists the configurable parameters of the OpenEBS chart and t | `ndm.filters.enableVendorFilter` | Enable filters of venders | `true` | | `ndm.filters.excludeVendors` | Exclude devices with specified vendor | `CLOUDBYT,OpenEBS` | | `ndm.filters.enablePathFilter` | Enable filters of paths | `true` | -| `ndm.filters.excludePaths` | Exclude devices with specified path patterns | `loop,fd0,sr0,/dev/ram,/dev/dm-,/dev/md` | | `ndm.filters.includePaths` | Include devices with specified path patterns | `""` | -| `ndm.filters.excludePaths` | Exclude devices with specified path patterns | `loop,fd0,sr0,/dev/ram,/dev/dm-,/dev/md` | +| `ndm.filters.excludePaths` | Exclude devices with specified path patterns | `loop,fd0,sr0,/dev/ram,/dev/dm-,/dev/md,/dev/rbd`| | `ndm.probes.enableSeachest` | Enable Seachest probe for NDM | `false` | | `ndmOperator.enabled` | Enable NDM Operator | `true` | | `ndmOperator.image` | Image for NDM Operator | `openebs/node-disk-operator-amd64` | -| `ndmOperator.imageTag` | Image Tag for NDM Operator | `0.5.0` | +| `ndmOperator.imageTag` | Image Tag for NDM Operator | `0.6.0` | | `jiva.image` | Image for Jiva | `openebs/jiva` | -| `jiva.imageTag` | Image Tag for Jiva | `1.10.0` | +| `jiva.imageTag` | Image Tag for Jiva | `1.11.0` | | `jiva.replicas` | Number of Jiva Replicas | `3` | | `jiva.defaultStoragePath` | hostpath used by default Jiva StorageClass | `/var/openebs` | | `cstor.pool.image` | Image for cStor Pool | `openebs/cstor-pool` | -| `cstor.pool.imageTag` | Image Tag for cStor Pool | `1.10.0` | +| `cstor.pool.imageTag` | Image Tag for cStor Pool | `1.11.0` | | `cstor.poolMgmt.image` | Image for cStor Pool Management | `openebs/cstor-pool-mgmt` | -| `cstor.poolMgmt.imageTag` | Image Tag for cStor Pool Management | `1.10.0` | +| `cstor.poolMgmt.imageTag` | Image Tag for cStor Pool Management | `1.11.0` | | `cstor.target.image` | Image for cStor Target | `openebs/cstor-istgt` | -| `cstor.target.imageTag` | Image Tag for cStor Target | `1.10.0` | +| `cstor.target.imageTag` | Image Tag for cStor Target | `1.11.0` | | `cstor.volumeMgmt.image` | Image for cStor Volume Management | `openebs/cstor-volume-mgmt` | -| `cstor.volumeMgmt.imageTag` | Image Tag for cStor Volume Management | `1.10.0` | +| `cstor.volumeMgmt.imageTag` | Image Tag for cStor Volume Management | `1.11.0` | | `helper.image` | Image for helper | `openebs/linux-utils` | -| `helper.imageTag` | Image Tag for helper | `1.10.0` | +| `helper.imageTag` | Image Tag for helper | `1.11.0` | | `featureGates.enabled` | Enable feature gates for OpenEBS | `false` | | `featureGates.GPTBasedUUID.enabled` | Enable GPT based UUID generation in NDM | `false` | | `crd.enableInstall` | Enable installation of CRDs by OpenEBS | `true` | | `policies.monitoring.image` | Image for Prometheus Exporter | `openebs/m-exporter` | -| `policies.monitoring.imageTag` | Image Tag for Prometheus Exporter | `1.10.0` | +| `policies.monitoring.imageTag` | Image Tag for Prometheus Exporter | `1.11.0` | | `analytics.enabled` | Enable sending stats to Google Analytics | `true` | | `analytics.pingInterval` | Duration(hours) between sending ping stat | `24h` | | `defaultStorageConfig.enabled` | Enable default storage class installation | `true` | | `varDirectoryPath.baseDir` | To store debug info of OpenEBS containers | `/var/openebs` | -| `healthCheck.initialDelaySeconds` | Delay before liveness probe is initiated | `30` | | 30 | -| `healthCheck.periodSeconds` | How often to perform the liveness probe | `60` | | 10 | +| `healthCheck.initialDelaySeconds` | Delay before liveness probe is initiated | `30` | +| `healthCheck.periodSeconds` | How often to perform the liveness probe | `60` | Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example, -```shell -helm install --name openebs -f values.yaml stable/openebs +```bash +helm install --name openebs -f values.yaml openebs/openebs ``` > **Tip**: You can use the default [values.yaml](values.yaml) diff --git a/assets/components/openebs/values.yaml b/assets/components/openebs/values.yaml index 671c757af..3ae6205a9 100644 --- a/assets/components/openebs/values.yaml +++ b/assets/components/openebs/values.yaml @@ -13,16 +13,16 @@ serviceAccount: release: # "openebs.io/version" label for control plane components - version: "1.10.0" + version: "1.11.0" image: pullPolicy: IfNotPresent - repository: "quay.io/" + repository: "" apiserver: enabled: true image: "openebs/m-apiserver" - imageTag: "1.10.0" + imageTag: "1.11.0" replicas: 1 ports: externalPort: 5656 @@ -47,7 +47,7 @@ varDirectoryPath: provisioner: enabled: true image: "openebs/openebs-k8s-provisioner" - imageTag: "1.10.0" + imageTag: "1.11.0" replicas: 1 nodeSelector: {} tolerations: [] @@ -59,7 +59,7 @@ provisioner: localprovisioner: enabled: true image: "openebs/provisioner-localpv" - imageTag: "1.10.0" + imageTag: "1.11.0" replicas: 1 basePath: "/var/openebs/local" nodeSelector: {} @@ -73,10 +73,10 @@ snapshotOperator: enabled: true controller: image: "openebs/snapshot-controller" - imageTag: "1.10.0" + imageTag: "1.11.0" provisioner: image: "openebs/snapshot-provisioner" - imageTag: "1.10.0" + imageTag: "1.11.0" replicas: 1 upgradeStrategy: "Recreate" nodeSelector: {} @@ -89,7 +89,7 @@ snapshotOperator: ndm: enabled: true image: "openebs/node-disk-manager-amd64" - imageTag: "0.5.0" + imageTag: "0.6.0" sparse: path: "/var/openebs/sparse" size: "10737418240" @@ -100,7 +100,7 @@ ndm: excludeVendors: "CLOUDBYT,OpenEBS" enablePathFilter: true includePaths: "" - excludePaths: "loop,fd0,sr0,/dev/ram,/dev/dm-,/dev/md" + excludePaths: "loop,fd0,sr0,/dev/ram,/dev/dm-,/dev/md,/dev/rbd" probes: enableSeachest: false nodeSelector: {} @@ -112,7 +112,7 @@ ndm: ndmOperator: enabled: true image: "openebs/node-disk-operator-amd64" - imageTag: "0.5.0" + imageTag: "0.6.0" replicas: 1 upgradeStrategy: Recreate nodeSelector: {} @@ -128,7 +128,7 @@ ndmOperator: webhook: enabled: true image: "openebs/admission-server" - imageTag: "1.10.0" + imageTag: "1.11.0" failurePolicy: Ignore replicas: 1 healthCheck: @@ -140,27 +140,27 @@ webhook: jiva: image: "openebs/jiva" - imageTag: "1.10.0" + imageTag: "1.11.0" replicas: 3 defaultStoragePath: "/var/openebs" cstor: pool: image: "openebs/cstor-pool" - imageTag: "1.10.0" + imageTag: "1.11.0" poolMgmt: image: "openebs/cstor-pool-mgmt" - imageTag: "1.10.0" + imageTag: "1.11.0" target: image: "openebs/cstor-istgt" - imageTag: "1.10.0" + imageTag: "1.11.0" volumeMgmt: image: "openebs/cstor-volume-mgmt" - imageTag: "1.10.0" + imageTag: "1.11.0" helper: image: "openebs/linux-utils" - imageTag: "1.10.0" + imageTag: "1.11.0" featureGates: enabled: false @@ -175,7 +175,7 @@ policies: monitoring: enabled: true image: "openebs/m-exporter" - imageTag: "1.10.0" + imageTag: "1.11.0" analytics: enabled: true diff --git a/pkg/assets/generated_assets.go b/pkg/assets/generated_assets.go index adaa076da..5d82243be 100644 --- a/pkg/assets/generated_assets.go +++ b/pkg/assets/generated_assets.go @@ -1099,26 +1099,26 @@ var vfsgenAssets = func() http.FileSystem { name: "openebs", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), }, - "/components/openebs/.helmignore": &vfsgen۰CompressedFileInfo{ - name: ".helmignore", - modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 369, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\xc1\x4e\xeb\x30\x10\x45\xf7\xf3\x15\xf7\x29\x9b\x47\x84\x9c\x8f\x68\xbb\x40\x48\x14\x11\x54\x96\xc8\x49\xa6\xce\xb4\x8e\x6d\xd9\x93\x16\x58\xf0\xed\xa8\xa9\x2a\xd8\x1c\x69\xee\xcc\x5c\x9d\x0a\xcf\x56\x95\x73\x28\xd0\x08\x71\x21\x66\xc6\x79\xe4\x80\x6e\x16\x3f\x48\x70\x48\xb6\x3f\x5a\xc7\xc5\x50\x85\xd7\x51\x0a\xca\x9c\x52\xcc\x5a\x50\x46\xf6\x1e\xce\xc7\x0e\x93\xd5\x7e\x94\xe0\xee\x91\xd9\x5b\x95\x13\x23\x59\x1d\xff\xe4\x36\x0c\x54\x21\xb0\xb3\x2a\x31\xe0\x7f\xca\xbc\x97\x0f\x1e\x70\x16\x1d\xf1\xef\xce\x60\x1b\xfc\x27\x62\x58\x3e\x2f\x4a\x48\x9c\xe1\x25\xb0\x21\xb3\x6e\xdf\x5b\x8d\x99\xa9\xc2\x2a\x4e\x53\x0c\xd8\xad\x5a\x0c\x92\x0b\x19\x27\xda\x2c\xbc\xea\x93\xe9\xbe\x72\xb3\xf0\x16\x8c\xae\xb9\xe0\x36\x96\x53\x68\x7e\x8b\x3a\xdb\x1f\xe7\x84\xbd\x78\x2e\x54\x9b\x72\x4e\x54\x9b\xce\x1e\xa9\x36\x3a\x25\xaa\xbf\xa9\xc2\xce\x66\x89\x73\xc1\xc3\x7a\x53\xc8\xa4\x1c\x0f\xdc\x2b\x19\x19\xd8\x36\xd7\xbb\x1c\x0f\x54\x61\xfb\xf6\xb4\x79\x69\x97\x2e\xec\x63\xc6\xe3\xdc\x71\x0e\xac\x5c\xe8\xba\xa2\x9f\x00\x00\x00\xff\xff\x56\xa7\xa0\x95\x71\x01\x00\x00"), - }, "/components/openebs/Chart.yaml": &vfsgen۰CompressedFileInfo{ name: "Chart.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), uncompressedSize: 484, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xb1\x6e\xc3\x30\x0c\x44\x77\x7d\x85\x7e\x40\x52\x5c\x74\xf2\x54\x20\x53\xe7\x00\xdd\x19\x99\x49\x58\xdb\xa2\x40\xd1\x36\xd2\xaf\x2f\x64\xc7\x4d\x0b\x74\xe4\xe3\xe9\xa4\x3b\x41\xa6\x0f\x94\x42\x9c\x5a\x3b\x37\x06\x72\xfe\x19\x1b\xdf\x1c\xfc\xc1\x74\x58\xa2\x50\xd6\x95\x1d\x39\x29\x50\x42\xa1\x2f\xec\xec\x49\x59\xe0\x8a\xf6\xc2\xf2\xdc\x14\x73\xe3\x11\x5b\x7b\x53\xcd\x6d\x08\xcb\xb2\x78\xce\x98\xf0\x5c\x3c\x71\x30\x14\xab\x4f\x5d\x96\x36\x04\x81\xc5\x5f\x49\x6f\xd3\x79\x2a\x28\x91\x93\x62\x52\x1f\x79\x0c\x31\xc5\x4b\x00\xd1\x85\xa5\x0f\x23\x14\x45\x09\x59\xf8\x13\xa3\x96\xf0\x30\x0c\xd5\x2c\x44\x1e\x58\x76\xe4\x2a\x72\x2b\xf2\x39\x5d\x4d\x8f\xf7\x85\xa5\x2b\xad\x71\x36\x0e\x3c\x75\x2e\x81\xd2\x8c\xae\x6c\x6f\x37\xce\x9e\x07\x8e\xfd\xaf\x99\x4e\xc7\xd3\xbb\x71\x76\x27\x23\xd0\x1e\xad\xba\xe0\x08\x34\xb4\xb6\x27\x81\xe4\x47\x9e\xe1\xed\x19\xcf\x58\x9b\xa0\x86\xef\xeb\xe2\x29\xce\x02\x8a\xd8\xfb\x0c\xa9\xc3\xfb\x7f\x07\x1e\x8a\x4d\xd0\xbc\x9a\x8d\x3e\x84\xa6\xf0\x24\x11\xd7\xeb\xf7\xe6\xb6\xd6\xd6\xaa\xf6\x36\x76\xf5\xfc\xe7\x07\x5f\xcc\x77\x00\x00\x00\xff\xff\x70\x31\x5b\x14\xe4\x01\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xb1\x6e\xc3\x30\x0c\x44\x77\x7d\x85\x7e\x40\x52\x0d\x74\xf2\x54\x20\x53\xe7\x00\xdd\x19\x99\x49\x58\xdb\xa2\x40\xd1\x36\xd2\xaf\x2f\x64\xc7\x75\x0b\x74\xe4\xe3\xe9\xa4\x3b\x41\xa6\x0f\x94\x42\x9c\x5a\x3b\x37\x06\x72\xfe\x19\x1b\xdf\x34\xfe\xc5\x74\x58\xa2\x50\xd6\x95\x9d\x38\x29\x50\x42\xa1\x2f\xec\xec\x59\x59\xe0\x86\xf6\xca\x72\x6c\x8a\xb9\xf3\x88\xad\xbd\xab\xe6\x36\x84\x65\x59\x3c\x67\x4c\x78\x29\x9e\x38\x18\x8a\xd5\xa7\x2e\x4b\x1b\x82\xc0\xe2\x6f\xa4\xf7\xe9\x32\x15\x94\xc8\x49\x31\xa9\x8f\x3c\x86\x98\xe2\x35\x80\xe8\xc2\xd2\x87\x11\x8a\xa2\x84\x2c\xfc\x89\x51\x4b\x78\x1a\x86\x6a\x16\x22\x0f\x2c\x3b\x72\x15\xb9\x15\xf9\x9c\x6e\xa6\xc7\xc7\xc2\xd2\x95\xd6\x38\x1b\x07\x9e\x3a\x97\x40\x69\x46\x57\xb6\xb7\x1b\x67\x2f\x03\xc7\xfe\xd7\x4c\xe7\xd3\xf9\xdd\x38\xbb\x93\x11\x68\x8f\x56\x5d\x70\x04\x1a\x5a\xdb\x93\x40\xf2\x23\xcf\xf0\x76\xc4\x33\xd6\x26\xa8\xe1\xfb\xba\x38\xc4\x59\x40\x11\x7b\x9f\x21\x75\xf8\xf8\xef\xc0\x53\xb1\x09\x9a\x57\xb3\xd1\xa7\xd0\x14\x9e\x24\xe2\x7a\xfd\xde\xdc\xd6\xda\x5a\xd5\xde\xc6\xae\x9e\xff\xfc\x60\x63\xbe\x03\x00\x00\xff\xff\x53\xbf\x13\x45\xe4\x01\x00\x00"), + }, + "/components/openebs/OWNERS": &vfsgen۰CompressedFileInfo{ + name: "OWNERS", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 74, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2c\x28\x28\xca\x2f\x4b\x2d\x2a\xb6\xe2\xd2\x55\xc8\xce\xcd\x2f\x4b\xe4\xd2\x55\x28\x28\x4a\x2c\x49\x4d\xcd\x2e\x48\xcc\x4b\x49\xad\x34\x34\xe1\x2a\x4a\x2d\xcb\x4c\x2d\x27\xa0\x08\x10\x00\x00\xff\xff\xe8\xe6\xbb\x77\x4a\x00\x00\x00"), }, "/components/openebs/README.md": &vfsgen۰CompressedFileInfo{ name: "README.md", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 11528, + uncompressedSize: 12044, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x9a\x5d\x8f\xdb\xb6\xd2\xc7\xef\xf5\x29\x06\xed\x4d\x36\xcf\xca\xbb\x69\xf2\xb4\x45\x80\x1e\x20\x59\xa7\xe9\x9e\xd3\x74\x8d\x78\x13\x20\x08\x02\x88\x96\xc6\x16\x6b\x8a\x54\x39\x94\x37\x0e\xfc\xe1\x0f\x48\xbd\x58\x96\xf5\x9a\xe4\xe2\xf8\x62\xd7\x96\x48\xce\x8f\xa3\x3f\x5f\x34\x9c\xbb\x14\xe5\xab\x97\x4b\xef\xb7\xfc\xe3\x79\x1f\x8b\x2b\x9f\x1e\xc5\xc6\xa4\xf4\xfc\xea\x6a\xc3\x4d\x9c\xad\x66\xa1\x4a\xae\x54\x8a\x12\x57\x54\xfe\xbf\x00\x4e\xc0\x24\xd8\x9f\x40\x2a\xd3\x21\x02\x19\xa5\xd9\x06\x21\x15\xcc\xac\x95\x4e\xc0\xc4\xcc\x40\xaa\xd5\x8e\x47\x48\x90\xa2\x26\x4e\x06\xa5\x01\x26\x23\x08\x95\x34\x8c\x4b\xd4\xfc\x0b\x46\xb0\x12\x2a\xdc\x56\x2d\xac\x95\x86\x39\xee\xee\x52\x3a\x2d\x0a\x28\x77\x5c\x2b\x99\xa0\x34\x34\xf3\xbc\x02\x18\x42\x26\x61\x85\x10\x61\x2a\xd4\x1e\x23\x50\x12\x98\xdc\xc3\x7f\xb2\x15\x6a\x89\x06\x09\x42\x91\x91\x41\x0d\x3e\x20\x37\x31\x6a\xe0\x12\x42\xa1\xb2\xe8\x12\x94\xf4\x53\x8d\x09\x27\x04\xa5\x21\xc2\x1d\x0a\x95\xa2\x06\xc1\x52\xa3\x52\x78\x94\x70\xc9\xb7\xd9\x0a\x2f\x66\x50\xda\xe3\x86\x50\xac\xad\x0b\x2a\x93\x8c\xe0\xef\x8c\x6c\xd7\x94\x6b\xff\xc8\xac\x24\xec\x55\xa6\x4b\x84\x4b\xd7\x25\x94\x6c\x25\x90\xaa\x1e\x13\xea\x1d\x0f\x91\x72\x9f\x55\xfd\x21\xbe\x91\xcc\x14\x3d\xb2\x1e\x84\x54\x45\x97\xc0\xd2\x54\xf0\x90\x19\xae\xe4\x65\xd5\x35\x55\x37\x2a\x6c\x37\x66\x9e\x77\x2b\x8d\x56\x51\x16\xda\xa2\x9e\x5f\xfb\x78\xde\x7d\xcc\x09\xc2\x98\x69\x03\x2b\xa5\x0c\x19\xcd\x52\xaa\xba\x98\x77\xcc\x3a\x3a\xb7\xfd\xf1\xe8\xcc\x5c\x1f\xcf\xaf\xae\xb6\xd5\xa5\x19\x57\x17\x15\x48\x46\x5c\x6e\xc0\xc4\x08\x1f\xff\x40\x91\x1c\xe5\x14\xa3\x48\x66\x14\x5f\x40\xca\xc2\xad\xed\x75\xc2\x24\xdb\xa0\x9e\x79\xde\x8f\x3f\xc2\x42\xa3\xc6\x7f\x32\x4e\xdc\x20\x79\x7e\xfd\xe9\x3d\x99\x3d\xb9\xfe\x3f\x78\xe0\x26\x86\xb7\x2f\x5f\xdc\x14\xde\x8b\x3c\x1f\xf8\xf2\x66\x79\x0b\x8b\xf7\x40\x59\x9a\x2a\x6d\xec\x73\xb5\x96\x33\x19\xa1\x16\x7b\x0b\xc2\xe5\x5a\x33\x32\x3a\x0b\x4d\xa6\xd1\x99\xba\x95\x64\x98\x10\xf6\x6e\x39\x0a\x82\x20\xf0\x2c\x1f\xf0\xfc\x1e\xf8\xbe\x64\x09\x52\xca\x42\x84\x42\xf4\x40\xc6\xda\x2d\xc7\x80\xab\xd3\xde\x5c\xce\x6a\x41\x34\x0a\x64\x84\x60\x1b\x83\x20\xd9\xfb\xc5\x85\xe0\x79\x97\xc9\x93\x52\x53\x30\xee\x15\x64\xb2\x68\xeb\x2a\x42\x81\x06\x1d\xc2\x49\x7b\xc7\xe7\x5a\x03\x10\x04\xbe\xcf\x84\xc8\x7f\x15\x55\xeb\xd5\x72\x1b\xd6\xc8\x8d\x92\x6b\xbe\xc9\xb4\x13\x9f\x15\x91\x1d\xad\x42\xa8\x07\xf7\xcc\x2d\x17\x08\x4e\x86\x9c\xe5\xb0\x2c\x6c\x2f\xa7\x4c\xb3\x04\x0d\x6a\x02\xb5\x76\xb7\xab\xe1\xeb\x44\x68\x87\x85\x89\x91\xdb\x31\xb8\x66\x99\x30\xb0\x63\x22\x43\x3b\xce\x0f\xb0\x28\x2b\x43\xff\xe7\x00\x73\xa4\x50\xf3\xd4\xe2\x0d\x94\x2d\xcb\xe7\xc6\x46\x94\xf5\x0e\xe0\x8f\xfc\x8c\x2f\xe9\x3e\x30\xa1\xbc\xe3\x08\xf4\x8a\x85\xb3\x50\x23\x33\x18\xf4\xf6\xef\x95\x1b\x2b\xf9\xb8\x79\x8b\xf9\x54\x4d\x3d\xe5\x03\xa3\xb3\xde\x26\x4f\xfc\x91\x73\xa4\x94\xe6\x66\xa2\xae\x8a\x07\xb8\x71\xac\x76\xfe\x02\xc2\x30\xd3\xdc\xec\x21\x55\x82\x87\x7b\xd0\xe7\x58\x07\x08\xd6\x4c\xd0\x28\x10\xc7\xc1\x13\xb6\xc1\x59\x9a\x09\xb1\x70\x8d\x76\x54\x3c\x58\x01\x17\x73\xa4\x2d\x5c\x22\x74\xb6\x0d\xc1\xed\xfa\x2f\x65\x16\x1a\x09\xa5\xe9\xc5\xa9\x71\x68\x4c\x15\x71\xa3\x74\x37\xc7\x32\xc5\x90\xaf\xf7\xf0\x10\xf3\x30\x86\x48\x85\x5b\xd4\xa0\x71\xc3\xc9\xe8\x3d\x18\x05\x19\xe1\x09\xc7\x3f\x19\xdb\xcf\xb8\xba\x1a\x74\x89\xe3\x60\x29\xb7\x6b\x0a\xea\x19\xf6\x3d\x99\x4a\x1f\x2f\x16\xb7\xb0\x74\x15\xfa\xdb\x9e\xaa\x8f\x23\x87\xf3\x4c\xb7\x3e\x6e\x93\x72\xe5\x1f\x83\x72\x80\xa0\xdc\x91\x24\x7e\x65\xa3\xa3\x8f\x2d\x1c\xf7\x6c\xd3\x5a\xb8\xe4\xb8\x67\x9b\x51\x2c\x07\x08\xec\xe2\x34\xbb\x1e\xe1\x91\x06\x87\x46\xb7\x88\x53\x07\xc7\x5f\x59\xb2\xb2\xab\xfa\xba\xce\xf0\xb6\xa8\xd3\xca\x31\xea\xa1\x9c\x73\x50\xca\x34\x61\x87\x4c\xaa\x71\xbb\x74\xa5\x60\xa1\x94\x80\x15\xa3\x7c\x4b\x92\x5f\x5c\x73\x81\x35\x8e\x69\xe3\xd6\x6d\x0f\x89\x2b\xd9\xaf\xd4\x4a\xa7\x8b\x63\xf9\xde\xb6\xa7\xea\xb4\xce\xd1\xa3\xd4\xba\x4e\xc7\xa0\xd4\x74\x5a\xfc\xf7\xb7\xbf\x92\x5f\xb3\x16\x0c\x70\xb4\x2b\xb5\xa9\xd3\x21\x96\xc9\x3a\xad\x73\xf4\x28\xb5\xae\xd3\x3a\x43\x97\x50\x27\xeb\x54\xa8\x90\x89\x61\x91\x54\xfa\x70\xe5\x87\x9f\xcc\x64\x7d\x9c\x71\xb4\x8b\xa4\xae\x8f\x31\x28\x35\x7d\xd4\x1a\xf7\x73\x6b\xbb\x60\x2c\xc7\x99\x48\x9a\xfa\x18\x62\x99\xac\x8f\x33\x8e\x76\x91\xd4\xf5\x71\xc6\xd0\x22\x92\x6f\xd7\x87\x9d\x9c\x16\xcc\xc4\x4d\x8e\x97\xc5\x75\xe7\x8e\x58\x91\x71\x3f\x76\x4a\x64\x09\x92\x9d\xcc\xfe\x52\xd1\x71\x07\x72\x80\xe0\x6a\xc7\x74\xf5\xda\xeb\xcc\x74\xad\xe5\x96\xe3\x01\x57\xb1\x52\xdb\xfe\xd5\xb6\xa6\x53\x16\x25\x9c\x2c\x32\x50\xdf\x52\x37\x59\xa7\x25\x47\xef\x6a\x7b\xaa\xd3\x31\x28\x35\x9d\x56\xc5\xfd\x8e\x45\xf7\x9c\xa3\x6b\xb5\x3d\xd7\xe9\x10\xcb\x64\x9d\x96\x1c\xbd\xab\xed\xa9\x4e\xcf\x18\xbe\x87\x4e\x49\xb2\x94\x62\x65\xee\x52\xd4\xcc\xa8\xc1\x79\x6c\x59\x94\x1f\x98\xd9\x27\xeb\xe3\x8c\xa3\x7d\x4e\xab\xeb\x63\x0c\x4a\x4d\x1f\xa5\x85\xf6\x45\x6e\x3c\x87\x13\x4d\x53\x1f\x43\x2c\x93\xf5\x71\xc6\x11\x2a\x69\xb4\x12\xe2\x74\x8a\x6f\xf5\xc7\x4d\x55\xb4\xed\xb9\x9c\xf9\xe3\xd8\x72\xcb\xbc\x3e\xc8\x91\x8f\xa1\x4e\x7f\x74\xb0\x7c\xbb\x3f\x86\xe7\xf5\x8a\xa1\xac\xd3\x32\x60\x26\x8f\x17\x19\x25\x43\x73\x29\xd4\xc7\x8b\x9d\xbd\x61\xce\x69\x0b\x6f\xf2\xa0\x52\x57\xf9\x89\xe3\xc5\x72\x0c\xcc\xa5\xd0\xd0\xc7\x18\x94\x9a\x3e\xa4\x8a\xd0\x8f\x38\x6d\xfd\x22\x1c\xe6\xb3\x24\xfa\xf9\x59\xd0\xc1\xd1\x3d\x97\x42\xcb\x7c\x3a\xc4\x72\x80\xe0\x7a\xf6\xff\xa3\xe4\x71\xe4\x28\xde\x18\xd2\xb3\x55\xb6\xde\xee\x9c\x6b\x0c\xed\x1b\x30\x3c\xc4\xa8\xab\x17\x08\xfb\xb2\x40\xc0\x34\x42\x1e\xbc\x88\x2a\x8e\x93\xf5\x36\x37\xd1\xf3\x3e\x57\xe3\x20\xfe\xa5\xe7\xbd\x72\xc9\xbf\x60\x19\x70\xa2\x23\x03\x70\x09\xab\xbd\x69\x86\x42\xac\x4e\xaf\x7f\x79\xfa\xcb\xb3\x27\xbf\xfe\xf4\x6c\xc0\x2b\x4d\x8e\x50\x65\x9d\x11\x82\xfa\x78\xa1\xba\x27\x8c\x82\x55\xc3\x17\x05\xc7\xa8\x67\x72\xc2\xb1\xe6\xc2\xa0\xa6\x62\xdc\xdc\x91\x7d\xee\xaf\x3e\x87\x22\x8b\xf0\x77\x77\x2b\x38\x8e\x97\xa2\xac\xe5\xb9\x5b\x82\x95\x1f\x60\x5e\xb4\xe9\x8f\xe9\xe3\xe5\x94\xe3\x3d\xca\x48\xe9\x12\xa0\x6a\xf7\x9c\x63\x87\x32\xb2\x5f\xdb\xfd\xf7\x2d\x1c\x79\xc7\x72\x90\xd3\x89\xec\x00\x85\x83\x20\xc2\x3c\x00\xef\x22\xb7\xe4\x82\x33\x1c\x23\x07\xa5\x74\x9d\xe3\xe6\xcf\xbb\x77\xf3\x97\x1f\xee\x2f\x8b\xf0\x65\x27\x53\x87\x3f\xec\xbe\xb3\xe1\x8d\x76\x7f\xd8\xf1\xd5\x15\xa9\xfb\x1e\xfe\xb0\x20\xcd\xfd\xd0\xa0\x3f\x2c\x94\xfd\x63\x50\x4b\x72\x1c\x42\xa9\xf4\x72\x1d\x5d\x5f\x92\xbe\xbe\xbc\x8a\x70\x77\xa5\x59\x92\x7f\x89\x12\x3f\xff\x92\xd8\x49\xfc\x8c\x83\xcb\x1e\x8e\x5b\x39\x91\xe3\x87\x1f\x46\x0e\x98\xff\x39\x7f\xa4\x5a\xad\xb0\x94\xc7\x12\x59\x18\x23\x99\xe6\x7a\x5b\xee\x0b\x8b\xdb\xe0\x2a\xe5\x73\xfc\xfc\x4d\x9b\x3e\xa6\xc5\x61\x64\x94\x0c\x6c\x4d\x4f\x39\xac\xd1\x6a\xbd\xef\x69\xfb\x2b\x74\x5a\x71\x8c\x8c\xc3\x8c\x41\x69\x5d\x6f\x55\x51\xa9\xb1\xe0\xb6\x73\x8c\x8b\xc3\x0c\xb1\x4c\x5e\x6f\xff\xe6\x3b\x36\x62\x03\x52\xf7\xc7\xbf\xf9\x8e\x0d\xb6\x7d\xf4\x87\xb5\x30\x1c\xd7\x3e\x72\xf4\x6e\x40\x9a\xfe\x18\x62\x99\xbc\x3f\x75\x1c\x03\x2f\x73\x8d\xf5\xd6\x31\x74\x46\x4e\x2b\x8e\xa7\x93\xd6\x5b\xc7\x51\x1c\x54\x2d\xf3\x43\xdc\xf3\xa8\x83\x6d\x37\x56\x64\xdc\x24\x91\x11\x46\xb0\xda\x57\xa7\x5b\x0e\xab\xa8\x7a\x23\x18\x11\x9c\xef\x83\x86\x9f\x4b\x48\xee\xe5\x49\x29\xd1\xab\x92\xba\x3e\x42\x6b\x34\x8f\xe4\x76\xb7\x7d\xd4\x87\xb3\xe0\x5b\x0b\x7d\xf1\x8f\x26\x47\x87\x4a\x9a\xfa\x18\x62\x99\xac\x8f\x23\xc7\x9b\x4d\x62\x3a\x7d\xd2\xe5\x8f\x7c\x97\xec\x8e\xbd\x87\xfd\xe1\x27\x9b\xa4\x65\xc3\xd7\xc9\xd1\xe2\x93\x1e\x7f\xb4\xa2\x7c\xa5\x3f\x0c\xd3\x1b\xec\xf6\x46\x9b\x3f\xee\x5d\x95\xce\xb6\x9b\xfe\xe0\x64\x36\x1d\x9b\xdf\x0e\x8e\x56\x85\xb4\xfb\xa3\x9b\xe5\x2b\xfd\x91\x87\xfd\x7a\x14\x72\xee\x8f\xf7\xae\x4a\x97\x42\xce\xfc\x91\x5b\x68\x55\x48\x0f\xc7\x60\x1c\xf7\x84\xa5\x05\x65\xb2\x3f\x62\x14\xe9\xd0\xe1\x5c\xc3\x1f\x79\x95\x81\xb6\x8f\xfe\x10\x5c\x66\x9f\xfd\xcc\x70\xd1\x31\x9d\x9d\x71\xf4\xac\x30\x4d\x7f\x0c\xb1\x4c\xf6\xc7\x1a\x99\xc9\x34\xbe\x66\xa6\xda\x91\xb5\x6d\x84\x8e\xfb\xf5\xbc\x3c\x6c\x6c\x05\x87\x54\x66\x35\x34\x39\xa6\xed\xc7\x4e\x38\x5e\x2f\xee\x5f\x32\xc2\xe8\xdd\xbb\xdb\xf9\x29\x54\xc5\xf1\x7a\x71\x5f\x9c\xcb\xd9\x42\xb0\x41\x89\x79\x8e\x86\x7d\xd1\x3d\xee\x10\x27\x73\x84\x3a\x2a\x2c\x16\x59\x2e\x03\xe7\xc8\x45\xfe\x49\x6e\x5a\xad\xe1\xe6\xed\x9c\xec\xaa\xd7\xf0\xca\xf4\xf3\x39\x25\x78\xc8\x91\x66\x89\x92\xdc\x28\xcd\xe5\xa6\x4d\xb4\x8d\xf3\xb9\x04\x4d\x8c\x19\xc1\xab\xcf\xa9\xd2\x6d\xd9\x23\x27\xe7\xc8\x58\x94\xea\x5b\xe7\x3a\x39\x4e\x45\xdb\x72\x3e\xd7\xcb\x32\xfd\x1c\x59\x32\xb1\x37\x3c\xec\x13\x69\xfd\xb9\x10\xca\x88\xcb\x0d\x90\x61\xc6\x45\x1d\x5e\x2b\xb5\x11\x08\x2f\xca\x76\x2a\x8e\x89\xe7\xfb\x15\x47\xca\xe5\xe6\x56\x1a\xd4\xbb\x96\x93\x92\x03\xcc\x8b\x9c\xa1\x47\xb1\xca\x34\x5d\xc0\x0a\xcd\x03\xa2\xac\xc0\xd2\x92\xae\xe4\xf8\xe9\x59\x67\x74\xa9\x85\xe3\x74\x2b\x96\x67\x29\xb5\xb8\xa6\xf2\x47\xb9\x0b\x2b\x13\xf0\x42\xb7\x03\x3b\x51\xef\x57\xf9\x63\xc7\x74\x15\xf9\xb2\x1b\x42\x77\x1e\x35\xe7\x4d\x4d\x1d\xe0\x5e\x39\xdb\x96\x64\x95\xb9\x2c\x35\xe5\x82\x31\x65\x4e\x54\x99\xa6\x42\x25\xc7\xb4\x7d\x61\x8c\x4c\x98\xf8\x26\xc6\x70\x3b\xe3\x92\x1b\xce\xc4\x1c\x05\xdb\x2f\x31\x54\x32\xaa\x1a\x38\x80\xbb\x0a\x2b\x5c\x5b\x16\xc1\x77\x28\x91\xa8\x78\xbb\xe4\xd6\x23\xb6\x6e\x3d\x4e\xf7\x74\x6c\x60\xea\x30\x74\xfb\xe9\xf5\xb8\x86\x46\x75\x32\x45\xcd\x55\xd4\xe8\x5e\x69\xe9\x0f\xf5\x00\x6a\x6d\x50\x5a\xe5\xa7\xa8\x8b\xf4\xd4\xb3\x0e\x97\xe5\x83\x9f\xbf\x4b\x27\x0f\xf0\xe4\x9b\xba\xe8\x95\x49\x42\xf6\xa5\xff\x98\x40\x57\xcb\xb0\x0c\x7c\x9f\xd0\xc0\x16\xf7\xbf\xb9\x6c\xb9\x8f\x97\xd5\xd7\x4f\x01\x30\xbd\xc9\xdc\xf6\xc0\x28\xb7\xc2\x56\xa9\x86\xc1\xcc\xf3\x5e\x08\x83\x5a\x32\xc3\x77\x28\xf6\x97\xc0\xe0\xc3\x8b\x37\x7f\xe6\xb1\x51\x97\x84\x5a\xc6\x38\xf2\x54\xbe\x3c\x17\xcf\xcd\x65\xf6\x67\x2d\x99\xaf\x48\x56\x2d\xf2\x7c\x23\x78\x88\xf9\x71\x1d\x28\x39\x5d\x8a\xdf\x0c\x7e\x57\x1a\xf0\x33\x4b\x52\x81\x97\x9e\x17\x04\x01\xc5\x58\xa6\x1d\x36\xb2\x20\xcb\x64\x47\x7f\x5d\xe6\x01\xee\x59\x22\x5a\x73\x1f\xff\x05\x8f\x1f\xdf\xf3\xf4\xf1\xe3\xe7\xf0\x41\x65\x0e\x28\xa3\x3c\xf7\xb1\x1c\xe6\x1f\x6b\x6d\x7c\x7a\x54\xfb\x71\xe1\xfd\x37\x00\x00\xff\xff\xb4\x33\xe5\x04\x08\x2d\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x9a\x5d\x8f\xdb\x36\xd6\xc7\xef\xfd\x29\x0e\xda\x9b\x4c\x1e\x4b\x93\x34\x41\x5b\x14\x78\x16\x98\xcc\xa4\xe9\xec\x36\x8d\x37\x9e\x66\x51\x04\x05\x44\x8b\xc7\x16\x6b\x8a\x54\x49\xca\x13\x07\xfe\xf0\x0b\x92\x92\x2c\xeb\x5d\xc9\xe6\x26\x63\x9b\x3c\xe7\xc7\xc3\x3f\xdf\xcf\xb7\xf0\x2e\x43\xf1\xfa\xd5\x1a\x7e\x41\x9e\xc2\x6d\x42\x94\x59\x2c\x3e\x16\x5f\xfe\xf9\x24\x31\x26\xd3\x3f\x5d\x5f\xef\x98\x49\xf2\x4d\x18\xcb\xf4\x5a\x66\x28\x70\xa3\xcb\xff\xaf\x80\x69\x20\x02\x9e\xda\xcf\xa0\x65\xae\x62\x04\x6d\xa4\x22\x3b\x84\x8c\x13\xb3\x95\x2a\x7d\x0a\x26\x21\x06\x32\x25\x0f\x8c\xa2\x86\x0c\x95\x66\xda\xa0\x30\x40\x04\x85\x58\x0a\x43\x98\x40\xc5\x3e\x23\x85\x0d\x97\xf1\xbe\x32\xb1\x95\x0a\xee\xf0\xf0\x2e\xd3\x97\x45\x01\xc5\x81\x29\x29\x52\x14\x46\x87\xb0\x28\xdb\x51\xf9\x48\x73\x6e\x58\xc6\xcf\x30\x28\x76\x4c\xa0\xf6\x28\x31\x11\xb0\xb1\x80\xf9\x6e\x87\x14\x98\x00\x24\x9a\xf1\x63\x08\x37\x10\xcb\x34\x95\x02\x32\x62\x0c\x2a\x61\xdb\x67\x12\x84\x5c\x23\xc8\x6d\x15\x2f\x23\x81\x22\x67\x07\x54\x70\x77\x14\x24\x65\x31\xfc\x2a\x63\xc2\x57\x1f\x1c\xb2\x49\xa4\x46\x20\x59\xc6\x59\x4c\x0c\x93\xc2\xe3\x3f\x4a\xb5\xe7\x92\xd0\x82\xe2\x91\x08\x63\x2d\x91\x38\x46\xad\x81\x32\xbd\x2f\x9a\xc9\x65\x4e\xe1\x20\x79\x9e\xa2\xfd\x5e\x61\x6c\xf8\x31\x5c\x54\xcd\x2c\xf8\x29\x66\x5c\x1e\x91\x82\x14\x40\xc4\x11\xfe\x95\x6f\x50\x09\x34\xa8\x21\xe6\xb9\x36\xa8\x20\x00\x64\x26\x41\x65\xdb\xe8\xcc\x2e\x41\x8a\x20\x53\x98\x32\xdb\x22\x05\x14\x0f\xc8\x65\x86\x0a\x38\xc9\x8c\xcc\xe0\x49\xca\x04\xdb\xe7\x1b\xbc\x0a\xab\xe6\x32\xa3\x91\x6f\x6d\x2c\x2a\x97\x44\xc3\x5f\xb9\xb6\x3d\x28\x9d\xfd\x73\xd7\x48\x01\x47\x99\xab\x12\x61\xe9\x9a\x84\x82\x6c\x38\xea\xaa\x3b\x34\xaa\x03\x8b\x1b\xfd\x41\x51\xb3\x9d\x20\xa6\x68\x91\x15\x0a\x64\x92\x2e\xeb\x91\x5c\x56\x4d\x93\x75\xa7\xdc\x36\x23\x5c\x2c\xbe\xfd\x16\xee\x85\x51\x92\xe6\xb1\x2d\xbd\x58\x3c\x24\x4c\x43\x6c\x95\x0d\x1b\x29\x8d\x36\x8a\x64\xba\x6a\x98\x6f\x8e\x55\x91\xf7\xf8\xf1\x1c\x42\x2f\xff\x9f\xae\xaf\xf7\xd5\x57\x21\x93\x57\x95\xfb\x5c\x33\xb1\x73\xda\xf8\x68\x47\xcf\x79\xb4\x24\xc8\xd3\x50\x27\x57\x90\x91\x78\x6f\xdb\x9a\x12\x41\x76\xa8\x3c\xdd\xbf\x73\x16\xef\xb5\xb1\x3c\x36\x2e\x54\xc6\xb9\x75\x4f\x3c\xed\x1f\x32\x77\xc1\x50\xb9\xa8\x18\xdb\x9d\xfb\x3c\x7c\xfe\xe2\xff\x2a\x10\x66\xc1\x53\x27\x57\x2b\x51\x8d\xb1\x14\x54\x87\xb0\x46\xf4\x78\x35\x97\x6f\x72\x46\xd1\x6a\xae\x35\xc6\xa9\x8c\x75\x58\x8c\xea\x90\x49\xf7\xf9\x5a\xe0\x27\x73\xfd\x77\x55\x3d\x4c\x4c\xca\xaf\x9c\xc2\x29\x1a\xc2\xb8\x1b\x3b\xda\x28\x1f\x6c\x1d\x2e\x16\x3f\x4b\x05\xa9\x54\x68\x87\x51\xa6\x30\x41\xa1\xd9\x01\x2f\x9b\xb9\x04\x0f\xf3\xc8\x4c\xe2\x09\xff\x83\x3c\x96\xe9\x5c\x30\x79\xb0\x22\xc2\xc7\x02\xcb\x15\x74\x31\x5e\x29\x54\xf8\x77\xce\x34\x33\xa8\x17\x8b\xa0\x1d\x3b\xe7\xfa\xfd\xab\x9b\xdb\x42\x98\x74\x11\x00\x5b\xdf\xae\xef\x61\xf5\x01\x74\x9e\x65\x52\x19\x1b\x58\x37\xf4\x05\x45\xc5\x8f\xb6\xb7\x99\xd8\x2a\xe2\xdb\x9b\x2b\x74\xbe\x6e\x28\xb5\xbf\x5c\x4c\xa4\x0a\x33\xa9\x99\x91\xea\xb8\x58\xbc\xc2\xad\x0d\x87\x0d\x13\xe1\xbc\x55\xd4\x29\x53\x2f\xed\x88\x01\x81\x48\xdd\x7c\x40\xa9\x0f\x4b\x8f\xd1\x73\x6c\xca\xb0\x14\x13\x34\x93\xd7\xde\xde\x95\x35\xe3\x06\xa1\x77\xc2\x19\x0a\x13\x2e\x16\x51\x14\x6d\x88\x4e\x16\x49\x69\xd0\xf9\x2a\xac\xc0\x98\x55\x5b\xbd\x18\x61\xcd\xc6\x34\x4c\x17\xad\x85\x20\x10\x24\x45\x9d\x91\x18\x2b\x2f\x8d\x15\x64\xc0\xe8\x59\x20\x0a\x39\x12\x8d\x60\xad\x0d\xba\x82\x28\x3d\x06\x45\xe9\x68\x96\xfb\x07\x09\xb9\x28\x8c\x5d\x53\xe4\x68\x8a\x4e\x13\x31\x7a\x90\x01\x08\xae\x21\x08\x08\xe7\xfe\x53\x51\xbb\x8e\x52\xb9\xb9\x95\x62\xcb\x76\xb9\x22\xe5\xec\x64\xd7\x38\xce\xe5\xa3\x9b\x4c\xac\x14\x81\x33\x6d\xfc\xa2\x13\x97\x85\xed\xd7\x19\x51\x24\x45\x83\x4a\xdb\x51\x6e\x7f\xae\x56\x83\xa4\x9c\x4d\x4c\x82\xcc\x8e\xcd\x2d\xc9\xb9\x81\x03\xe1\x39\xda\x21\x71\x82\x55\x59\x19\x86\xff\x9d\xe0\x0e\x75\xac\x58\x66\xf1\x46\xca\x96\xe5\xbd\xb3\x09\x65\x17\x27\x08\x26\xfe\x9b\x5e\xd2\xfd\x83\x19\xe5\x1d\x47\xa4\x36\x24\x0e\x63\x85\xc4\x60\x34\xd8\xbe\xd7\x6e\x7e\xf0\x73\xc5\x7b\xf4\x3b\x1c\x3d\x50\x3e\x32\x2a\x1f\x34\x79\x11\x0f\xcf\x91\xe9\xcc\xbb\xa1\x7d\x15\x4f\x70\xeb\x58\xed\x72\x68\x67\xf8\x5c\x31\x73\x84\x4c\x72\x16\x1f\x41\xb5\xb1\x4e\x10\x6d\x09\xd7\x93\x40\x1c\x07\x4b\xc9\x0e\xc3\x2c\xe7\x7c\xe5\x8c\xf6\x54\x3c\x59\x01\x17\x4b\xae\x2d\x5c\x22\xf4\xda\x86\xe8\x7e\xfb\x9b\x34\x2b\x85\x1a\x85\x19\xc4\xa9\x71\x9c\xe7\xba\x5e\x8e\x75\x86\x31\xdb\x1e\xe1\x31\x61\x71\x62\xe7\xfe\x3d\x2a\x50\xb8\x63\xda\xa8\xa3\x9d\xfe\xec\x8e\xad\xce\xf1\xcd\x37\x93\x7a\xa5\xe0\x20\x19\xb3\x5b\x14\x54\x21\x0e\xf5\x4c\xa5\x8f\x9b\xd5\x3d\xac\x5d\x85\x61\xdb\x73\xf5\x71\xe6\x70\x91\xe9\xd7\xc7\x7d\x5a\xee\x97\xa7\xa0\x9c\x20\x2a\x27\xc2\x34\xa8\x7c\xf4\xb4\xb1\x83\xe3\x81\xec\x3a\x0b\x97\x1c\x0f\x64\x37\x89\xe5\x04\xd1\xf3\xf0\xf9\xf3\xf0\xd9\x84\x88\x34\x38\x14\xba\x3d\xa1\xee\xe1\xf8\x2d\x4f\x37\x7e\x43\x54\x63\x78\x5f\xd4\xe9\xe4\x98\x28\x8f\x26\x87\xce\x88\xd2\xd8\x23\x93\x6a\xdc\xae\x5d\x29\x58\x49\xc9\x61\x43\xb4\xdf\xe1\xfa\x2f\xb7\x8c\x63\x8d\x63\xde\xb8\x75\x07\x1e\xcd\xa4\x18\x56\x6a\xa5\xd3\xd5\xb9\xfc\xa0\xed\xb9\x3a\xad\x73\x0c\x28\xb5\xae\xd3\x29\x28\x35\x9d\x16\xff\x07\xfb\x1f\x75\x50\xf3\x16\x8d\x70\x74\x2b\xb5\xa9\xd3\x31\x96\xd9\x3a\xad\x73\x0c\x28\xb5\xae\xd3\x3a\x43\x9f\x50\x67\xeb\x94\xdb\x53\xe9\xb8\x48\x2a\x7d\xb8\xf2\xe3\x3d\x33\x5b\x1f\x2d\x8e\x6e\x91\xd4\xf5\x31\x05\xa5\xa6\x8f\x9a\xf1\xc0\x7b\x3b\x44\x53\x39\x5a\x22\x69\xea\x63\x8c\x65\xb6\x3e\x5a\x1c\xdd\x22\xa9\xeb\xa3\xc5\xd0\x21\x92\xaf\xd7\x87\x9d\x9c\x56\xc4\x24\x4d\x8e\x57\xc5\xf7\x2e\x1c\x89\xd4\xc6\x7d\x28\xef\x28\xa4\x80\xdf\x24\x3d\xef\x40\x4e\x10\x5d\x1f\x88\xaa\xae\x8b\x9c\x9b\xbe\xb5\xdc\x72\x3c\xe2\x26\x91\x72\x3f\xbc\xda\xd6\x74\x4a\x68\xca\xb4\x45\x06\x3d\xb4\xd4\xcd\xd6\x69\xc9\x31\xb8\xda\x5e\xea\x74\x0a\x4a\x4d\xa7\x55\xf1\xa0\x67\xd1\x6d\x73\xf4\xad\xb6\x6d\x9d\x8e\xb1\xcc\xd6\x69\xc9\x31\xb8\xda\x5e\xea\xb4\xc5\xf0\xbf\xd0\xa9\x16\x24\xd3\x89\x34\xef\x32\x54\xc4\xc8\xd1\x79\x6c\x5d\x94\x1f\x99\xd9\x67\xeb\xa3\xc5\xd1\x3d\xa7\xd5\xf5\x31\x05\xa5\xa6\x8f\xd2\x43\xf7\x22\x37\x9d\xc3\x89\xa6\xa9\x8f\x31\x96\xd9\xfa\x68\x71\xc4\x52\x18\x25\x39\xbf\x9c\xe2\x3b\xe3\x71\x5b\x15\xed\xea\x97\x56\x3c\xce\x96\x3b\xe6\xf5\x51\x0e\x3f\x86\x7a\xe3\xd1\xc3\xf2\xf5\xf1\x18\x9f\xd7\x2b\x86\xb2\x4e\xc7\x80\x99\x3d\x5e\x04\x4d\xc7\xe6\x52\xa8\x8f\x17\x3b\x7b\xc3\x1d\xd3\x7b\x78\xeb\x6f\x2b\xfb\xca\xcf\x1c\x2f\x96\x63\x64\x2e\x85\x86\x3e\xa6\xa0\xd4\xf4\x21\x24\xc5\x80\x32\xbd\x0f\x8a\x7b\xd6\x80\xa4\xf4\xfb\x97\x51\x0f\x47\xff\x5c\x0a\x1d\xf3\xe9\x18\xcb\x09\xa2\x67\xe1\xf7\x93\xe4\x71\xe6\x28\x4e\x0c\x59\x6b\x95\xad\xdb\xbd\x73\xb7\xfe\x52\xd9\x13\x2e\xaa\xea\x00\x61\x0f\x0b\x1a\x88\x42\xf0\x97\x17\xb4\xe2\xb8\x58\x6f\xbd\x8b\x81\xf3\x5c\x8d\x43\xb3\xcf\x03\xe7\xca\x35\xfb\x8c\xe5\x85\x93\x3e\x33\x00\x13\xb0\x39\x9a\xe6\x55\x88\xd5\xe9\xb3\x1f\x5e\xfc\xf0\xf2\xf9\x8f\xdf\xbd\x1c\x89\x4a\x93\x23\x96\x79\xef\x0d\x41\x7d\xbc\xe8\x7a\x24\x8c\x84\x4d\x23\x16\x05\xc7\xa4\x3e\xb9\xe0\xd8\x32\x6e\x50\xe9\x62\xdc\xbc\xd3\xb6\xdf\x5f\x7f\x8a\x79\x4e\xf1\x67\xf7\x53\x74\x1e\x2f\x45\x59\xf7\x26\xb4\x76\x4f\x37\x80\xbe\x68\x33\x1e\xf3\xc7\xcb\x25\xc7\x07\x14\x54\xaa\x12\xa0\xb2\xdb\xe6\x38\xa0\xa0\xf6\xcf\xee\xf8\x7d\x0d\x87\x6f\x98\x07\xb9\x9c\xc8\x4e\x50\x04\x08\x28\xfa\xf7\x1c\x77\x55\xaa\xdd\xe5\x0c\x43\xea\xa0\xa4\xaa\x73\xdc\xfe\xfa\xee\xf7\xbb\x57\x7f\x3c\x2c\x8b\xeb\xcb\x5e\xa6\x9e\x78\xd8\x7d\x67\x23\x1a\xdd\xf1\xb0\xe3\xab\xef\xa6\xee\xab\xe2\xc1\x84\x6b\xb2\x05\x69\xee\x87\x4e\x70\x2f\x06\xe3\x61\xa1\xca\xb7\x45\xfd\x05\xf7\x52\x1d\xfd\xd2\xcd\x31\xd2\x2f\x6d\x0e\x2e\x65\xb6\xdc\xd2\x67\x4b\xad\x9e\x2d\xaf\x29\x1e\xae\x15\x49\xfd\x1f\x34\x0d\xfc\x1f\x29\x2d\x7e\xd9\xd0\xa8\xc2\xc9\x94\xdc\x60\xd9\x3b\x6b\x24\x71\x82\xda\x34\x97\xbb\x72\x5b\x56\xfc\x0c\xae\x92\x9f\x62\xef\xde\x76\x75\xcf\xbc\x6b\x10\x41\xd3\x91\x9d\xe1\x25\x87\x75\x5a\x2d\xb7\x03\xb6\xbf\x40\x26\x15\xc7\xc4\x6b\x90\x29\x28\x9d\xcb\x9d\x2c\x2a\x35\xd6\xbb\x6e\x8e\x69\xd7\x20\x63\x2c\xb3\x97\xbb\xbf\xd8\x81\x4c\x58\xff\xeb\xf1\xf8\x27\x3b\x90\x51\xdb\xe7\x78\x58\x0f\xe3\xd7\xca\x67\x8e\xc1\xf5\xbf\x19\x8f\x31\x96\xd9\xdb\x43\xc7\x31\x72\x96\x6a\x2c\x77\x8e\xa1\xf7\xe2\xb2\xe2\x78\x31\x6b\xb9\x73\x1c\xc5\x3b\xd1\xda\x3f\xc9\xb7\x0f\xfd\xd6\xae\x3d\xe9\xbb\xb9\x22\xd7\x48\x61\x73\xac\x1e\x97\x1c\x56\x51\xf5\x96\x13\xad\xa1\xbd\x0d\x19\xef\x97\x58\xbb\xb3\x8b\x94\x7c\x50\x25\x75\x7d\xc4\xd6\xa9\xbf\x48\xed\xb7\x7d\xd6\x87\xf3\x10\x58\x0f\x43\xd7\x0f\x4d\x8e\x1e\x95\x34\xf5\x31\xc6\x32\x5b\x1f\x67\x8e\xb7\xbb\xd4\xf4\xc6\xa4\x2f\x1e\x7e\x93\xea\xd2\x19\xc6\xe3\x11\xa4\xbb\xb4\x63\xbf\xd5\xcb\xd1\x11\x93\x81\x78\x74\xa2\x7c\x61\x3c\x0c\x51\x3b\xec\x8f\x46\x57\x3c\x1e\x5c\x95\x5e\xdb\xcd\x78\x30\x6d\x76\x3d\x7b\xcf\x1e\x8e\x4e\x85\x74\xc7\xa3\x9f\xe5\x0b\xe3\xe1\x6f\xdd\x06\x14\xd2\x8e\xc7\x07\x57\xa5\x4f\x21\xad\x78\x78\x0f\x9d\x0a\x19\xe0\x18\xbd\x46\xbd\x60\xe9\x40\x99\x1d\x8f\x04\x79\x36\xf6\x36\xd6\x88\x87\xaf\x32\x62\xfb\x1c\x0f\xce\x44\xfe\x29\xc8\x0d\xe3\x3d\xd3\x59\x8b\x63\x60\x85\x69\xc6\x63\x8c\x65\x76\x3c\xb6\x48\x4c\xae\xf0\x0d\x31\xd5\x8e\xac\x6b\x23\x74\xde\x2e\xfb\xf2\xb0\xb3\x15\x1c\x52\x99\x54\xd0\xe4\x98\xb7\x1f\xbb\xe0\x78\xb3\x7a\x78\x45\x34\xd2\xdf\x7f\xbf\xbf\xbb\x84\xaa\x38\xde\xac\x1e\x8a\x67\x31\x5b\x08\x76\x28\xd0\xa7\x48\xd8\x73\xe6\x79\x87\x38\x9b\x23\x56\xb4\xf0\x58\xa4\x97\x8c\x3c\xe3\x16\x09\x20\xde\xb5\xdc\xc2\xed\xfb\x3b\x6d\x57\xbd\x46\x54\xe6\x3f\x8f\x49\xce\x62\x86\x3a\x4c\xa5\x60\x46\x2a\x26\x76\x5d\xa2\x6d\x3c\x8f\xa5\x68\x12\xcc\x35\xbc\xfe\x94\x49\xd5\x95\xbc\x71\xf1\x8c\x8b\x45\xa9\xa1\x75\xae\x97\xe3\x52\xb4\x1d\xcf\x63\x83\x2c\xf3\x9f\x71\x05\xe1\x47\xc3\xe2\x21\x91\xd6\xfb\x45\xa3\x70\x69\x56\xda\x10\xe3\x0e\xfd\x6f\xa4\xdc\x71\x84\x9b\xd2\x4e\xc5\x31\xf3\x79\xbd\xe2\xc8\x98\xd8\xdd\x0b\x83\xea\xd0\xf1\x50\x71\x82\xbb\x22\x65\xe7\x49\x22\x73\xa5\xaf\x60\x83\xe6\x11\x51\x54\x60\x59\x49\x57\x72\x7c\xf7\xb2\xf7\x72\xa7\x83\xe3\x72\x2b\xe6\x93\x84\x3a\x42\x53\xc5\xa3\xdc\x85\x95\xe9\x94\xb1\xdb\x81\x5d\xa8\xf7\x8b\xe2\x71\x20\xaa\xba\x78\xb2\x1b\x42\xf7\x1c\x74\xc7\x9a\x9a\x3a\xc1\x83\x74\xbe\x2d\xc9\x26\x77\x89\x71\xb2\x9e\x1f\x5b\x25\x66\xea\x92\x63\xde\xbe\x30\x41\xc2\x4d\x72\x9b\x60\xbc\x0f\x99\x60\x86\x11\x7e\x87\x9c\x1c\xd7\x3e\xb9\x31\x3a\xf7\x8b\xfd\x16\x36\x3e\xc9\x8e\xb3\x03\x0a\xd4\xba\x38\x5d\x32\x1b\x11\x5b\xb7\x7e\x4d\xf6\x62\xea\xbd\x50\x8b\x23\x43\xc5\x24\x6d\x10\x94\x76\x7f\x91\x8f\x20\xb7\x06\x85\x15\x67\x86\x6a\x2b\x55\xea\xee\xcc\x1a\x4c\x15\xc7\xf7\xd3\x39\x16\x65\xae\x8b\x3d\x3c\x9f\xf3\xc0\x6a\x19\xa8\x51\x10\x68\x34\xb0\xc7\xe3\xff\xbb\xa4\xaf\x8f\xcb\xea\xcf\x3f\x23\x20\x6a\xe7\x92\x2f\x2d\x5a\x54\x4f\x9a\x8b\xc2\xc5\xe2\x86\x1b\x54\x82\x18\x76\x40\x7e\x5c\x02\x81\x3f\x6e\xde\xfe\xea\xaf\xf8\x5c\x6a\x6e\x79\x65\xe0\x33\xd2\x7c\x4a\x59\x91\xe3\x7c\x91\x93\x56\xa6\x54\xfb\x04\x6c\x0a\x8f\x09\xe3\x17\x69\x8f\x2e\xa1\x2d\x21\xca\x84\xf0\xb3\x54\x80\x9f\x48\x9a\x71\x5c\x0e\xa7\xf3\x95\x59\x7b\xc1\xb6\xcc\x66\x3b\x92\x94\x77\x27\xf1\xfd\x03\x9e\x3e\x7d\x60\xd9\xd3\xa7\x3f\x41\x99\x46\x9b\x6b\x9f\x02\x5b\x0e\x97\x8f\x35\x23\x7f\x3e\xa9\x7d\xb8\x5a\xfc\x37\x00\x00\xff\xff\xae\x7f\xef\x09\x0c\x2f\x00\x00"), }, "/components/openebs/crds": &vfsgen۰DirInfo{ name: "crds", @@ -1257,9 +1257,9 @@ var vfsgenAssets = func() http.FileSystem { "/components/openebs/values.yaml": &vfsgen۰CompressedFileInfo{ name: "values.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 3661, + uncompressedSize: 3662, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x57\x41\x6f\xdb\x38\x13\xbd\xf3\x57\x0c\x94\x6b\x14\x3b\x6d\x9a\x16\xba\x35\x71\x5b\x04\x68\xbf\x04\x75\xfa\x01\xc5\x62\x0f\x63\x71\x24\x71\x43\x71\xb4\x1c\x4a\x8d\x77\xb1\xff\x7d\x41\x49\x76\x1c\xc7\x75\x5c\xec\x62\x7b\xb2\x4c\x0e\xdf\xcc\x3c\x3e\x0e\x87\x47\x30\xa3\x02\x5b\x1b\xa0\x43\xdb\x92\x40\xc1\x1e\xb8\x21\x47\x0b\x39\x51\x47\x70\x5b\x19\x01\x23\x80\xf0\xf5\xed\xa7\x8f\x69\xc1\xbe\xc6\x10\x48\x43\x61\x2c\x45\x83\x19\xe5\x16\x3d\x41\x87\xde\xe0\xc2\x92\x40\x60\x58\x10\x34\x28\x42\x1a\x8c\x0b\x0c\x4b\x6e\x3d\x04\xaa\x1b\x8b\x81\xe4\x44\x29\xbf\xc0\x3c\x53\x00\x47\x30\x6f\x28\x37\x85\x21\x81\x6f\x15\x85\x8a\x3c\x7c\xbe\x78\x7b\x09\x9e\x84\x5b\x9f\x93\x80\x54\xdc\x5a\x1d\x11\x73\x4f\x18\x48\x2b\x18\xbf\x32\x08\xbe\x25\x05\xd0\x48\xf3\xce\x45\xdf\x3a\x83\x02\xad\x90\x52\x42\xbe\x33\x39\xbd\xcd\x73\x6e\x5d\xc8\x9e\xae\x71\x58\x53\xa6\x94\x27\x4b\x28\x34\xc4\x92\xac\xf2\x36\x3c\xe9\xc8\x8b\x61\x97\x80\xc5\x05\xd9\x9e\x95\x9c\x5d\xf0\x6c\xa1\xb1\xe8\x08\x72\xae\x1b\x76\xe4\x82\x28\x80\xd1\x3a\x83\xe4\xf4\xe4\x74\x7a\x32\x4d\x94\x32\x35\x96\x3d\x6e\xd3\x5a\x7b\xc3\xd6\xe4\xcb\x0c\xae\x8a\xff\x71\xb8\xf1\x24\xe4\x82\x02\xf0\xd4\xb0\x98\xc0\x7e\x99\x41\xf2\x7b\x8b\xcb\xe8\x39\x51\x0a\x1b\x13\x13\x20\x1f\xd7\xd3\x2a\xb5\x31\xf2\x01\x78\x1d\xec\xa4\x4e\xd7\xe6\xc9\x6a\xfa\x16\xcb\x8d\x58\x7a\x47\xd6\xe4\x28\x19\x9c\xc6\x88\xd8\x07\x89\xd0\x00\x74\x1f\xc8\x3b\xb4\x37\xec\x43\x06\xaf\xce\x5f\x9d\xf7\xc3\xc6\xed\x18\x96\x06\xfd\x40\xd5\x46\x50\x49\x4f\x78\xf4\xe1\x58\xd3\x9c\x2c\xe5\x81\x7d\x06\x7f\xfe\xa5\x00\x02\x5b\xf2\x18\x0c\x3b\xc9\xe0\x97\x5f\x15\x00\x16\x85\x71\x26\x2c\x47\x83\x8a\xd0\x86\xea\xb2\xa2\xfc\x2e\x1b\x1d\x9b\x60\xd0\xce\xc8\xe2\x72\x4e\x39\x3b\x2d\x19\xbc\x9c\xf6\x73\x0d\x79\xc3\x7a\x3d\x7a\x3e\x55\x4a\x0f\xda\x9d\x07\xf6\x58\xd2\x25\xbb\xc2\x94\x8f\x38\x4b\x22\x69\x89\x8a\x3a\x35\xbe\x0f\x6d\x09\x6d\xd4\xe5\x62\x09\xa1\x22\xb8\x6e\xc8\xbd\xbb\x98\x47\xcd\x4a\x60\x4f\xa0\x69\xd1\x96\x60\xdc\x20\x74\xc3\x0e\xd0\x69\x10\x8e\x0a\x08\x95\x3a\x82\x50\x61\x80\x28\xf8\x92\x5c\x4c\xae\xd7\x78\x8f\x95\x73\xeb\x85\x80\x0b\xf0\xad\x73\xc6\x95\x6b\xf4\xa8\x1c\x34\x8e\xbc\x9c\xa8\x0e\xfd\x3a\x94\x1b\x0c\x55\x0c\x77\x81\x42\x33\xe3\x33\x48\x26\x1d\xfa\xc9\xb8\xb3\x89\x52\x8d\xe7\xce\x44\x65\x1d\x26\x85\xf1\x37\xbd\x7b\x23\xe9\xc6\xd2\x03\x65\xf1\x33\x36\xd0\x72\x8e\xf6\x07\xb3\xdc\x30\x4f\x87\xf5\xdd\x81\x19\x46\x9e\x7b\xce\x1f\x13\x3d\xe9\x51\x7e\x96\x86\xc5\x61\x23\x15\x87\xeb\x26\xfa\xe1\x9d\x14\x8c\xa5\xc7\x0e\x04\x3d\xa5\x64\x85\x91\x3e\x18\x26\x0f\x86\xdb\xa4\x6c\xf1\xbd\x07\x6e\x4b\x44\x07\x91\xdc\x36\xa5\x47\x4d\xf3\x10\x0f\x47\x19\x2b\xdb\x67\x1a\x8a\xef\xcf\x62\xd8\xe9\xfa\x10\x5d\xc5\xd0\x52\x6d\xe4\x2e\xad\xd1\x61\x49\x3e\xc5\x5a\x9f\x9f\x6d\x69\x6b\x7a\xf2\x6a\xc8\x7a\xb3\x1c\x36\x3b\x44\x35\xcc\x0f\xb4\x89\xf9\x23\x7a\x3a\x9d\xbe\x7e\xf9\xfa\xec\xf4\xcd\x8b\xb3\xe9\x30\x3e\xdc\x4e\x90\xf4\x7f\x0b\x63\x03\x79\xd9\x2c\xb0\xd7\x32\x33\x72\xf7\xee\x3e\xb7\xad\xa6\xf7\xfd\xfc\x3a\xfc\x95\xcd\xff\xc9\x69\xf6\x4f\x27\x87\x45\xc3\xac\x64\x90\x5c\x7e\xbc\xfe\x32\xbb\xf8\x7a\x7b\x3c\x56\xa5\x64\x03\x23\x1e\x8a\x27\x08\xc6\xf5\x08\x71\x2e\xae\x4f\x36\x61\x57\x83\x96\xb9\x39\x2e\xf4\xf4\x58\xfc\xf4\x78\xa2\xa9\x9b\x78\xac\x87\x0f\x5d\xa7\xc3\x47\xad\x47\xd1\x2d\xe8\x51\x72\x73\xc2\xbc\x22\x09\xab\x4b\xfb\x40\x71\xfc\x0b\x6a\xd8\x77\xd4\xbe\xaf\x0a\x1e\x57\xed\x97\xc5\x33\x87\x61\x75\x16\xfe\xa3\x6c\x63\x3c\xa8\x8d\x23\x91\xe7\x30\xce\x76\x41\x9c\x0e\xc0\x05\x1a\xdb\x7a\xba\xad\x3c\x49\xc5\x56\xc7\xe4\xd4\x37\x5a\x54\xcc\x77\x87\x90\x88\xba\x36\x12\xeb\x48\xfa\x4c\xa3\x32\x3a\x5a\xf7\x4b\xa5\x63\x4f\x4f\x58\xfd\xc7\xa4\xfc\x78\x15\x52\xbf\x99\x0e\xb3\x1d\xa9\xc5\xf1\x03\xae\x9f\x97\x0a\xe0\x71\xb7\xb2\xe3\x22\x4a\x94\xca\x65\xd4\x65\xc3\x6c\x77\x57\xe7\xde\x24\x8d\xf3\xfb\x6a\x3c\xb3\xfd\x54\xd6\xe1\x39\x88\xb4\x2e\xeb\xb0\x07\x27\xa0\x2f\x69\x2f\x8a\x91\x50\xee\x43\xe8\xd8\xb6\x35\x3d\x17\xcb\x60\xb5\x3f\x1a\x55\x91\x6d\x86\x3b\x6b\x1b\xc4\x1a\xd7\xde\xa7\x6d\x30\x56\xbe\xb3\x19\xaa\x20\x0c\xad\xa7\x0f\xf1\x09\xf2\x48\xb3\xab\xea\xf3\xe1\xe6\xf6\x02\x85\xf4\x97\x2f\x57\xb3\xad\x2e\x77\x65\x02\xb0\x81\xf2\xde\xf6\x0e\x36\x97\xc5\x0d\xf4\xfa\x01\xfd\xca\x49\x40\x6b\xc7\x73\xa1\x9a\x28\x6b\x33\xb8\xaf\xd9\xc5\xce\xdf\xb8\x72\xcb\xd7\x43\xfd\x7d\xd2\xe8\xd3\x7d\x6c\xdd\xf7\xdc\xc5\x0a\x1d\xda\x65\x30\xb9\xec\x3a\x95\xab\xd7\xd6\x32\x76\xac\x55\xec\x56\xfb\xbe\x55\xb7\x7e\xec\x74\x8b\x40\x1e\xbe\x55\x26\xaf\x00\xa1\x89\x1d\x2c\x75\xe4\x02\x38\x22\xbd\x7a\xd7\xc5\xa7\xcb\x49\x14\x98\x71\xe5\x55\x7c\x26\x74\x68\x33\x48\x5e\x9c\x55\x89\xfa\x3b\x00\x00\xff\xff\xae\xc2\x2d\x4f\x4d\x0e\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x57\xdf\x6f\xdb\x36\x10\x7e\xe7\x5f\x71\x50\x5e\x23\xff\x68\xd3\xb4\xd0\x5b\x13\xb7\x45\x80\x76\x09\xea\x74\x40\x31\xec\xe1\x2c\x9e\x24\x2e\x14\x4f\xe0\x51\x6e\xbc\x61\xff\xfb\x40\x49\x76\x1c\xc7\x75\x5c\x6c\x58\x9f\x2c\x93\xc7\xef\xee\x3e\x7e\x3c\x1e\x4f\x60\x46\x05\xb6\x36\xc0\x12\x6d\x4b\x02\x05\x7b\xe0\x86\x1c\x2d\x64\xa4\x4e\xe0\xb6\x32\x02\x46\x00\xe1\xeb\xdb\x4f\x1f\xd3\x82\x7d\x8d\x21\x90\x86\xc2\x58\x8a\x06\x33\xca\x2d\x7a\x82\x25\x7a\x83\x0b\x4b\x02\x81\x61\x41\xd0\xa0\x08\x69\x30\x2e\x30\xac\xb8\xf5\x10\xa8\x6e\x2c\x06\x92\x91\x52\x7e\x81\x79\xa6\x00\x4e\x60\xde\x50\x6e\x0a\x43\x02\xdf\x2a\x0a\x15\x79\xf8\x7c\xf1\xf6\x12\x3c\x09\xb7\x3e\x27\x01\xa9\xb8\xb5\x3a\x22\xe6\x9e\x30\x90\x56\x30\x7c\x65\x10\x7c\x4b\x0a\xa0\x91\xe6\x9d\x8b\xbe\x75\x06\x05\x5a\x21\xa5\x84\xfc\xd2\xe4\xf4\x36\xcf\xb9\x75\x21\x7b\xba\xc6\x61\x4d\x99\x52\x9e\x2c\xa1\x50\x1f\x4b\xb2\xce\xdb\xf0\x78\x49\x5e\x0c\xbb\x04\x2c\x2e\xc8\x76\xac\xe4\xec\x82\x67\x0b\x8d\x45\x47\x90\x73\xdd\xb0\x23\x17\x44\x01\x0c\xd6\x19\x24\xd3\xd1\x74\x3a\x9a\x24\x4a\x99\x1a\xcb\x0e\xb7\x69\xad\xbd\x61\x6b\xf2\x55\x06\x57\xc5\x2f\x1c\x6e\x3c\x09\xb9\xa0\x00\x3c\x35\x2c\x26\xb0\x5f\x65\x90\x24\x4a\x61\x63\x62\xe0\xe4\xe3\x3a\x5a\xa7\x34\x44\xdc\x03\x6e\x82\x1c\xd7\xe9\xc6\x3c\x59\x4f\xdf\x62\xb9\x15\x43\xe7\xc0\x9a\x1c\x25\x83\x69\x8c\x84\x7d\x90\x08\x0d\x40\xf7\x81\xbc\x43\x7b\xc3\x3e\x64\xf0\xea\xfc\xd5\x79\x37\x6c\xdc\x9e\x61\x69\xd0\xf7\x14\x6d\x05\x95\x74\x44\x47\x1f\x8e\x35\xcd\xc9\x52\x1e\xd8\x67\xf0\xd7\xdf\x0a\x20\xb0\x25\x8f\xc1\xb0\x93\x0c\x7e\xfb\x5d\x01\x60\x51\x18\x67\xc2\x6a\x30\xa8\x08\x6d\xa8\x2e\x2b\xca\xef\xb2\xc1\xb1\x09\x06\xed\x8c\x2c\xae\xe6\x94\xb3\xd3\x92\xc1\xcb\x49\x37\xd7\x90\x37\xac\x37\xa3\xe7\x13\xa5\x74\xaf\xd9\x79\x60\x8f\x25\x5d\xb2\x2b\x4c\xf9\x88\xb3\x24\x92\x96\xa8\xa8\x4f\xe3\xbb\xd0\x56\xd0\x46\x3d\x2e\x56\x10\x2a\x82\xeb\x86\xdc\xbb\x8b\x79\xd4\xaa\x04\xf6\x04\x9a\x16\x6d\x09\xc6\xf5\x02\x37\xec\x00\x9d\x06\xe1\xb8\xf3\xa1\x52\x27\x10\x2a\x0c\x10\x85\x5e\x92\x8b\xc9\x75\xda\xee\xb0\x72\x6e\xbd\x10\x70\x01\xbe\x75\xce\xb8\x72\x83\x1e\x15\x83\xc6\x91\x97\x91\x5a\xa2\xdf\x84\x72\x83\xa1\x8a\xe1\x2e\x50\x68\x66\x7c\x06\xc9\x78\x89\x7e\x3c\xec\x6c\xa2\x54\xe3\x79\x69\xa2\xa2\x8e\x93\xc2\xf0\x9b\xde\xbd\x91\x74\x6b\xe9\x91\xb2\xf8\x19\x1b\x68\x39\x47\xfb\x83\x59\x6e\x99\xa7\xfd\xfa\xe5\x91\x19\x46\x9e\x3b\xce\x1f\x13\x3d\xee\x50\x7e\x96\x86\xc5\x61\x23\x15\x87\xeb\x26\xfa\xe1\xbd\x14\x0c\x25\xc7\xf6\x04\x3d\xa5\x64\x8d\x91\x3e\x18\x26\x0f\x86\xbb\xa4\xec\xf0\x7d\x00\x6e\x47\x44\x47\x91\xdc\x36\xa5\x47\x4d\xf3\x10\x0f\x47\x19\x2b\xda\x67\xea\x8b\xee\xcf\x62\xd8\xe9\xfa\x18\x5d\xc5\xd0\x52\x6d\xe4\x2e\xad\xd1\x61\x49\x3e\xc5\x5a\x9f\x9f\xed\x68\x6b\x32\x3a\xef\xb3\xde\x2e\x87\xcd\x1e\x51\xf5\xf3\x3d\x6d\x62\xfe\x8c\x9e\xa6\x93\xd7\x2f\x5f\x9f\x4d\xdf\xbc\x38\x9b\xf4\xe3\xfd\xad\x04\x49\xf7\xb7\x30\x36\x90\x97\xed\x02\x7b\x2d\x33\x23\x77\xef\xee\x73\xdb\x6a\x7a\xdf\xcd\x6f\xc2\x5f\xdb\xfc\x4a\x4e\xb3\x7f\x3a\xd9\x2f\xea\x67\x25\x83\xe4\xf2\xe3\xf5\x97\xd9\xc5\xd7\xdb\xd3\xa1\x2a\x25\x5b\x18\xf1\x50\x3c\x41\x30\xae\x43\x88\x73\xd2\xdd\x4b\x5b\xb0\xeb\x41\xcb\xdc\x9c\x16\x7a\x72\x2a\x7e\x72\x3a\xd6\xb4\x1c\x7b\xac\xfb\x0f\x5d\xa7\xfd\x47\xad\x87\x99\x85\x1e\xd4\xb7\xa0\x47\x59\xce\x09\xf3\x8a\x24\xac\x6f\xed\x23\x55\xf2\x1f\xc8\xe2\xd0\x99\xfb\xbe\x3c\x78\x58\x75\x58\x1f\xcf\x9c\x8a\xf5\xa1\xf8\x9f\xb2\x8d\xf1\xa0\x36\x8e\x44\x9e\xc3\x38\xdb\x07\x31\xed\x81\x0b\x34\xb6\xf5\x74\x5b\x79\x92\x8a\xad\x8e\xc9\xa9\x6f\xb4\xa8\x98\xef\x8e\x21\x11\x75\x6d\x24\x16\x94\xf4\x99\x8e\x65\x70\xb4\x69\x98\x4a\xc7\x9e\x9e\xb0\xfa\xaf\x49\xf9\xf1\x72\xa4\xfe\x30\x4b\xcc\xf6\xa4\x16\xc7\x8f\xb8\x87\x5e\x2a\x80\xc7\x6d\xcb\x9e\x1b\x29\x51\x2a\x97\x41\x97\x0d\xb3\xdd\x5f\xa6\x3b\x93\x34\xce\x1f\x2a\xf6\xcc\xf6\x53\x59\x87\xe7\x20\xd2\xba\xac\xc3\x01\x9c\x80\xbe\xa4\x83\x28\x46\x42\x79\x08\x61\xc9\xb6\xad\xe9\xb9\x58\x7a\xab\xc3\xd1\xa8\x8a\x6c\xd3\x5f\x5e\xbb\x20\xd6\xb8\xf6\x3e\x6d\x83\xb1\xf2\x9d\xcd\x50\x05\x61\x68\x3d\x7d\x88\x6f\x90\x47\x9a\x5d\x57\x9f\x0f\x37\xb7\x17\x28\xa4\xbf\x7c\xb9\x9a\xed\xb4\xbb\x6b\x13\x80\x2d\x94\xf7\xb6\x73\xb0\xbd\x2c\x6e\xa0\xd7\x0f\xe8\x57\x4e\x02\x5a\x3b\x9c\x0b\xd5\x44\x59\x9b\xde\x7d\xcd\x2e\xb6\xfe\xc6\x95\x3b\xbe\x1e\x0a\xf1\x93\x8e\x9f\xee\x63\x0f\x7f\xe0\x52\x56\xe8\xd0\xae\x82\xc9\x65\xdf\xa9\x5c\x3f\xb7\x56\xb1\x75\xad\x62\xdb\xda\x35\xb0\xba\xf5\x43\xcb\x5b\x04\xf2\xf0\xad\x32\x79\x05\x08\x4d\x6c\x65\x69\x49\x2e\x80\x23\xd2\xeb\x87\x5d\x7c\xbb\x8c\xa2\xc0\x8c\x2b\xaf\xe2\x7b\x61\x89\x36\x83\xe4\xc5\x59\x95\xa8\x7f\x02\x00\x00\xff\xff\x7b\x90\xd5\xf6\x4e\x0e\x00\x00"), }, "/components/prometheus-operator": &vfsgen۰DirInfo{ name: "prometheus-operator", @@ -5258,8 +5258,8 @@ var vfsgenAssets = func() http.FileSystem { fs["/components/metrics-server/templates/tests/test-version.yaml"].(os.FileInfo), } fs["/components/openebs"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ - fs["/components/openebs/.helmignore"].(os.FileInfo), fs["/components/openebs/Chart.yaml"].(os.FileInfo), + fs["/components/openebs/OWNERS"].(os.FileInfo), fs["/components/openebs/README.md"].(os.FileInfo), fs["/components/openebs/crds"].(os.FileInfo), fs["/components/openebs/templates"].(os.FileInfo),