From 6999e5a4e12f92c0399a6b825ecc900ad0336f22 Mon Sep 17 00:00:00 2001 From: Dmytro Kulyk Date: Thu, 2 Jun 2022 12:57:52 +0300 Subject: [PATCH 01/11] addded prometheus and istio switchable off Signed-off-by: Dmytro Kulyk --- .../helm/space-cloud/templates/01-core.yaml | 18 ++++++++++-------- .../helm/space-cloud/templates/02-redis.yaml | 2 ++ .../space-cloud/templates/03-prometheus.yaml | 6 +++++- .../helm/space-cloud/templates/04-runner.yaml | 2 ++ .../helm/space-cloud/templates/05-gateway.yaml | 2 ++ .../helm/space-cloud/templates/keda-2.0.0.yaml | 2 +- install-manifests/helm/space-cloud/values.yaml | 6 +++++- 7 files changed, 27 insertions(+), 11 deletions(-) diff --git a/install-manifests/helm/space-cloud/templates/01-core.yaml b/install-manifests/helm/space-cloud/templates/01-core.yaml index f39f916f5..85c63b202 100644 --- a/install-manifests/helm/space-cloud/templates/01-core.yaml +++ b/install-manifests/helm/space-cloud/templates/01-core.yaml @@ -1,6 +1,15 @@ ############################################################################################# ################################ Set some global parameters ################################ ############################################################################################# +--- +apiVersion: v1 +kind: Namespace +metadata: + name: space-cloud + labels: +{{ if .Values.istio.enabled }} + istio-injection: enabled +--- apiVersion: "security.istio.io/v1beta1" kind: "PeerAuthentication" metadata: @@ -10,13 +19,6 @@ spec: mtls: mode: STRICT --- -apiVersion: v1 -kind: Namespace -metadata: - name: space-cloud - labels: - istio-injection: enabled ---- apiVersion: security.istio.io/v1beta1 kind: AuthorizationPolicy metadata: @@ -24,4 +26,4 @@ metadata: namespace: default spec: {} ---- \ No newline at end of file +{{ end }} \ No newline at end of file diff --git a/install-manifests/helm/space-cloud/templates/02-redis.yaml b/install-manifests/helm/space-cloud/templates/02-redis.yaml index 2ff491ab1..21b099c4b 100644 --- a/install-manifests/helm/space-cloud/templates/02-redis.yaml +++ b/install-manifests/helm/space-cloud/templates/02-redis.yaml @@ -7,6 +7,7 @@ metadata: name: redis namespace: space-cloud --- +{{ if .Values.istio.enabled }} ############################################################################################# ################################### Istio related config ################################### ############################################################################################# @@ -50,6 +51,7 @@ spec: port: number: 6379 --- +{{ end }} ############################################################################################# ##################################### Kubernetes config #################################### ############################################################################################# diff --git a/install-manifests/helm/space-cloud/templates/03-prometheus.yaml b/install-manifests/helm/space-cloud/templates/03-prometheus.yaml index 275cd5e63..34c0d24a9 100644 --- a/install-manifests/helm/space-cloud/templates/03-prometheus.yaml +++ b/install-manifests/helm/space-cloud/templates/03-prometheus.yaml @@ -1,6 +1,7 @@ ############################################################################################# ############################### Service Account and Roles ################################## ############################################################################################# +{{ if .Values.prometheus.enabled }} apiVersion: v1 kind: ServiceAccount metadata: @@ -57,6 +58,7 @@ roleRef: kind: ClusterRole name: prometheus --- +{{ if .Values.istio.enabled }} ############################################################################################# ################################### Istio related config ################################### ############################################################################################# @@ -103,6 +105,7 @@ spec: attempts: 3 perTryTimeout: 60s --- +{{ end }} ############################################################################################# ##################################### Kubernetes config #################################### ############################################################################################# @@ -333,4 +336,5 @@ spec: name: prometheus - name: storage-volume emptyDir: - {} \ No newline at end of file + {} +{{ end }} \ No newline at end of file diff --git a/install-manifests/helm/space-cloud/templates/04-runner.yaml b/install-manifests/helm/space-cloud/templates/04-runner.yaml index 4c62d7f86..878274839 100644 --- a/install-manifests/helm/space-cloud/templates/04-runner.yaml +++ b/install-manifests/helm/space-cloud/templates/04-runner.yaml @@ -54,6 +54,7 @@ roleRef: name: space-cloud-runner apiGroup: rbac.authorization.k8s.io --- +{{ if .Values.istio.enabled }} ############################################################################################# ################################### Istio related config ################################### ############################################################################################# @@ -133,6 +134,7 @@ spec: port: number: 4060 --- +{{ end }} ############################################################################################# ##################################### Kubernetes config #################################### ############################################################################################# diff --git a/install-manifests/helm/space-cloud/templates/05-gateway.yaml b/install-manifests/helm/space-cloud/templates/05-gateway.yaml index af62ab446..bdf1fb930 100644 --- a/install-manifests/helm/space-cloud/templates/05-gateway.yaml +++ b/install-manifests/helm/space-cloud/templates/05-gateway.yaml @@ -34,6 +34,7 @@ roleRef: name: space-cloud-gateway apiGroup: rbac.authorization.k8s.io --- +{{ if .Values.istio.enabled }} ############################################################################################# ################################### Istio related config ################################### ############################################################################################# @@ -141,6 +142,7 @@ spec: attempts: 3 perTryTimeout: 60s --- +{{ end }} ############################################################################################# ##################################### Kubernetes config #################################### ############################################################################################# diff --git a/install-manifests/helm/space-cloud/templates/keda-2.0.0.yaml b/install-manifests/helm/space-cloud/templates/keda-2.0.0.yaml index 6c1c7ee49..862a01634 100644 --- a/install-manifests/helm/space-cloud/templates/keda-2.0.0.yaml +++ b/install-manifests/helm/space-cloud/templates/keda-2.0.0.yaml @@ -7269,4 +7269,4 @@ spec: namespace: keda version: v1beta1 versionPriority: 100 -{{end}} \ No newline at end of file +{{ end }} \ No newline at end of file diff --git a/install-manifests/helm/space-cloud/values.yaml b/install-manifests/helm/space-cloud/values.yaml index 4403e3424..bc3f470dd 100644 --- a/install-manifests/helm/space-cloud/values.yaml +++ b/install-manifests/helm/space-cloud/values.yaml @@ -79,6 +79,7 @@ redis: # Prometheus service configuration prometheus: + enabled: true image: name: "prom/prometheus" version: "v2.19.0" @@ -106,7 +107,10 @@ dbEvents: memory: "512Mi" cpu: "500m" +istio: + enabled: true + # Connection string used by gateway & runner to connect to other services connections: redisConn: "redis.space-cloud.svc.cluster.local:6379" - prometheusConn: "http://prometheus.space-cloud.svc.cluster.local:9090" \ No newline at end of file + prometheusConn: "http://prometheus.space-cloud.svc.cluster.local:9090" From ae67f506618e11811d224faa6c3d420315cf854c Mon Sep 17 00:00:00 2001 From: Dmytro Kulyk Date: Thu, 2 Jun 2022 13:32:28 +0300 Subject: [PATCH 02/11] added namespace creation switchable Signed-off-by: Dmytro Kulyk --- install-manifests/helm/space-cloud/Chart.yaml | 7 ++++--- install-manifests/helm/space-cloud/templates/01-core.yaml | 7 +++++-- install-manifests/helm/space-cloud/values.yaml | 1 + 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/install-manifests/helm/space-cloud/Chart.yaml b/install-manifests/helm/space-cloud/Chart.yaml index 8b20b1341..a5889a8fa 100644 --- a/install-manifests/helm/space-cloud/Chart.yaml +++ b/install-manifests/helm/space-cloud/Chart.yaml @@ -1,11 +1,12 @@ +--- apiVersion: v3 name: space-cloud -version: 0.21.5 # Chart version -appVersion: 0.21.5 # Space Cloud version +version: 0.21.6 # Chart version +appVersion: 0.21.5 # Space Cloud version description: Helm Chart to install Space Cloud type: application keywords: -- baaS + - baaS home: https://spaceuptech.com/ sources: - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/space-cloud diff --git a/install-manifests/helm/space-cloud/templates/01-core.yaml b/install-manifests/helm/space-cloud/templates/01-core.yaml index 85c63b202..94d5b5260 100644 --- a/install-manifests/helm/space-cloud/templates/01-core.yaml +++ b/install-manifests/helm/space-cloud/templates/01-core.yaml @@ -1,15 +1,18 @@ ############################################################################################# ################################ Set some global parameters ################################ ############################################################################################# ---- +{{ if .Values.createNamespace }} apiVersion: v1 kind: Namespace metadata: name: space-cloud labels: -{{ if .Values.istio.enabled }} + {{ if .Values.istio.enabled }} istio-injection: enabled + {{ end }} --- +{{ end }} +{{ if .Values.istio.enabled }} apiVersion: "security.istio.io/v1beta1" kind: "PeerAuthentication" metadata: diff --git a/install-manifests/helm/space-cloud/values.yaml b/install-manifests/helm/space-cloud/values.yaml index bc3f470dd..a746fd672 100644 --- a/install-manifests/helm/space-cloud/values.yaml +++ b/install-manifests/helm/space-cloud/values.yaml @@ -5,6 +5,7 @@ clusterId: "default" devMode: "true" # Turn this to false for production mode isKedaEnabled: true # Set this to false to skip installing keda +createNamespace: true admin: username: "admin" # Log in username From faef8d74b57e3e8885ac8fbb029935651c4ff058 Mon Sep 17 00:00:00 2001 From: Dmytro Kulyk Date: Thu, 2 Jun 2022 13:45:11 +0300 Subject: [PATCH 03/11] switched to use AppVersion instead of ChartVersion Signed-off-by: Dmytro Kulyk --- install-manifests/helm/space-cloud/Chart.yaml | 2 +- install-manifests/helm/space-cloud/templates/04-runner.yaml | 2 +- install-manifests/helm/space-cloud/templates/05-gateway.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/install-manifests/helm/space-cloud/Chart.yaml b/install-manifests/helm/space-cloud/Chart.yaml index a5889a8fa..0966be63d 100644 --- a/install-manifests/helm/space-cloud/Chart.yaml +++ b/install-manifests/helm/space-cloud/Chart.yaml @@ -1,7 +1,7 @@ --- apiVersion: v3 name: space-cloud -version: 0.21.6 # Chart version +version: 0.21.5.1 # Chart version appVersion: 0.21.5 # Space Cloud version description: Helm Chart to install Space Cloud type: application diff --git a/install-manifests/helm/space-cloud/templates/04-runner.yaml b/install-manifests/helm/space-cloud/templates/04-runner.yaml index 878274839..5a9f34995 100644 --- a/install-manifests/helm/space-cloud/templates/04-runner.yaml +++ b/install-manifests/helm/space-cloud/templates/04-runner.yaml @@ -178,7 +178,7 @@ spec: containers: - name: runner command: ["./app", "start"] - image: "{{ .Values.runner.image.name }}:{{ .Chart.Version }}" + image: "{{ .Values.runner.image.name }}:{{ .Chart.AppVersion }}" imagePullPolicy: {{ .Values.runner.image.pullPolicy }} env: - name: "LOG_LEVEL" diff --git a/install-manifests/helm/space-cloud/templates/05-gateway.yaml b/install-manifests/helm/space-cloud/templates/05-gateway.yaml index bdf1fb930..7954c4cc4 100644 --- a/install-manifests/helm/space-cloud/templates/05-gateway.yaml +++ b/install-manifests/helm/space-cloud/templates/05-gateway.yaml @@ -187,7 +187,7 @@ spec: containers: - name: gateway command: [ "./app", "run" ] - image: "{{ .Values.gateway.image.name }}:{{ .Chart.Version }}" + image: "{{ .Values.gateway.image.name }}:{{ .Chart.AppVersion }}" imagePullPolicy: {{ .Values.gateway.image.pullPolicy }} livenessProbe: exec: From 1067109ed2107fa2280636ffd56fd0345d221f61 Mon Sep 17 00:00:00 2001 From: Dmytro Kulyk Date: Thu, 2 Jun 2022 13:56:27 +0300 Subject: [PATCH 04/11] version to SemVer2 Signed-off-by: Dmytro Kulyk --- install-manifests/helm/space-cloud/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-manifests/helm/space-cloud/Chart.yaml b/install-manifests/helm/space-cloud/Chart.yaml index 0966be63d..d5395222b 100644 --- a/install-manifests/helm/space-cloud/Chart.yaml +++ b/install-manifests/helm/space-cloud/Chart.yaml @@ -1,7 +1,7 @@ --- apiVersion: v3 name: space-cloud -version: 0.21.5.1 # Chart version +version: 0.21.5-1 # Chart version appVersion: 0.21.5 # Space Cloud version description: Helm Chart to install Space Cloud type: application From d3a3d7e9874b8b512af1d64a5ae1539a9436a4f2 Mon Sep 17 00:00:00 2001 From: Noorain Panjwani Date: Tue, 3 Jan 2023 21:09:24 +0530 Subject: [PATCH 05/11] Update feature_request.md Signed-off-by: Dmytro Kulyk --- .github/ISSUE_TEMPLATE/feature_request.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index b61c994fc..27e83c30f 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,15 +1,24 @@ --- -name: Feature request -about: Suggest an idea for this project +name: 🚀 Feature request +about: Suggest an idea for improving SpaceCloud title: '' -labels: '' +labels: 'enhancement' assignees: '' --- ### The problem faced currently? + ### How can we solve it? + + >If you want this feature to be implemented, give it a thumbs up reaction, so that we can determine which features are important to you. >👍 From a4421ea687e6024a2758ce88cc336d9b2ab26bda Mon Sep 17 00:00:00 2001 From: Noorain Panjwani Date: Tue, 3 Jan 2023 21:17:10 +0530 Subject: [PATCH 06/11] Updated issue templates Signed-off-by: Dmytro Kulyk --- .github/ISSUE_TEMPLATE/feature_request.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 27e83c30f..c4892abd7 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,8 +1,8 @@ --- -name: 🚀 Feature request +name: "\U0001F680 Feature request" about: Suggest an idea for improving SpaceCloud -title: '' -labels: 'enhancement' +title: "[Feature] " +labels: enhancement assignees: '' --- @@ -21,4 +21,4 @@ assignees: '' >If you want this feature to be implemented, give it a thumbs up reaction, so that we can determine which features are important to you. ->👍 +>👍 From ff2209e3e715d2ed1438b7e99508b4e6fd339d65 Mon Sep 17 00:00:00 2001 From: Noorain Panjwani Date: Tue, 3 Jan 2023 21:20:41 +0530 Subject: [PATCH 07/11] Update issue templates Signed-off-by: Dmytro Kulyk --- .../\360\237\220\233-bug-report.md" | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) rename .github/ISSUE_TEMPLATE/bug_report.md => ".github/ISSUE_TEMPLATE/\360\237\220\233-bug-report.md" (53%) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md "b/.github/ISSUE_TEMPLATE/\360\237\220\233-bug-report.md" similarity index 53% rename from .github/ISSUE_TEMPLATE/bug_report.md rename to ".github/ISSUE_TEMPLATE/\360\237\220\233-bug-report.md" index dc3e09acb..cd88713f5 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ "b/.github/ISSUE_TEMPLATE/\360\237\220\233-bug-report.md" @@ -1,25 +1,32 @@ --- -name: Bug report +name: "\U0001F41B Bug report" about: Create a report to help us improve -title: '' -labels: '' +title: "[Bug] " +labels: "\U0001F41B bug" assignees: '' --- ### Describe the bug + -### Expected behaviour +### Expected behavior + -### Actual behaviour ### Steps to reproduce + ### Your environment - Space Cloud version: - OS: - Kubernetes or Docker: -- The client api version (if applicable): - Browser (if applicable): >If this bug restricts your use of space-cloud, give it a thumbs up reaction, so that we can determine which bugs need to be fixed immediately. From 0a7668cdce4be2d5a969d5fb527048a815045d78 Mon Sep 17 00:00:00 2001 From: Tania Duggal <103496926+taniaduggal@users.noreply.github.com> Date: Sun, 9 Apr 2023 11:29:01 +0530 Subject: [PATCH 08/11] Change the wrong links in helm charts (#1637) Signed-off-by: Tania Duggal Signed-off-by: Dmytro Kulyk --- install-manifests/helm/index.yaml | 358 +++++++++++++++--------------- 1 file changed, 179 insertions(+), 179 deletions(-) diff --git a/install-manifests/helm/index.yaml b/install-manifests/helm/index.yaml index 93404bdf6..98afddecc 100644 --- a/install-manifests/helm/index.yaml +++ b/install-manifests/helm/index.yaml @@ -1,181 +1,181 @@ apiVersion: v1 entries: - mongo: - - apiVersion: v3 - created: "2021-01-05T12:46:09.53046294+05:30" - description: NoSQL document-oriented database that stores JSON-like documents with dynamic schemas, simplifying the integration of data in content-driven applications. - digest: ef353218f19c51c27d0b8afe41f8a0a65ac60bbeefd8e6056358dabc2258b0cc - home: https://spaceuptech.com/ - keywords: - - mongodb - - database - - nosql - - cluster - - replicaset - - replication - name: mongo - sources: - - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/mongo - type: application - urls: - - https://storage.googleapis.com/space-cloud/helm/mongo/mongo-0.1.0.tgz - version: 0.1.0 - mysql: - - apiVersion: v3 - created: "2021-01-05T12:46:09.530763094+05:30" - description: Fast, reliable, scalable, and easy to use open-source relational database system. - digest: d9cecac9640e5cc291734817af2b81cab0adb2680ee4747837e1741a08e75569 - home: https://spaceuptech.com/ - keywords: - - mysql - - database - - sql - name: mysql - sources: - - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/mysql - type: application - urls: - - https://storage.googleapis.com/space-cloud/helm/mysql/mysql-0.1.0.tgz - version: 0.1.0 - postgres: - - apiVersion: v3 - created: "2021-01-05T12:46:09.531372995+05:30" - description: Chart for PostgreSQL, an object-relational database management system (ORDBMS) with an emphasis on extensibility and on standards-compliance. - digest: 192225aa0ddf6fc81696224563427c98bae71da15b2257f6de6b8ac95dc7b7be - home: https://spaceuptech.com/ - keywords: - - postgresql - - postgres - - database - - sql - - replication - - cluster - name: postgres - sources: - - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/postgres - type: application - urls: - - https://storage.googleapis.com/space-cloud/helm/postgres/postgres-0.1.0.tgz - version: 0.1.0 - space-cloud: - - apiVersion: v3 - appVersion: 0.21.5 - created: "2021-08-28T17:31:29.7808904+05:30" - description: Helm Chart to install Space Cloud - digest: 039b940b76271251737042d124933509f6686ae046eae0547e2ae88df0b0e70a - home: https://spaceuptech.com/ - keywords: - - baaS - name: space-cloud - sources: - - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/space-cloud - type: application - urls: - - https://storage.googleapis.com/space-cloud/helm/space-cloud/space-cloud-0.21.5.tgz - version: 0.21.5 - - apiVersion: v3 - appVersion: 0.21.4 - created: "2021-04-11T17:48:01.3535066+05:30" - description: Helm Chart to install Space Cloud - digest: f55d68e504dde40ee2c614bfe76dc50765d07121c4b3f36e06f793dcf51a48e4 - home: https://spaceuptech.com/ - keywords: - - baaS - name: space-cloud - sources: - - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/space-cloud - type: application - urls: - - https://storage.googleapis.com/space-cloud/helm/space-cloud/space-cloud-0.21.4.tgz - version: 0.21.4 - - apiVersion: v3 - appVersion: 0.21.3 - created: "2021-04-08T20:34:30.3655429+05:30" - description: Helm Chart to install Space Cloud - digest: 414cdc95f2729f15f65a63725fca161754cc92e5884ba87baa5d7d2ec94e1dbe - home: https://spaceuptech.com/ - keywords: - - baaS - name: space-cloud - sources: - - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/space-cloud - type: application - urls: - - https://storage.googleapis.com/space-cloud/helm/space-cloud/space-cloud-0.21.3.tgz - version: 0.21.3 - - apiVersion: v3 - appVersion: 0.21.2 - created: "2021-03-23T14:50:26.9208374+05:30" - description: Helm Chart to install Space Cloud - digest: 566cbbd7cb3bdbb5080ef048171a8087bab9036b26ae9b3a1016fb8fea6b4511 - home: https://spaceuptech.com/ - keywords: - - baaS - name: space-cloud - sources: - - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/space-cloud - type: application - urls: - - https://storage.googleapis.com/space-cloud/helm/space-cloud/space-cloud-0.21.2.tgz - version: 0.21.2 - - apiVersion: v3 - appVersion: 0.21.1 - created: "2021-03-15T18:22:43.8366512+05:30" - description: Helm Chart to install Space Cloud - digest: 7eab2c64ace8f777197399ea218fba2d0ba7e0d4cc17e63ad1037d3b1ec2ce6e - home: https://spaceuptech.com/ - keywords: - - baaS - name: space-cloud - sources: - - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/space-cloud - type: application - urls: - - https://storage.googleapis.com/space-cloud/helm/space-cloud/space-cloud-0.21.1.tgz - version: 0.21.1 - - apiVersion: v3 - appVersion: 0.21.0 - created: "2021-01-05T12:46:09.53491962+05:30" - description: Helm Chart to install Space Cloud - digest: d575d5b697b51c125385fb4ad6cab1a1bcef837b459dae93541180c6fbb8c96b - home: https://spaceuptech.com/ - keywords: - - baaS - name: space-cloud - sources: - - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/space-cloud - type: application - urls: - - https://storage.googleapis.com/space-cloud/helm/space-cloud/space-cloud-0.21.0.tgz - version: 0.21.0 - - apiVersion: v3 - appVersion: 0.20.1 - created: "2020-12-14T18:39:40.36524145+05:30" - description: Helm Chart to install Space Cloud - digest: 14b40d52c0b09ac4cd19a432a9c9b703abd040470947d009c183c3d6bf4ccfc8 - home: https://spaceuptech.com/ - keywords: - - baaS - name: space-cloud - sources: - - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/space-cloud - type: application - urls: - - https://storage.googleapis.com/space-cloud/helm/space-cloud/space-cloud-0.20.1.tgz - version: 0.20.1 - sqlserver: - - apiVersion: v3 - created: "2021-01-05T12:46:09.535865991+05:30" - description: SQL Server Helm Chart - digest: ed6df4856519ee38a2548f593bf8684998b63d050f4c449cc9d6d15f18ed4a31 - home: https://spaceuptech.com/ - keywords: - - database - name: sqlserver - sources: - - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/sqlserver - type: application - urls: - - https://storage.googleapis.com/space-cloud/helm/sqlserver/sqlserver-0.1.0.tgz - version: 0.1.0 -generated: "2021-08-28T17:31:29.7671307+05:30" + mongo: + - apiVersion: v3 + created: '2021-01-05T12:46:09.53046294+05:30' + description: NoSQL document-oriented database that stores JSON-like documents with dynamic schemas, simplifying the integration of data in content-driven applications. + digest: ef353218f19c51c27d0b8afe41f8a0a65ac60bbeefd8e6056358dabc2258b0cc + home: https://space-cloud.io/ + keywords: + - mongodb + - database + - nosql + - cluster + - replicaset + - replication + name: mongo + sources: + - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/mongo + type: application + urls: + - https://storage.googleapis.com/space-cloud/helm/mongo/mongo-0.1.0.tgz + version: 0.1.0 + mysql: + - apiVersion: v3 + created: '2021-01-05T12:46:09.530763094+05:30' + description: Fast, reliable, scalable, and easy to use open-source relational database system. + digest: d9cecac9640e5cc291734817af2b81cab0adb2680ee4747837e1741a08e75569 + home: https://space-cloud.io/ + keywords: + - mysql + - database + - sql + name: mysql + sources: + - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/mysql + type: application + urls: + - https://storage.googleapis.com/space-cloud/helm/mysql/mysql-0.1.0.tgz + version: 0.1.0 + postgres: + - apiVersion: v3 + created: '2021-01-05T12:46:09.531372995+05:30' + description: Chart for PostgreSQL, an object-relational database management system (ORDBMS) with an emphasis on extensibility and on standards-compliance. + digest: 192225aa0ddf6fc81696224563427c98bae71da15b2257f6de6b8ac95dc7b7be + home: https://space-cloud.io/ + keywords: + - postgresql + - postgres + - database + - sql + - replication + - cluster + name: postgres + sources: + - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/postgres + type: application + urls: + - https://storage.googleapis.com/space-cloud/helm/postgres/postgres-0.1.0.tgz + version: 0.1.0 + space-cloud: + - apiVersion: v3 + appVersion: 0.21.5 + created: '2021-08-28T17:31:29.7808904+05:30' + description: Helm Chart to install Space Cloud + digest: 039b940b76271251737042d124933509f6686ae046eae0547e2ae88df0b0e70a + home: https://space-cloud.io/ + keywords: + - baaS + name: space-cloud + sources: + - https://github.com/spacecloud-io/space-cloud/tree/master/install-manifests/helm/space-cloud + type: application + urls: + - https://storage.googleapis.com/space-cloud/helm/space-cloud/space-cloud-0.21.5.tgz + version: 0.21.5 + - apiVersion: v3 + appVersion: 0.21.4 + created: '2021-04-11T17:48:01.3535066+05:30' + description: Helm Chart to install Space Cloud + digest: f55d68e504dde40ee2c614bfe76dc50765d07121c4b3f36e06f793dcf51a48e4 + home: https://space-cloud.io/ + keywords: + - baaS + name: space-cloud + sources: + - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/space-cloud + type: application + urls: + - https://storage.googleapis.com/space-cloud/helm/space-cloud/space-cloud-0.21.4.tgz + version: 0.21.4 + - apiVersion: v3 + appVersion: 0.21.3 + created: '2021-04-08T20:34:30.3655429+05:30' + description: Helm Chart to install Space Cloud + digest: 414cdc95f2729f15f65a63725fca161754cc92e5884ba87baa5d7d2ec94e1dbe + home: https://space-cloud.io/ + keywords: + - baaS + name: space-cloud + sources: + - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/space-cloud + type: application + urls: + - https://storage.googleapis.com/space-cloud/helm/space-cloud/space-cloud-0.21.3.tgz + version: 0.21.3 + - apiVersion: v3 + appVersion: 0.21.2 + created: '2021-03-23T14:50:26.9208374+05:30' + description: Helm Chart to install Space Cloud + digest: 566cbbd7cb3bdbb5080ef048171a8087bab9036b26ae9b3a1016fb8fea6b4511 + home: https://space-cloud.io/ + keywords: + - baaS + name: space-cloud + sources: + - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/space-cloud + type: application + urls: + - https://storage.googleapis.com/space-cloud/helm/space-cloud/space-cloud-0.21.2.tgz + version: 0.21.2 + - apiVersion: v3 + appVersion: 0.21.1 + created: '2021-03-15T18:22:43.8366512+05:30' + description: Helm Chart to install Space Cloud + digest: 7eab2c64ace8f777197399ea218fba2d0ba7e0d4cc17e63ad1037d3b1ec2ce6e + home: https://space-cloud.io/ + keywords: + - baaS + name: space-cloud + sources: + - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/space-cloud + type: application + urls: + - https://storage.googleapis.com/space-cloud/helm/space-cloud/space-cloud-0.21.1.tgz + version: 0.21.1 + - apiVersion: v3 + appVersion: 0.21.0 + created: '2021-01-05T12:46:09.53491962+05:30' + description: Helm Chart to install Space Cloud + digest: d575d5b697b51c125385fb4ad6cab1a1bcef837b459dae93541180c6fbb8c96b + home: https://space-cloud.io/ + keywords: + - baaS + name: space-cloud + sources: + - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/space-cloud + type: application + urls: + - https://storage.googleapis.com/space-cloud/helm/space-cloud/space-cloud-0.21.0.tgz + version: 0.21.0 + - apiVersion: v3 + appVersion: 0.20.1 + created: '2020-12-14T18:39:40.36524145+05:30' + description: Helm Chart to install Space Cloud + digest: 14b40d52c0b09ac4cd19a432a9c9b703abd040470947d009c183c3d6bf4ccfc8 + home: https://space-cloud.io/ + keywords: + - baaS + name: space-cloud + sources: + - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/space-cloud + type: application + urls: + - https://storage.googleapis.com/space-cloud/helm/space-cloud/space-cloud-0.20.1.tgz + version: 0.20.1 + sqlserver: + - apiVersion: v3 + created: '2021-01-05T12:46:09.535865991+05:30' + description: SQL Server Helm Chart + digest: ed6df4856519ee38a2548f593bf8684998b63d050f4c449cc9d6d15f18ed4a31 + home: https://space-cloud.io/ + keywords: + - database + name: sqlserver + sources: + - https://github.com/spaceuptech/space-cloud/tree/master/install-manifests/helm/sqlserver + type: application + urls: + - https://storage.googleapis.com/space-cloud/helm/sqlserver/sqlserver-0.1.0.tgz + version: 0.1.0 +generated: '2021-08-28T17:31:29.7671307+05:30' From 683c759269142510f61515cbcfbf48122d6a4ebc Mon Sep 17 00:00:00 2001 From: Noorain Panjwani Date: Sun, 28 Jan 2024 12:46:41 -0800 Subject: [PATCH 09/11] SpaceCloud is now in maintenance mode Signed-off-by: Dmytro Kulyk --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index a979f5655..40dd53992 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +> SpaceCloud is currently in maintaiance mode. +> Checkout [Hasura](https://hasura.io) or [Wundergraph](https://wundergraph.com) instead. +>

