fix(gotosocial): gtsHost variable
This commit is contained in:
parent
852027723b
commit
a10adb96be
3 changed files with 5 additions and 4 deletions
|
@ -5,7 +5,7 @@ icon: https://docs.gotosocial.org/en/latest/assets/sloth.png
|
|||
home: https://github.com/superseriousbusiness/gotosocial
|
||||
|
||||
type: application
|
||||
version: 0.1.2
|
||||
version: 0.2.0
|
||||
appVersion: "0.5.2"
|
||||
|
||||
maintainers:
|
||||
|
|
|
@ -21,14 +21,14 @@ spec:
|
|||
- env:
|
||||
- name: GTS_ACCOUNT_DOMAIN
|
||||
value: {{ default (cat .Release.Name "." .Values.gtsBulkDomain | nospace) .Values.gtsAccountDomain }}
|
||||
- name: GTS_HOST
|
||||
value: {{ default (cat .Release.Name "." .Values.gtsBulkDomain | nospace) .Valus.gtsHost }}
|
||||
- name: GTS_APPLICATION_NAME
|
||||
value: {{ .Release.Name }}-gts
|
||||
- name: GTS_DB_ADDRESS
|
||||
value: /gotosocial/storage/sqlite.db
|
||||
- name: GTS_DB_TYPE
|
||||
value: sqlite
|
||||
- name: GTS_HOST
|
||||
value: {{ .Release.Name }}.{{ .Values.gtsBulkDomain }}
|
||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
||||
name: init-{{ .Release.Name }}-gts
|
||||
volumeMounts:
|
||||
|
@ -50,7 +50,7 @@ spec:
|
|||
- name: GTS_DB_TYPE
|
||||
value: sqlite
|
||||
- name: GTS_HOST
|
||||
value: {{ .Release.Name }}.{{ .Values.gtsBulkDomain }}
|
||||
value: {{ default (cat .Release.Name "." .Values.gtsBulkDomain | nospace) .Valus.gtsHost }}
|
||||
- name: GTS_SMTP_FROM
|
||||
value: noreply@{{ .Values.gtsBulkDomain }}
|
||||
- name: GTS_SMTP_HOST
|
||||
|
|
|
@ -19,6 +19,7 @@ resources:
|
|||
|
||||
gtsBulkDomain: "socaas.site"
|
||||
gtsAccountDomain: ""
|
||||
gtsHost: ""
|
||||
gtsAdminAccountName: ""
|
||||
gtsAdminAccountMail: ""
|
||||
gtsAdminAccountPass: ""
|
||||
|
|
Loading…
Reference in a new issue