Skip to content
Snippets Groups Projects
Commit 788bb125 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Manifests:

- updated replicas of service and pathcomp to 5
- temporarily disabled WebUI Grafana
parent a56a5557
No related branches found
No related tags found
2 merge requests!54Release 2.0.0,!36Performance Evaluation Framework + Helper Tools
...@@ -20,6 +20,7 @@ spec: ...@@ -20,6 +20,7 @@ spec:
selector: selector:
matchLabels: matchLabels:
app: pathcompservice app: pathcompservice
replicas: 5
template: template:
metadata: metadata:
labels: labels:
......
...@@ -20,7 +20,7 @@ spec: ...@@ -20,7 +20,7 @@ spec:
selector: selector:
matchLabels: matchLabels:
app: serviceservice app: serviceservice
replicas: 1 replicas: 5
template: template:
metadata: metadata:
labels: labels:
......
...@@ -60,43 +60,43 @@ spec: ...@@ -60,43 +60,43 @@ spec:
limits: limits:
cpu: 700m cpu: 700m
memory: 1024Mi memory: 1024Mi
- name: grafana # - name: grafana
image: grafana/grafana:8.5.11 # image: grafana/grafana:8.5.11
imagePullPolicy: IfNotPresent # imagePullPolicy: IfNotPresent
ports: # ports:
- containerPort: 3000 # - containerPort: 3000
name: http-grafana # name: http-grafana
protocol: TCP # protocol: TCP
env: # env:
- name: GF_SERVER_ROOT_URL # - name: GF_SERVER_ROOT_URL
value: "http://0.0.0.0:3000/grafana/" # value: "http://0.0.0.0:3000/grafana/"
- name: GF_SERVER_SERVE_FROM_SUB_PATH # - name: GF_SERVER_SERVE_FROM_SUB_PATH
value: "true" # value: "true"
readinessProbe: # readinessProbe:
failureThreshold: 3 # failureThreshold: 3
httpGet: # httpGet:
path: /robots.txt # path: /robots.txt
port: 3000 # port: 3000
scheme: HTTP # scheme: HTTP
initialDelaySeconds: 10 # initialDelaySeconds: 10
periodSeconds: 30 # periodSeconds: 30
successThreshold: 1 # successThreshold: 1
timeoutSeconds: 2 # timeoutSeconds: 2
livenessProbe: # livenessProbe:
failureThreshold: 3 # failureThreshold: 3
initialDelaySeconds: 30 # initialDelaySeconds: 30
periodSeconds: 10 # periodSeconds: 10
successThreshold: 1 # successThreshold: 1
tcpSocket: # tcpSocket:
port: 3000 # port: 3000
timeoutSeconds: 1 # timeoutSeconds: 1
resources: # resources:
requests: # requests:
cpu: 250m # cpu: 250m
memory: 750Mi # memory: 750Mi
limits: # limits:
cpu: 700m # cpu: 700m
memory: 1024Mi # memory: 1024Mi
--- ---
apiVersion: v1 apiVersion: v1
kind: Service kind: Service
...@@ -110,6 +110,6 @@ spec: ...@@ -110,6 +110,6 @@ spec:
- name: webui - name: webui
port: 8004 port: 8004
targetPort: 8004 targetPort: 8004
- name: grafana # - name: grafana
port: 3000 # port: 3000
targetPort: 3000 # targetPort: 3000
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment