feat(gotosocial): support ACCOUNT_DOMAIN
This commit is contained in:
parent
0ee2e35e49
commit
16f2416d07
3 changed files with 4 additions and 3 deletions
|
@ -5,7 +5,7 @@ icon: https://docs.gotosocial.org/en/latest/assets/sloth.png
|
||||||
home: https://github.com/superseriousbusiness/gotosocial
|
home: https://github.com/superseriousbusiness/gotosocial
|
||||||
|
|
||||||
type: application
|
type: application
|
||||||
version: 0.1.1
|
version: 0.1.2
|
||||||
appVersion: "0.5.2"
|
appVersion: "0.5.2"
|
||||||
|
|
||||||
maintainers:
|
maintainers:
|
||||||
|
|
|
@ -20,7 +20,7 @@ spec:
|
||||||
initContainers:
|
initContainers:
|
||||||
- env:
|
- env:
|
||||||
- name: GTS_ACCOUNT_DOMAIN
|
- name: GTS_ACCOUNT_DOMAIN
|
||||||
value: {{ .Release.Name }}.{{ .Values.gtsBulkDomain }}
|
value: {{ default (cat .Release.Name "." .Values.gtsBulkDomain | nospace) .Values.gtsAccountDomain }}
|
||||||
- name: GTS_APPLICATION_NAME
|
- name: GTS_APPLICATION_NAME
|
||||||
value: {{ .Release.Name }}-gts
|
value: {{ .Release.Name }}-gts
|
||||||
- name: GTS_DB_ADDRESS
|
- name: GTS_DB_ADDRESS
|
||||||
|
@ -42,7 +42,7 @@ spec:
|
||||||
containers:
|
containers:
|
||||||
- env:
|
- env:
|
||||||
- name: GTS_ACCOUNT_DOMAIN
|
- name: GTS_ACCOUNT_DOMAIN
|
||||||
value: {{ .Release.Name }}.{{ .Values.gtsBulkDomain }}
|
value: {{ default (cat .Release.Name "." .Values.gtsBulkDomain | nospace) .Values.gtsAccountDomain }}
|
||||||
- name: GTS_APPLICATION_NAME
|
- name: GTS_APPLICATION_NAME
|
||||||
value: {{ .Release.Name }}-gts
|
value: {{ .Release.Name }}-gts
|
||||||
- name: GTS_DB_ADDRESS
|
- name: GTS_DB_ADDRESS
|
||||||
|
|
|
@ -18,6 +18,7 @@ resources:
|
||||||
memory: 256Mi
|
memory: 256Mi
|
||||||
|
|
||||||
gtsBulkDomain: "socaas.site"
|
gtsBulkDomain: "socaas.site"
|
||||||
|
gtsAccountDomain: ""
|
||||||
gtsAdminAccountName: ""
|
gtsAdminAccountName: ""
|
||||||
gtsAdminAccountMail: ""
|
gtsAdminAccountMail: ""
|
||||||
gtsAdminAccountPass: ""
|
gtsAdminAccountPass: ""
|
||||||
|
|
Loading…
Reference in a new issue