Update to reflect the resource limit changes in cara-webservice.
This commit is contained in:
parent
aeeb68cc09
commit
a2fd0e7fe5
1 changed files with 17 additions and 2 deletions
|
|
@ -207,7 +207,23 @@
|
||||||
- containerPort: 8080
|
- containerPort: 8080
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
resources: {}
|
readinessProbe:
|
||||||
|
failureThreshold: 3
|
||||||
|
httpGet:
|
||||||
|
path: /calculator-cern
|
||||||
|
port: 8080
|
||||||
|
scheme: HTTP
|
||||||
|
initialDelaySeconds: 3
|
||||||
|
periodSeconds: 10
|
||||||
|
successThreshold: 1
|
||||||
|
timeoutSeconds: 1
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
cpu: '3'
|
||||||
|
memory: 3Gi
|
||||||
|
requests:
|
||||||
|
cpu: '1'
|
||||||
|
memory: 1Gi
|
||||||
terminationMessagePath: /dev/termination-log
|
terminationMessagePath: /dev/termination-log
|
||||||
terminationMessagePolicy: File
|
terminationMessagePolicy: File
|
||||||
dnsPolicy: ClusterFirst
|
dnsPolicy: ClusterFirst
|
||||||
|
|
@ -229,7 +245,6 @@
|
||||||
selector:
|
selector:
|
||||||
app: cara-webservice
|
app: cara-webservice
|
||||||
triggers:
|
triggers:
|
||||||
- type: ConfigChange
|
|
||||||
- type: ImageChange
|
- type: ImageChange
|
||||||
imageChangeParams:
|
imageChangeParams:
|
||||||
automatic: true
|
automatic: true
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue