Commit 1076b47b authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Merge branch 'feat/context-performance-scalability' into 'develop'

Context & Device Performance Enhancements

See merge request !87
parents 5b07d6e1 bfeb5492
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -422,7 +422,7 @@ if [[ "$TFS_COMPONENTS" == *"webui"* ]]; then
        },
        "secureJsonData": {"password": "'${QDB_PASSWORD}'"}
    }' ${GRAFANA_URL_UPDATED}/api/datasources
    printf "\n\n"
    echo

    # adding the datasource of the metrics collection framework
    curl -X POST -H "Content-Type: application/json" -H "Accept: application/json" -d '{
+2 −1
Original line number Diff line number Diff line
@@ -42,7 +42,8 @@ spec:
# You can set either a version of the db or a specific image name
# cockroachDBVersion: v22.2.0
  image:
    name: cockroachdb/cockroach:v22.2.0
    #name: cockroachdb/cockroach:v22.2.0
    name: cockroachdb/cockroach:latest-v22.2
  # nodes refers to the number of crdb pods that are created
  # via the statefulset
  nodes: 3
+1 −0
Original line number Diff line number Diff line
@@ -61,6 +61,7 @@ spec:
      containers:
      - name: cockroachdb
        image: cockroachdb/cockroach:latest-v22.2
        imagePullPolicy: Always
        args:
        - start-single-node
        ports:
+4 −4
Original line number Diff line number Diff line
@@ -45,11 +45,11 @@ spec:
            command: ["/bin/grpc_health_probe", "-addr=:2020"]
        resources:
          requests:
            cpu: 128m
            memory: 64Mi
          limits:
            cpu: 256m
            cpu: 250m
            memory: 128Mi
          limits:
            cpu: 1000m
            memory: 1024Mi
---
apiVersion: v1
kind: Service
+4 −4
Original line number Diff line number Diff line
@@ -45,11 +45,11 @@ spec:
            command: ["/bin/grpc_health_probe", "-addr=:3030"]
        resources:
          requests:
            cpu: 32m
            memory: 32Mi
            cpu: 250m
            memory: 128Mi
          limits:
            cpu: 128m
            memory: 64Mi
            cpu: 1000m
            memory: 1024Mi
---
apiVersion: v1
kind: Service
Loading