File tree 4 files changed +12
-10
lines changed
4 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ spec:
164
164
match : Host(`about.{{ .Values.marketing.domain }}`)
165
165
services :
166
166
- name : {{ include "chart.fullname" . }}-marketing-web
167
- port : 3000
167
+ port : {{ .Values.marketing.port }}
168
168
{{- if not .Values.debug }}
169
169
tls :
170
170
certResolver : le
@@ -192,7 +192,7 @@ spec:
192
192
match : Host(`{{ .Values.pincer.domain }}`)
193
193
services :
194
194
- name : {{ include "chart.fullname" . }}-pincer-web
195
- port : 8000
195
+ port : {{ .Values.pincer.port }}
196
196
{{- if not .Values.debug }}
197
197
tls :
198
198
certResolver : le
Original file line number Diff line number Diff line change @@ -40,11 +40,11 @@ spec:
40
40
cpu : 100m
41
41
memory : 200Mi
42
42
limits :
43
- cpu : 2
43
+ cpu : 2000m
44
44
memory : 500Mi
45
45
ports :
46
46
- name : web
47
- containerPort : 3000
47
+ containerPort : {{ .Values.marketing.port }}
48
48
{{- if .Values.healthChecks }}
49
49
startupProbe :
50
50
httpGet :
83
83
component : marketing-web
84
84
ports :
85
85
- name : web
86
- port : 3000
87
- targetPort : 3000
86
+ port : {{ .Values.marketing.port }}
87
+ targetPort : {{ .Values.marketing.port }}
88
88
{{- end }}
Original file line number Diff line number Diff line change 44
44
memory : 500Mi
45
45
ports :
46
46
- name : web
47
- containerPort : 3000
47
+ containerPort : {{ .Values.pincer.port }}
48
48
{{- if .Values.healthChecks }}
49
49
startupProbe :
50
50
httpGet :
83
83
component : pincer-web
84
84
ports :
85
85
- name : web
86
- port : 8000
87
- targetPort : 8000
86
+ port : {{ .Values.pincer.port }}
87
+ targetPort : {{ .Values.pincer.port }}
88
88
{{- end }}
Original file line number Diff line number Diff line change @@ -97,14 +97,16 @@ discord_bot:
97
97
98
98
marketing :
99
99
enable : true
100
- domain : " anubis-lms.io"
100
+ domain : " about.anubis-lms.io"
101
+ port : 3000
101
102
image : " registry.digitalocean.com/anubis/marketing-site"
102
103
tag : " latest"
103
104
replicas : 1
104
105
105
106
pincer :
106
107
enable : true
107
108
domain : " pincer.anubis-lms.io"
109
+ port : 8000
108
110
image : " registry.digitalocean.com/anubis/pincer"
109
111
tag : " latest"
110
112
replicas : 1
You can’t perform that action at this time.
0 commit comments