Skip to content

Commit 264e425

Browse files
chore: Update github action for dependabot (#26)
ops: Add initial delay and docs by default for service
1 parent 87bb40d commit 264e425

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/kubernetes-charts-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ defaults:
99
jobs:
1010
helm-lint-test:
1111
runs-on: ubuntu-latest
12-
12+
if: github.event.pull_request.user.login != 'dependabot[bot]' && github.repository == 'CogStack/cogstack-platform-toolkit'
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v3

.github/workflows/observability-docker.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
jobs:
1111
docker:
1212
runs-on: ubuntu-latest
13+
if: github.event.pull_request.user.login != 'dependabot[bot]' && github.repository == 'CogStack/cogstack-platform-toolkit'
1314
strategy:
1415
matrix: # This should be replaced with Docker Bake instead
1516
include:

deployment/kubernetes/charts/medcat-trainer-helm/values.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,11 @@ resources: {}
171171
# resources, such as Minikube. If you do want to specify resources, uncomment the following
172172
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
173173
# limits:
174-
# cpu: 100m
175-
# memory: 128Mi
174+
# cpu: 3 # Recommended to leave unset. If desired to set note service performance has been found to improve up to around 3 CPU.
175+
# memory: 2Gi
176176
# requests:
177-
# cpu: 100m
178-
# memory: 128Mi
177+
# cpu: 1
178+
# memory: 1Gi
179179

180180
# This is to setup the liveness and readiness probes more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
181181
livenessProbe:
@@ -192,6 +192,7 @@ startupProbe:
192192
port: http
193193
failureThreshold: 30
194194
periodSeconds: 10
195+
initialDelaySeconds: 5
195196

196197
nginx:
197198
livenessProbe:

0 commit comments

Comments
 (0)