diff --git a/contrib/chart/backstage/files/app-config.local.yaml.tpl b/contrib/chart/backstage/files/app-config.development.yaml.tpl similarity index 97% rename from contrib/chart/backstage/files/app-config.local.yaml.tpl rename to contrib/chart/backstage/files/app-config.development.yaml.tpl index 646d438771..76d6499145 100644 --- a/contrib/chart/backstage/files/app-config.local.yaml.tpl +++ b/contrib/chart/backstage/files/app-config.development.yaml.tpl @@ -35,12 +35,16 @@ catalog: locations: [] {{- end }} -sentry: - organization: {{ .Values.appConfig.sentry.organization | quote }} +auth: + providers: + microsoft: null scaffolder: - azure: - baseUrl: https://dev.azure.com/some-org + azure: null + + +sentry: + organization: {{ .Values.appConfig.sentry.organization | quote }} techdocs: generators: diff --git a/contrib/chart/backstage/templates/_helpers.tpl b/contrib/chart/backstage/templates/_helpers.tpl index ec54c91d1b..5d49ba6975 100644 --- a/contrib/chart/backstage/templates/_helpers.tpl +++ b/contrib/chart/backstage/templates/_helpers.tpl @@ -282,5 +282,5 @@ Postgres password for lighthouse app-config file name */}} {{- define "backstage.appConfigFilename" -}} -{{- "app-config.local.yaml" -}} +{{- "app-config.development.yaml" -}} {{- end -}} diff --git a/contrib/chart/backstage/templates/backstage-app-config.yaml b/contrib/chart/backstage/templates/backstage-app-config.yaml index 987ad8e160..061fc3285b 100644 --- a/contrib/chart/backstage/templates/backstage-app-config.yaml +++ b/contrib/chart/backstage/templates/backstage-app-config.yaml @@ -4,7 +4,7 @@ metadata: name: {{ include "backstage.fullname" . }}-app-config data: {{ include "backstage.appConfigFilename" . | indent 2 }}: | -{{ tpl (.Files.Get "files/app-config.local.yaml.tpl") . | indent 4 }} +{{ tpl (.Files.Get "files/app-config.development.yaml.tpl") . | indent 4 }} --- apiVersion: v1 kind: ConfigMap