Skip to content

Commit b65a217

Browse files
authored
Change directory-server to native by default (#429)
Signed-off-by: BOUHOURS Antoine <[email protected]>
1 parent e603a9d commit b65a217

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

k8s/components/gridsuite/kustomization.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,11 @@ patches:
9292
kind: Deployment
9393
labelSelector: "app.kubernetes.io/component=gridsuite-springboot"
9494
annotationSelector: "gridsuite.org/size=springboot-xxl-forking"
95+
- path: patches/deployments-springnative-size-xs.yaml
96+
target:
97+
kind: Deployment
98+
labelSelector: "app.kubernetes.io/component=gridsuite-springboot"
99+
annotationSelector: "gridsuite.org/size=springnative-xs"
95100
- path: patches/deployments-springboot-elasticsearch-config.yaml
96101
target:
97102
kind: Deployment
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
apiVersion: apps/v1
2+
kind: Deployment
3+
metadata:
4+
name: not-important
5+
spec:
6+
template:
7+
spec:
8+
containers:
9+
- name: main
10+
resources:
11+
requests:
12+
memory: "256Mi"
13+
limits:
14+
memory: "256Mi"

k8s/live/azure-integ/kustomization.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ images:
9393
digest: 1ba1e6c93fcd7cbfa7b122378a8c2bb26968d23b467915777b0598ab5278a81e
9494
- name: docker.io/gridsuite/cgmes-assembling-job
9595
digest: 38237f9ad50da707bfd20dd731dd05b73ff0b31b099ea1e8c6a224394ec91c76
96-
- name: docker.io/gridsuite/directory-server
97-
digest: 440b0813942a5855b392f1f19948e2448b2cfda8d7a348b8931f0843682c51fe
96+
- name: docker.io/gridsuite/directory-server-native
97+
digest: todo
9898
- name: docker.io/gridsuite/explore-server
9999
digest: todo
100100
- name: docker.io/gridsuite/cgmes-boundary-import-job

k8s/resources/study/directory-server-deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ metadata:
99
gridsuite.org/springboot-with-database: "true"
1010
gridsuite.org/springboot-with-rabbitmq: "true"
1111
annotations:
12-
gridsuite.org/size: springboot-xs
12+
gridsuite.org/size: springnative-xs
1313
spec:
1414
selector:
1515
matchLabels:
@@ -21,7 +21,7 @@ spec:
2121
spec:
2222
containers:
2323
- name: main
24-
image: docker.io/gridsuite/directory-server:latest
24+
image: docker.io/gridsuite/directory-server-native:latest
2525
volumeMounts:
2626
- mountPath: /config/specific
2727
name: directory-server-configmap-specific-volume

0 commit comments

Comments
 (0)