Skip to content

Commit 64bd7df

Browse files
committed
Fixme until #1247
1 parent f1265ff commit 64bd7df

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

authentication-service/src/main/kotlin/com/saveourtool/save/authservice/utils/KubernetesAuthenticationUtils.kt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,15 @@ class KubernetesAuthenticationUtils {
7474
// all requests to `/actuator` should be sent only from inside the cluster
7575
// access to this port should be controlled by a NetworkPolicy
7676
.permitAll()
77+
.pathMatchers(
78+
// FixMe: https://github.com/saveourtool/save-cloud/pull/1247
79+
"/internal/files/download-save-agent",
80+
"/internal/files/download-save-cli",
81+
"/internal/files/download",
82+
"/internal/test-suites-sources/download-snapshot-by-execution-id",
83+
"/heartbeat",
84+
)
85+
.permitAll()
7786
.and()
7887
.authorizeExchange()
7988
.pathMatchers("/**")

0 commit comments

Comments
 (0)