Space Cloud

From 8b848f65f8936359932df466083d3a36ff34d7e7 Mon Sep 17 00:00:00 2001 From: Dmytro Kulyk <34435869+KulykDmytro@users.noreply.github.com> Date: Thu, 8 Feb 2024 12:24:11 +0200 Subject: [PATCH 10/11] change default for istio Signed-off-by: Dmytro Kulyk --- install-manifests/helm/space-cloud/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-manifests/helm/space-cloud/values.yaml b/install-manifests/helm/space-cloud/values.yaml index a746fd672..f9a5e3acb 100644 --- a/install-manifests/helm/space-cloud/values.yaml +++ b/install-manifests/helm/space-cloud/values.yaml @@ -109,7 +109,7 @@ dbEvents: cpu: "500m" istio: - enabled: true + enabled: false # Connection string used by gateway & runner to connect to other services connections: From df2bbbcaf86ce65b2461b0898f85f0b59ed16234 Mon Sep 17 00:00:00 2001 From: Dmytro Kulyk <34435869+KulykDmytro@users.noreply.github.com> Date: Thu, 4 Jul 2024 13:03:25 +0300 Subject: [PATCH 11/11] switch hpa to autoscaling/v2 --- install-manifests/helm/space-cloud/templates/04-runner.yaml | 2 +- install-manifests/helm/space-cloud/templates/05-gateway.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install-manifests/helm/space-cloud/templates/04-runner.yaml b/install-manifests/helm/space-cloud/templates/04-runner.yaml index 5a9f34995..323927458 100644 --- a/install-manifests/helm/space-cloud/templates/04-runner.yaml +++ b/install-manifests/helm/space-cloud/templates/04-runner.yaml @@ -209,7 +209,7 @@ spec: memory: {{ .Values.runner.resources.requests.memory }} cpu: {{ .Values.runner.resources.requests.cpu }} --- -apiVersion: autoscaling/v2beta2 +apiVersion: autoscaling/v2 kind: HorizontalPodAutoscaler metadata: name: runner diff --git a/install-manifests/helm/space-cloud/templates/05-gateway.yaml b/install-manifests/helm/space-cloud/templates/05-gateway.yaml index 7954c4cc4..2b239b482 100644 --- a/install-manifests/helm/space-cloud/templates/05-gateway.yaml +++ b/install-manifests/helm/space-cloud/templates/05-gateway.yaml @@ -266,7 +266,7 @@ spec: {{ end }} terminationGracePeriodSeconds: 300 --- -apiVersion: autoscaling/v2beta2 +apiVersion: autoscaling/v2 kind: HorizontalPodAutoscaler metadata: name: gateway