Skip to content

Commit d4fabde

Browse files
committed
fix: correct YAML indentation in router-deployment-clusterip.yaml
- Fix volumeMounts indentation (proper 2-space indentation) - Fix args indentation (proper 2-space indentation) - Fix resources indentation (proper 2-space indentation) - Fix livenessProbe indentation (proper 2-space indentation) - Fix readinessProbe indentation (proper 2-space indentation) - Ensures all container spec elements are properly aligned - Resolves yamllint indentation and syntax errors
1 parent c1dde7e commit d4fabde

File tree

1 file changed

+30
-30
lines changed

1 file changed

+30
-30
lines changed

k8s/router-deployment-clusterip.yaml

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -32,36 +32,36 @@ spec:
3232
- name: PORT
3333
value: "4000"
3434
volumeMounts:
35-
- name: router-config
36-
mountPath: /dist/config.yaml
37-
subPath: config.yaml
38-
- name: supergraph-schema
39-
mountPath: /dist/supergraph.graphql
40-
subPath: supergraph.graphql
41-
args:
42-
- "--config"
43-
- "/dist/config.yaml"
44-
- "--supergraph"
45-
- "/dist/supergraph.graphql"
46-
resources:
47-
requests:
48-
memory: "128Mi"
49-
cpu: "100m"
50-
limits:
51-
memory: "256Mi"
52-
cpu: "200m"
53-
livenessProbe:
54-
httpGet:
55-
path: /health
56-
port: 8088
57-
initialDelaySeconds: 30
58-
periodSeconds: 10
59-
readinessProbe:
60-
httpGet:
61-
path: /health
62-
port: 8088
63-
initialDelaySeconds: 5
64-
periodSeconds: 5
35+
- name: router-config
36+
mountPath: /dist/config.yaml
37+
subPath: config.yaml
38+
- name: supergraph-schema
39+
mountPath: /dist/supergraph.graphql
40+
subPath: supergraph.graphql
41+
args:
42+
- "--config"
43+
- "/dist/config.yaml"
44+
- "--supergraph"
45+
- "/dist/supergraph.graphql"
46+
resources:
47+
requests:
48+
memory: "128Mi"
49+
cpu: "100m"
50+
limits:
51+
memory: "256Mi"
52+
cpu: "200m"
53+
livenessProbe:
54+
httpGet:
55+
path: /health
56+
port: 8088
57+
initialDelaySeconds: 30
58+
periodSeconds: 10
59+
readinessProbe:
60+
httpGet:
61+
path: /health
62+
port: 8088
63+
initialDelaySeconds: 5
64+
periodSeconds: 5
6565
volumes:
6666
- name: router-config
6767
configMap:

0 commit comments

Comments
 (0)