File tree Expand file tree Collapse file tree 4 files changed +0
-103
lines changed
src/main/java/io/kubernetes/client/util Expand file tree Collapse file tree 4 files changed +0
-103
lines changed Original file line number Diff line number Diff line change 140
140
<artifactId >bcpkix-jdk18on</artifactId >
141
141
<version >${bouncycastle.version} </version >
142
142
</dependency >
143
- <dependency >
144
- <groupId >com.microsoft.azure</groupId >
145
- <artifactId >adal4j</artifactId >
146
- <version >1.6.7</version >
147
- <optional >true</optional >
148
- </dependency >
149
- <!-- override the version in adal4j which has a CVE -->
150
- <dependency >
151
- <groupId >net.minidev</groupId >
152
- <artifactId >json-smart</artifactId >
153
- <version >2.5.1</version >
154
- <optional >true</optional >
155
- </dependency >
156
143
<dependency >
157
144
<groupId >com.amazonaws</groupId >
158
145
<artifactId >aws-java-sdk-sts</artifactId >
Original file line number Diff line number Diff line change 57
57
<groupId >org.bouncycastle</groupId >
58
58
<artifactId >bcpkix-jdk18on</artifactId >
59
59
</dependency >
60
- <dependency >
61
- <groupId >com.microsoft.azure</groupId >
62
- <artifactId >adal4j</artifactId >
63
- </dependency >
64
60
<dependency >
65
61
<groupId >com.amazonaws</groupId >
66
62
<artifactId >aws-java-sdk-sts</artifactId >
Original file line number Diff line number Diff line change 18
18
import com .google .gson .JsonParser ;
19
19
import io .kubernetes .client .persister .ConfigPersister ;
20
20
import io .kubernetes .client .util .authenticators .Authenticator ;
21
- import io .kubernetes .client .util .authenticators .AzureActiveDirectoryAuthenticator ;
22
21
import io .kubernetes .client .util .authenticators .GCPAuthenticator ;
23
22
import io .kubernetes .client .util .authenticators .OpenIDConnectAuthenticator ;
24
23
import java .io .File ;
@@ -79,7 +78,6 @@ public static void registerAuthenticator(Authenticator auth) {
79
78
80
79
static {
81
80
registerAuthenticator (new GCPAuthenticator ());
82
- registerAuthenticator (new AzureActiveDirectoryAuthenticator ());
83
81
registerAuthenticator (new OpenIDConnectAuthenticator ());
84
82
}
85
83
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments