diff --git a/helm/mautrix-telegram/registration.yaml.txt b/helm/mautrix-telegram/registration.yaml.txt deleted file mode 100644 index b99ee744..00000000 --- a/helm/mautrix-telegram/registration.yaml.txt +++ /dev/null @@ -1,19 +0,0 @@ -id: {{ .Values.appservice.id }} -as_token: {{ .Values.appservice.asToken }} -hs_token: {{ .Values.appservice.hsToken }} -namespaces: - users: - - exclusive: true - regex: "@{{ .Values.bridge.username_template | replace "{userid}" ".+"}}:{{ .Values.homeserver.domain }}" - {{- if .Values.appservice.communityID }} - group_id: {{ .Values.appservice.communityID }} - {{- end }} - aliases: - - exclusive: true - regex: "@{{ .Values.bridge.alias_template | replace "{groupname}" ".+"}}:{{ .Values.homeserver.domain }}" - {{- if .Values.appservice.communityID }} - group_id: {{ .Values.appservice.communityID }} - {{- end }} -url: {{ .Values.appservice.address }} -sender_localpart: {{ .Values.appservice.botUsername }} -rate_limited: false diff --git a/helm/mautrix-telegram/templates/NOTES.txt b/helm/mautrix-telegram/templates/NOTES.txt index a79dcc07..cc345a0d 100644 --- a/helm/mautrix-telegram/templates/NOTES.txt +++ b/helm/mautrix-telegram/templates/NOTES.txt @@ -1,4 +1,4 @@ -Your registration file: +Your registration file is below. Save it into a YAML file and give the path to that file to synapse: id: {{ .Values.appservice.id }} as_token: {{ .Values.appservice.asToken }} diff --git a/helm/mautrix-telegram/templates/tests/test-connection.yaml b/helm/mautrix-telegram/templates/tests/test-connection.yaml deleted file mode 100644 index d9937e0a..00000000 --- a/helm/mautrix-telegram/templates/tests/test-connection.yaml +++ /dev/null @@ -1,15 +0,0 @@ -apiVersion: v1 -kind: Pod -metadata: - name: "{{ include "mautrix-telegram.fullname" . }}-test-connection" - labels: -{{ include "mautrix-telegram.labels" . | indent 4 }} - annotations: - "helm.sh/hook": test-success -spec: - containers: - - name: wget - image: busybox - command: ['wget'] - args: ['{{ include "mautrix-telegram.fullname" . }}:{{ .Values.service.port }}'] - restartPolicy: Never