Skip to content

Commit

Permalink
[GoToSocial] - Bumps GoToSocial version
Browse files Browse the repository at this point in the history
  • Loading branch information
0hlov3 committed Feb 24, 2024
1 parent 598cba0 commit a3dd1a3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions charts/gotosocial/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ home: https://github.com/superseriousbusiness/gotosocial

type: application
# Chart Version
version: "0.4.17"
version: "0.4.18"
# gotosocial version
appVersion: "0.13.0"
appVersion: "0.13.3"

maintainers:
- name: fSocietySocial
Expand Down
6 changes: 4 additions & 2 deletions charts/gotosocial/templates/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ stringData:
request-id-header: {{ .Values.gotosocial.config.observability.requestIdHeader | default "X-Request-Id" |quote }}
tracing-enabled: {{ .Values.gotosocial.config.observability.tracing.enabled | default false }}
tracing-transport: {{ .Values.gotosocial.config.observability.tracing.transport | default "" }}
tracing-endpoint: {{ .Values.gotosocial.config.observability.tracing.endpoint | default "" | quote }}
tracing-insecure-transport: {{ .Values.gotosocial.config.observability.tracing.insecureTransport | default false }}
metrics-enabled: {{ .Values.gotosocial.config.observability.metrics.enabled | default false }}
metrics-auth-enabled: {{ .Values.gotosocial.config.observability.metrics.authEnabled | default false }}
Expand All @@ -199,8 +200,8 @@ stringData:
########################################
#### RESERVED IP RANGE EXCEPTIONS ######
########################################
allow-ips: {{ .Values.gotosocial.config.httpClient.allowIPs }}
block-ips: {{ .Values.gotosocial.config.httpClient.blockIPs }}
allow-ips: {{ .Values.gotosocial.config.httpClient.allowIPs | default "[]" }}
block-ips: {{ .Values.gotosocial.config.httpClient.blockIPs | default "[]" }}
tls-insecure-skip-verify: {{ .Values.gotosocial.config.httpClient.tlsInsecureSkipVerify | default false }}
#############################
##### ADVANCED SETTINGS #####
Expand All @@ -212,6 +213,7 @@ stringData:
advanced-throttling-retry-after: {{ .Values.gotosocial.config.advanced.throttlingRetryAfter | default "30s" }}
advanced-sender-multiplier: {{ .Values.gotosocial.config.advanced.advancedSenderMultiplier | default 2 }}
advanced-csp-extra-uris: {{ .Values.gotosocial.config.advanced.advancedCspExtraUris | default "[]" }}
advanced-header-filter-mode: "{{ .Values.gotosocial.config.advanced.advancedHeaderFilterMode }}"
########################
##### Extra config #####
########################
Expand Down
4 changes: 3 additions & 1 deletion charts/gotosocial/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,8 @@ gotosocial:
requestIdHeader: "X-Request-Id"
tracing:
enabled: false
transport: ""
transport: "grpc"
endpoint: ""
insecureTransport: false
metrics:
enabled: false
Expand All @@ -180,6 +181,7 @@ gotosocial:
throttlingRetryAfter: "30s"
advancedSenderMultiplier: 2
advancedCspExtraUris: []
advancedHeaderFilterMode: ""
postgresql:
enabled: false
image:
Expand Down

0 comments on commit a3dd1a3

Please sign in to comment.