diff --git a/charts/cluedin-application/1.5.0/cluedin-application-1.5.0.tgz b/charts/cluedin-application/1.5.0/cluedin-application-1.5.0.tgz new file mode 100644 index 0000000..6ee018c Binary files /dev/null and b/charts/cluedin-application/1.5.0/cluedin-application-1.5.0.tgz differ diff --git a/charts/cluedin-infrastructure/1.5.0/cluedin-infrastructure-1.5.0.tgz b/charts/cluedin-infrastructure/1.5.0/cluedin-infrastructure-1.5.0.tgz new file mode 100644 index 0000000..23684e6 Binary files /dev/null and b/charts/cluedin-infrastructure/1.5.0/cluedin-infrastructure-1.5.0.tgz differ diff --git a/charts/cluedin-platform/1.5.0/cluedin-platform-1.5.0.tgz b/charts/cluedin-platform/1.5.0/cluedin-platform-1.5.0.tgz new file mode 100644 index 0000000..59f3382 Binary files /dev/null and b/charts/cluedin-platform/1.5.0/cluedin-platform-1.5.0.tgz differ diff --git a/cluedin-crd/cluedin-crd.1.5.0.yaml b/cluedin-crd/cluedin-crd.1.5.0.yaml new file mode 100644 index 0000000..4d32520 --- /dev/null +++ b/cluedin-crd/cluedin-crd.1.5.0.yaml @@ -0,0 +1,494 @@ +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + # name must match the spec fields below, and be in the form: . + name: datasourcegroups.api.cluedin.com + labels: + app: cluedin +spec: + # group name to use for REST API: /apis// + group: api.cluedin.com + # list of versions supported by this CustomResourceDefinition + versions: + - name: v1 + # Each version can be enabled/disabled by Served flag. + served: true + # One and only one version must be marked as the storage version. + storage: true + schema: + openAPIV3Schema: + type: object + properties: + spec: + type: object + properties: + id: + type: string + name: + type: string + userSecret: + type: string + organization: + type: string + dataSources: + type: array + items: + type: object + properties: + id: + type: string + name: + type: string + path: + type: string + remoteUrl: + type: string + entityType: + type: string + dataSetId: + type: string + settings: + type: object + properties: + autoCreateAnnotation: + type: boolean + autoSubmitDataSets: + type: boolean + status: + type: object + properties: + phase: + type: string + message: + type: string + additionalPrinterColumns: + - jsonPath: .spec.organization + name: 'Organization' + description: 'Organization name' + type: string + - jsonPath: .spec.userSecret + name: 'User Secret' + description: 'The access secret of the user' + type: string + - jsonPath: .spec.settings.autoCreateAnnotation + name: 'Create Annotation ?' + description: 'Should the system automatically create a simple annotation?' + type: boolean + - jsonPath: .spec.settings.autoSubmitDataSets + name: 'Submit Datasets ?' + description: 'Should the system automatically submit the data sets?' + type: boolean + - name: Phase + type: string + jsonPath: '.status.phase' + - name: Status + type: string + jsonPath: '.status.message' + subresources: + status: {} + # either Namespaced or Cluster + scope: Namespaced + names: + # plural name to be used in the URL: /apis/// + plural: datasourcegroups + # singular name to be used as an alias on the CLI and for display + singular: datasourcegroup + # kind is normally the CamelCased singular type. Your resource manifests use this. + kind: DataSourceGroup + # shortNames allow shorter string to match your resource on the CLI + shortNames: + - dsg +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + # name must match the spec fields below, and be in the form: . + name: sendmails.api.cluedin.com + labels: + app: cluedin +spec: + # group name to use for REST API: /apis// + group: api.cluedin.com + # list of versions supported by this CustomResourceDefinition + versions: + - name: v1 + # Each version can be enabled/disabled by Served flag. + served: true + # One and only one version must be marked as the storage version. + storage: true + schema: + openAPIV3Schema: + type: object + properties: + spec: + type: object + properties: + id: + type: string + emailSecret: + type: string + emailTemplateResource: + type: string + required: + - emailSecret + - emailTemplateResource + status: + type: object + properties: + phase: + type: string + message: + type: string + additionalPrinterColumns: + - jsonPath: .spec.emailSecret + name: 'Email Secret' + description: 'Email login details secret' + type: string + - jsonPath: .spec.emailTemplateResource + name: 'Email Template' + description: 'Email template configmap' + type: string + - name: Phase + type: string + jsonPath: '.status.phase' + - name: Status + type: string + jsonPath: '.status.message' + subresources: + status: {} + # either Namespaced or Cluster + scope: Namespaced + names: + # plural name to be used in the URL: /apis/// + plural: sendmails + # singular name to be used as an alias on the CLI and for display + singular: sendmail + # kind is normally the CamelCased singular type. Your resource manifests use this. + kind: SendMail + # shortNames allow shorter string to match your resource on the CLI + shortNames: + - sm +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + # name must match the spec fields below, and be in the form: . + name: features.api.cluedin.com + labels: + app: cluedin +spec: + # group name to use for REST API: /apis// + group: api.cluedin.com + # list of versions supported by this CustomResourceDefinition + versions: + - name: v1 + # Each version can be enabled/disabled by Served flag. + served: true + # One and only one version must be marked as the storage version. + storage: true + schema: + openAPIV3Schema: + type: object + properties: + spec: + type: object + properties: + enableSso: + type: object + properties: + id: + type: string + clientId: + type: string + clientSecretName: + type: string + clientSecretKey: + type: string + organizationName: + type: string + status: + type: object + properties: + phase: + type: string + message: + type: string + additionalPrinterColumns: + - jsonPath: .spec.enableSso.id + name: 'SSO - Registration ID' + description: 'The ID of the Single-Sign-On registration.' + type: string + - jsonPath: .spec.enableSso.clientId + name: 'SSO - Client ID' + description: 'The ID of the Single-Sign-On client.' + type: string + - name: Phase + type: string + jsonPath: '.status.phase' + - name: Status + type: string + jsonPath: '.status.message' + subresources: + status: {} + # either Namespaced or Cluster + scope: Namespaced + names: + # plural name to be used in the URL: /apis/// + plural: features + # singular name to be used as an alias on the CLI and for display + singular: feature + # kind is normally the CamelCased singular type. Your resource manifests use this. + kind: Feature + # shortNames allow shorter string to match your resource on the CLI + shortNames: + - feat + - feats +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + # name must match the spec fields below, and be in the form: . + name: organizations.api.cluedin.com + labels: + app: cluedin +spec: + # group name to use for REST API: /apis// + group: api.cluedin.com + # list of versions supported by this CustomResourceDefinition + versions: + - name: v1 + # Each version can be enabled/disabled by Served flag. + served: true + # One and only one version must be marked as the storage version. + storage: true + schema: + openAPIV3Schema: + type: object + properties: + spec: + type: object + properties: + name: + type: string + adminUserSecret: + type: string + id: + type: string + status: + type: object + properties: + phase: + type: string + message: + type: string + additionalPrinterColumns: + - jsonPath: .spec.name + name: 'Organization Name' + description: 'The name of the organization' + type: string + - jsonPath: .spec.adminUserSecret + name: 'Admin User Secret' + description: 'The secret containing the username & password of the admin user' + type: string + - jsonPath: .spec.id + name: 'Organization Id' + description: 'Id of the organization' + type: string + - name: Phase + type: string + jsonPath: '.status.phase' + - name: Status + type: string + jsonPath: '.status.message' + subresources: + status: {} + # either Namespaced or Cluster + scope: Namespaced + names: + # plural name to be used in the URL: /apis/// + plural: organizations + # singular name to be used as an alias on the CLI and for display + singular: organization + # kind is normally the CamelCased singular type. Your resource manifests use this. + kind: Organization + # shortNames allow shorter string to match your resource on the CLI + shortNames: + - org + - orgs +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + # name must match the spec fields below, and be in the form: . + name: sqlservertargets.api.cluedin.com + labels: + app: cluedin +spec: + # group name to use for REST API: /apis// + group: api.cluedin.com + # list of versions supported by this CustomResourceDefinition + versions: + - name: v1 + # Each version can be enabled/disabled by Served flag. + served: true + # One and only one version must be marked as the storage version. + storage: true + schema: + openAPIV3Schema: + type: object + properties: + spec: + type: object + properties: + id: + type: string + databaseHost: + type: string + databaseName: + type: string + databasePort: + type: integer + default: 1433 + databaseCreateSecret: + type: string + databaseWriteSecret: + type: string + databaseReadSecret: + type: string + organization: + type: string + userSecret: + type: string + required: + - databaseName + - organization + - userSecret + - databaseWriteSecret + - databaseReadSecret + status: + type: object + properties: + phase: + type: string + message: + type: string + additionalPrinterColumns: + - jsonPath: .spec.organization + name: 'Organization' + description: 'Organization name' + type: string + - jsonPath: .spec.databaseName + name: 'SQL Server Database Name' + description: 'SQL Server database to write the data to' + type: string + - jsonPath: .spec.databaseHost + name: 'SQL Server Host' + description: 'SQL Server Host' + type: string + - name: Phase + type: string + jsonPath: '.status.phase' + - name: Status + type: string + jsonPath: '.status.message' + subresources: + status: {} + # either Namespaced or Cluster + scope: Namespaced + names: + # plural name to be used in the URL: /apis/// + plural: sqlservertargets + # singular name to be used as an alias on the CLI and for display + singular: sqlservertarget + # kind is normally the CamelCased singular type. Your resource manifests use this. + kind: SqlServerTarget + # shortNames allow shorter string to match your resource on the CLI + shortNames: + - sqlt + - sqlts +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + # name must match the spec fields below, and be in the form: . + name: trialsettings.api.cluedin.com + labels: + app: cluedin +spec: + # group name to use for REST API: /apis// + group: api.cluedin.com + # list of versions supported by this CustomResourceDefinition + versions: + - name: v1 + # Each version can be enabled/disabled by Served flag. + served: true + # One and only one version must be marked as the storage version. + storage: true + schema: + openAPIV3Schema: + type: object + properties: + spec: + type: object + properties: + id: + type: string + organizationResource: + type: string + exportTargetResource: + type: string + emailSecret: + type: string + emailTemplateResource: + type: string + required: + - organizationResource + - exportTargetResource + - emailSecret + - emailTemplateResource + status: + type: object + properties: + phase: + type: string + message: + type: string + additionalPrinterColumns: + - jsonPath: .spec.organizationResource + name: 'Organization' + description: 'Organization resource name' + type: string + - jsonPath: .spec.exportTargetResource + name: 'Export Target' + description: 'Export Target resource name' + type: string + - jsonPath: .spec.emailSecret + name: 'Email Secret' + description: 'Email login details secret' + type: string + - jsonPath: .spec.emailTemplateResource + name: 'Email Template' + description: 'Email template configmap' + type: string + - name: Phase + type: string + jsonPath: '.status.phase' + - name: Status + type: string + jsonPath: '.status.message' + subresources: + status: {} + # either Namespaced or Cluster + scope: Namespaced + names: + # plural name to be used in the URL: /apis/// + plural: trialsettings + # singular name to be used as an alias on the CLI and for display + singular: trailsetting + # kind is normally the CamelCased singular type. Your resource manifests use this. + kind: TrialSetting + # shortNames allow shorter string to match your resource on the CLI + shortNames: + - tr + - trs diff --git a/index.yaml b/index.yaml index 10d05f3..fb73b22 100644 --- a/index.yaml +++ b/index.yaml @@ -495,9 +495,38 @@ entries: - charts/cluedin/3.1.1/cluedIn-3.1.1.tgz version: 3.1.1 cluedin-application: + - apiVersion: v2 + appVersion: "2023.04" + created: "2023-04-27T13:15:26.811473177Z" + dependencies: + - alias: common + name: cluedin-common + repository: file://../cluedin-common + version: 1.x.x + - alias: cluedincontroller + condition: cluedincontroller.enabled, global.cluedincontroller.enabled + name: cluedin-controller + repository: file://../cluedin-controller + version: 1.x.x + - condition: openrefine.enabled, global.openrefine.enabled + name: openrefine + repository: file://../openrefine + version: 1.x.x + description: Deploys the applications for the CluedIn platform + digest: 73e6f71b6ed801cfcab17864436d998f7ab9dc72f9440d7bc5b99e3b91ef8322 + icon: https://www.cluedin.net/favicon.png + kubeVersion: '>=1.21.0-0' + maintainers: + - email: support@cluedin.com + name: Support + name: cluedin-application + type: application + urls: + - charts/cluedin-application/1.5.0/cluedin-application-1.5.0.tgz + version: 1.5.0 - apiVersion: v2 appVersion: "2022.10" - created: "2022-12-20T09:55:41.23424578Z" + created: "2023-04-27T13:15:26.803166379Z" dependencies: - alias: common name: cluedin-common @@ -526,7 +555,7 @@ entries: version: 1.4.2 - apiVersion: v2 appVersion: "2022.10" - created: "2022-12-20T09:55:41.226183075Z" + created: "2023-04-27T13:15:26.79550559Z" dependencies: - alias: common name: cluedin-common @@ -555,7 +584,7 @@ entries: version: 1.4.1 - apiVersion: v2 appVersion: "2022.10" - created: "2022-12-20T09:55:41.21654591Z" + created: "2023-04-27T13:15:26.78700559Z" dependencies: - alias: common name: cluedin-common @@ -584,7 +613,7 @@ entries: version: 1.4.0 - apiVersion: v2 appVersion: "2022.06" - created: "2022-12-20T09:55:41.20729066Z" + created: "2023-04-27T13:15:26.780199411Z" dependencies: - alias: common name: cluedin-common @@ -613,7 +642,7 @@ entries: version: 1.3.5 - apiVersion: v2 appVersion: "2022.06" - created: "2022-12-20T09:55:41.19804131Z" + created: "2023-04-27T13:15:26.768863578Z" dependencies: - alias: common name: cluedin-common @@ -642,7 +671,7 @@ entries: version: 1.3.4 - apiVersion: v2 appVersion: "2022.06" - created: "2022-12-20T09:55:41.189666493Z" + created: "2023-04-27T13:15:26.760924385Z" dependencies: - alias: common name: cluedin-common @@ -671,7 +700,7 @@ entries: version: 1.3.3 - apiVersion: v2 appVersion: "2022.06" - created: "2022-12-20T09:55:41.181165771Z" + created: "2023-04-27T13:15:26.75277319Z" dependencies: - alias: common name: cluedin-common @@ -700,7 +729,7 @@ entries: version: 1.3.2 - apiVersion: v2 appVersion: "2022.06" - created: "2022-12-20T09:55:41.17242184Z" + created: "2023-04-27T13:15:26.746348015Z" dependencies: - alias: common name: cluedin-common @@ -729,7 +758,7 @@ entries: version: 1.3.1 - apiVersion: v2 appVersion: "2022.06" - created: "2022-12-20T09:55:41.163250993Z" + created: "2023-04-27T13:15:26.738628224Z" dependencies: - alias: common name: cluedin-common @@ -758,7 +787,7 @@ entries: version: 1.3.0 - apiVersion: v2 appVersion: 3.3.2 - created: "2022-12-20T09:55:41.155660106Z" + created: "2023-04-27T13:15:26.731290039Z" dependencies: - alias: common name: cluedin-common @@ -787,7 +816,7 @@ entries: version: 1.2.0 - apiVersion: v2 appVersion: 3.3.1 - created: "2022-12-20T09:55:41.146903674Z" + created: "2023-04-27T13:15:26.725016365Z" dependencies: - alias: common name: cluedin-common @@ -816,7 +845,7 @@ entries: version: 1.1.0 - apiVersion: v2 appVersion: 3.3.0 - created: "2022-12-20T09:55:41.138006137Z" + created: "2023-04-27T13:15:26.717303775Z" dependencies: - alias: common name: cluedin-common @@ -845,7 +874,7 @@ entries: version: 1.0.2 - apiVersion: v2 appVersion: 3.3.0 - created: "2022-12-20T09:55:41.131167378Z" + created: "2023-04-27T13:15:26.710497195Z" dependencies: - alias: common name: cluedin-common @@ -874,7 +903,7 @@ entries: version: 1.0.1 - apiVersion: v2 appVersion: 3.3.0 - created: "2022-12-20T09:55:41.121674819Z" + created: "2023-04-27T13:15:26.704467525Z" dependencies: - alias: common name: cluedin-common @@ -903,7 +932,7 @@ entries: version: 1.0.0 - apiVersion: v2 appVersion: 3.3.0 - created: "2022-12-20T09:55:41.1132312Z" + created: "2023-04-27T13:15:26.696486131Z" dependencies: - alias: common name: cluedin-common @@ -931,9 +960,59 @@ entries: - charts/cluedin-application/1.0.0/cluedin-application-1.0.0-beta.22.tgz version: 1.0.0-beta.22 cluedin-infrastructure: + - apiVersion: v2 + appVersion: "2023.04" + created: "2023-04-27T13:15:26.62030034Z" + dependencies: + - condition: elasticsearch.enabled, global.elasticsearch.enabled + name: elasticsearch + repository: https://helm.elastic.co + version: 7.14.x + - alias: monitoring + condition: monitoring.enabled, global.monitoring.enabled + name: kube-prometheus-stack + repository: https://prometheus-community.github.io/helm-charts + version: 39.x.x + - condition: neo4j.enabled, global.neo4j.enabled + name: neo4j + repository: file://../neo4j + version: 4.4.x-internal + - condition: rabbitmq.enabled, global.rabbitmq.enabled + name: rabbitmq + repository: https://charts.bitnami.com/bitnami + version: 10.3.x + - condition: redis.enabled, global.redis.enabled + name: redis + repository: https://charts.bitnami.com/bitnami + version: 16.13.x + - alias: mssql + condition: mssql.enabled, global.mssql.enabled + name: mssql-linux + repository: file://../mssql-linux + version: 0.12.x + - condition: haproxy-ingress.enabled, global.haproxy-ingress.enabled + name: haproxy-ingress + repository: https://haproxy-ingress.github.io/charts + version: 0.13.x + - condition: cert-manager.enabled, global.cert-manager.enabled + name: cert-manager + repository: https://charts.jetstack.io + version: v1.8.x + description: Deploys infrastructure for CluedIn Platform + digest: 8c25564767c6f6eda68662af102a8e76031590ecf9a94b4cb8cdfaf8f1162729 + icon: https://www.cluedin.net/favicon.png + kubeVersion: '>=1.21.0-0' + maintainers: + - email: support@cluedin.com + name: Support + name: cluedin-infrastructure + type: application + urls: + - charts/cluedin-infrastructure/1.5.0/cluedin-infrastructure-1.5.0.tgz + version: 1.5.0 - apiVersion: v2 appVersion: "2022.10" - created: "2022-12-20T09:55:41.023201191Z" + created: "2023-04-27T13:15:26.573122788Z" dependencies: - condition: elasticsearch.enabled, global.elasticsearch.enabled name: elasticsearch @@ -987,7 +1066,7 @@ entries: version: 1.4.2 - apiVersion: v2 appVersion: "2022.10" - created: "2022-12-20T09:55:40.966741154Z" + created: "2023-04-27T13:15:26.526142839Z" dependencies: - condition: elasticsearch.enabled, global.elasticsearch.enabled name: elasticsearch @@ -1041,7 +1120,7 @@ entries: version: 1.4.1 - apiVersion: v2 appVersion: "2022.10" - created: "2022-12-20T09:55:40.906481873Z" + created: "2023-04-27T13:15:26.476964463Z" dependencies: - condition: elasticsearch.enabled, global.elasticsearch.enabled name: elasticsearch @@ -1095,7 +1174,7 @@ entries: version: 1.4.0 - apiVersion: v2 appVersion: "2022.06" - created: "2022-12-20T09:55:40.851126678Z" + created: "2023-04-27T13:15:26.418003574Z" dependencies: - condition: elasticsearch.enabled, global.elasticsearch.enabled name: elasticsearch @@ -1149,7 +1228,7 @@ entries: version: 1.3.5 - apiVersion: v2 appVersion: "2022.06" - created: "2022-12-20T09:55:40.794521735Z" + created: "2023-04-27T13:15:26.34933317Z" dependencies: - condition: elasticsearch.enabled, global.elasticsearch.enabled name: elasticsearch @@ -1203,7 +1282,7 @@ entries: version: 1.3.4 - apiVersion: v2 appVersion: "2022.06" - created: "2022-12-20T09:55:40.740369485Z" + created: "2023-04-27T13:15:26.290442781Z" dependencies: - condition: elasticsearch.enabled, global.elasticsearch.enabled name: elasticsearch @@ -1257,7 +1336,7 @@ entries: version: 1.3.3 - apiVersion: v2 appVersion: "2022.06" - created: "2022-12-20T09:55:40.683227822Z" + created: "2023-04-27T13:15:26.229314266Z" dependencies: - condition: elasticsearch.enabled, global.elasticsearch.enabled name: elasticsearch @@ -1311,7 +1390,7 @@ entries: version: 1.3.2 - apiVersion: v2 appVersion: "2022.06" - created: "2022-12-20T09:55:40.626411571Z" + created: "2023-04-27T13:15:26.169909171Z" dependencies: - condition: elasticsearch.enabled, global.elasticsearch.enabled name: elasticsearch @@ -1365,7 +1444,7 @@ entries: version: 1.3.1 - apiVersion: v2 appVersion: "2022.06" - created: "2022-12-20T09:55:40.569475916Z" + created: "2023-04-27T13:15:26.107483441Z" dependencies: - condition: elasticsearch.enabled, global.elasticsearch.enabled name: elasticsearch @@ -1419,7 +1498,7 @@ entries: version: 1.3.0 - apiVersion: v2 appVersion: 3.3.2 - created: "2022-12-20T09:55:40.514354329Z" + created: "2023-04-27T13:15:26.049349066Z" dependencies: - condition: elasticsearch.enabled, global.elasticsearch.enabled name: elasticsearch @@ -1473,7 +1552,7 @@ entries: version: 1.2.0 - apiVersion: v2 appVersion: 3.3.1 - created: "2022-12-20T09:55:40.463346598Z" + created: "2023-04-27T13:15:26.001206712Z" dependencies: - condition: elasticsearch.enabled, global.elasticsearch.enabled name: elasticsearch @@ -1527,7 +1606,7 @@ entries: version: 1.1.0 - apiVersion: v2 appVersion: 3.3.0 - created: "2022-12-20T09:55:40.41345241Z" + created: "2023-04-27T13:15:25.958893725Z" dependencies: - condition: elasticsearch.enabled, global.elasticsearch.enabled name: elasticsearch @@ -1581,7 +1660,7 @@ entries: version: 1.0.2 - apiVersion: v2 appVersion: 3.3.0 - created: "2022-12-20T09:55:40.353610244Z" + created: "2023-04-27T13:15:25.909879661Z" dependencies: - condition: elasticsearch.enabled, global.elasticsearch.enabled name: elasticsearch @@ -1635,7 +1714,7 @@ entries: version: 1.0.1 - apiVersion: v2 appVersion: 3.3.0 - created: "2022-12-20T09:55:40.305183811Z" + created: "2023-04-27T13:15:25.863144623Z" dependencies: - condition: elasticsearch.enabled, global.elasticsearch.enabled name: elasticsearch @@ -1689,7 +1768,7 @@ entries: version: 1.0.0 - apiVersion: v2 appVersion: 3.3.0 - created: "2022-12-20T09:55:40.225224784Z" + created: "2023-04-27T13:15:25.807763686Z" dependencies: - condition: elasticsearch.enabled, global.elasticsearch.enabled name: elasticsearch @@ -1742,9 +1821,39 @@ entries: - charts/cluedin-infrastructure/1.0.0/cluedin-infrastructure-1.0.0-beta.22.tgz version: 1.0.0-beta.22 cluedin-platform: + - apiVersion: v2 + appVersion: "2023.04" + created: "2023-04-27T13:15:27.747374325Z" + dependencies: + - alias: common + name: cluedin-common + repository: file://../cluedin-common + version: 1.x.x + - alias: infrastructure + condition: infrastructure.enabled, global.infrastructure.enabled + name: cluedin-infrastructure + repository: file://../cluedin-infrastructure + version: x.x.x + - alias: application + condition: application.enabled, global.application.enabled + name: cluedin-application + repository: file://../cluedin-application + version: x.x.x + description: Deploys all parts of the CluedIn platform + digest: 085baef480e9c8ca155241036d2a8b0510e554e9bc370010969f41f943fb3a59 + icon: https://www.cluedin.net/favicon.png + kubeVersion: '>=1.21.0-0' + maintainers: + - email: support@cluedin.com + name: Support + name: cluedin-platform + type: application + urls: + - charts/cluedin-platform/1.5.0/cluedin-platform-1.5.0.tgz + version: 1.5.0 - apiVersion: v2 appVersion: "2022.10" - created: "2022-12-20T09:55:42.30649777Z" + created: "2023-04-27T13:15:27.691518772Z" dependencies: - alias: common name: cluedin-common @@ -1774,7 +1883,7 @@ entries: version: 1.4.2 - apiVersion: v2 appVersion: "2022.10" - created: "2022-12-20T09:55:42.243374481Z" + created: "2023-04-27T13:15:27.635387315Z" dependencies: - alias: common name: cluedin-common @@ -1804,7 +1913,7 @@ entries: version: 1.4.1 - apiVersion: v2 appVersion: "2022.10" - created: "2022-12-20T09:55:42.174454872Z" + created: "2023-04-27T13:15:27.58199099Z" dependencies: - alias: common name: cluedin-common @@ -1834,7 +1943,7 @@ entries: version: 1.4.0 - apiVersion: v2 appVersion: "2022.06" - created: "2022-12-20T09:55:42.105948878Z" + created: "2023-04-27T13:15:27.528609666Z" dependencies: - alias: common name: cluedin-common @@ -1864,7 +1973,7 @@ entries: version: 1.3.5 - apiVersion: v2 appVersion: "2022.06" - created: "2022-12-20T09:55:42.034691781Z" + created: "2023-04-27T13:15:27.472454409Z" dependencies: - alias: common name: cluedin-common @@ -1894,7 +2003,7 @@ entries: version: 1.3.4 - apiVersion: v2 appVersion: "2022.06" - created: "2022-12-20T09:55:41.971153676Z" + created: "2023-04-27T13:15:27.416516255Z" dependencies: - alias: common name: cluedin-common @@ -1924,7 +2033,7 @@ entries: version: 1.3.3 - apiVersion: v2 appVersion: "2022.06" - created: "2022-12-20T09:55:41.903331708Z" + created: "2023-04-27T13:15:27.361330709Z" dependencies: - alias: common name: cluedin-common @@ -1954,7 +2063,7 @@ entries: version: 1.3.2 - apiVersion: v2 appVersion: "2022.06" - created: "2022-12-20T09:55:41.831050872Z" + created: "2023-04-27T13:15:27.310079609Z" dependencies: - alias: common name: cluedin-common @@ -1984,7 +2093,7 @@ entries: version: 1.3.1 - apiVersion: v2 appVersion: "2022.06" - created: "2022-12-20T09:55:41.75992798Z" + created: "2023-04-27T13:15:27.256132978Z" dependencies: - alias: common name: cluedin-common @@ -2014,7 +2123,7 @@ entries: version: 1.3.0 - apiVersion: v2 appVersion: 3.3.2 - created: "2022-12-20T09:55:41.692856241Z" + created: "2023-04-27T13:15:27.200013922Z" dependencies: - alias: common name: cluedin-common @@ -2044,7 +2153,7 @@ entries: version: 1.2.0 - apiVersion: v2 appVersion: 3.3.1 - created: "2022-12-20T09:55:41.63312068Z" + created: "2023-04-27T13:15:27.149904036Z" dependencies: - alias: common name: cluedin-common @@ -2074,7 +2183,7 @@ entries: version: 1.1.0 - apiVersion: v2 appVersion: 3.3.0 - created: "2022-12-20T09:55:41.573968641Z" + created: "2023-04-27T13:15:27.098852838Z" dependencies: - alias: common name: cluedin-common @@ -2104,7 +2213,7 @@ entries: version: 1.0.2 - apiVersion: v2 appVersion: 3.3.0 - created: "2022-12-20T09:55:41.516914581Z" + created: "2023-04-27T13:15:27.047856942Z" dependencies: - alias: common name: cluedin-common @@ -2134,7 +2243,7 @@ entries: version: 1.0.1 - apiVersion: v2 appVersion: 3.3.0 - created: "2022-12-20T09:55:41.454783229Z" + created: "2023-04-27T13:15:26.99811106Z" dependencies: - alias: common name: cluedin-common @@ -2164,7 +2273,7 @@ entries: version: 1.0.0 - apiVersion: v2 appVersion: 3.3.0 - created: "2022-12-20T09:55:41.382515393Z" + created: "2023-04-27T13:15:26.93745335Z" dependencies: - alias: common name: cluedin-common @@ -2192,4 +2301,4 @@ entries: urls: - charts/cluedin-platform/1.0.0/cluedin-platform-1.0.0-beta.22.tgz version: 1.0.0-beta.22 -generated: "2022-12-20T09:55:41.313666787Z" +generated: "2023-04-27T13:15:26.881763999Z"