Merge pull request #23685 from backstage/rugvip/healthy

plugins: allow unauthenticated access to health check endpoints
This commit is contained in:
Patrik Oldsberg
2024-03-19 00:16:17 +01:00
committed by GitHub
14 changed files with 68 additions and 0 deletions
@@ -90,6 +90,10 @@ export const notificationsPlugin = createBackendPlugin({
processors: processingExtensions.processors,
}),
);
httpRouter.addAuthPolicy({
path: '/health',
allow: 'unauthenticated',
});
},
});
},