Skip to content

Commit 858643d

Browse files
committed
Merge branch 'master' into 5-2-update-dock-init-and-charon
2 parents a4f0df1 + fa57986 commit 858643d

12 files changed

Lines changed: 175 additions & 66 deletions

File tree

ansible/group_vars/all.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ aws_region: "us-west-2"
131131

132132
# eru
133133
eru_http_port: 5501
134+
eru_graphql_port: 5502
134135

135136
# fluffy
136137
fluffy_port: 80

ansible/group_vars/alpha-eru.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ container_envs:
3636
value: "{{ big_poppa_host_address }}:{{ big_poppa_port }}"
3737
- name: CONSUL_HOST
3838
value: "{{ consul_host_address }}:{{ consul_api_port }}"
39+
- name: DATADOG_HOST
40+
valueFrom: "spec.nodeName"
41+
- name: DATADOG_PORT
42+
value: "{{ datadog_port }}"
3943
- name: DOMAIN
4044
value: "{{ eru_subdomain }}.{{ domain }}"
4145
- name: GITHUB_CLIENT_ID

ansible/group_vars/alpha-ingress-proxy.yml

Lines changed: 27 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,35 @@ volume_mounts:
2424

2525
services:
2626
- name: api
27-
port: "{{ api_port }}"
27+
upstreams:
28+
- name: base
29+
route: "/"
30+
port: "{{ api_port }}"
2831
- name: drake
29-
port: "{{ drake_port }}"
32+
upstreams:
33+
- name: base
34+
route: "/"
35+
port: "{{ drake_port }}"
3036
- name: optimus
31-
port: "{{ optimus_port }}"
37+
upstreams:
38+
- name: base
39+
route: "/"
40+
port: "{{ optimus_port }}"
3241
- name: apisock
33-
port: "{{ api_port }}"
42+
upstreams:
43+
- name: base
44+
route: "/"
45+
port: "{{ api_port }}"
3446
- name: eru
35-
port: "{{ eru_http_port }}"
47+
upstreams:
48+
- name: base
49+
route: "/"
50+
port: "{{ eru_http_port }}"
51+
- name: graphql
52+
route: "/graphql"
53+
port: "{{ eru_graphql_port }}"
3654
- name: egret
37-
port: "{{ egret_port }}"
55+
upstreams:
56+
- name: base
57+
route: "/"
58+
port: "{{ egret_port }}"

ansible/k8/delta/api-socket-server/deployments/api-socket-server

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
- name: runnable-kubernetes-pull-secret
1414
hostname: api-socket-server
1515
containers:
16-
- image: quay.io/runnable/api:v11.39.2
16+
- image: quay.io/runnable/api:v11.41.2
1717
imagePullPolicy: Always
1818
name: api-socket-server
1919
resources:

ansible/k8/delta/api-worker/deployments/api-worker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
- name: runnable-kubernetes-pull-secret
1414
hostname: api-worker
1515
containers:
16-
- image: quay.io/runnable/api:v11.39.2
16+
- image: quay.io/runnable/api:v11.41.2
1717
imagePullPolicy: Always
1818
name: api-worker
1919
resources:

ansible/k8/delta/api/deployments/api

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
- name: runnable-kubernetes-pull-secret
1414
hostname: api
1515
containers:
16-
- image: quay.io/runnable/api:v11.39.2
16+
- image: quay.io/runnable/api:v11.41.2
1717
imagePullPolicy: Always
1818
name: api
1919
resources:

0 commit comments

Comments
 (0)