-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CN-399] [BACKPORT] Change Kubernetes client behavior for token refre…
…sh (#22394) Kubernetes token which is read from the file was static in the beginning. With the recent changes, it is time-bound and its content is periodically refreshed. To incorporate new behavior: * Introduced a new token reader which gets the value by reading the file every time. * Introduced a second token reader which imitates the original behavior. Co-authored-by: Hakan Memisoglu <hakanmemisoglu@gmail.com>
- Loading branch information
1 parent
666e7d5
commit 9a682d4
Showing
8 changed files
with
178 additions
and
35 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
hazelcast/src/main/java/com/hazelcast/kubernetes/FileReaderTokenProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.hazelcast.kubernetes; | ||
|
||
class FileReaderTokenProvider implements KubernetesTokenProvider { | ||
private final String tokenPath; | ||
private final KubernetesConfig.FileContentsReader fileContentsReader; | ||
|
||
FileReaderTokenProvider(String tokenPath) { | ||
this.tokenPath = tokenPath; | ||
this.fileContentsReader = new KubernetesConfig.DefaultFileContentsReader(); | ||
} | ||
|
||
@Override | ||
public String getToken() { | ||
return fileContentsReader.readFileContents(tokenPath); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
hazelcast/src/main/java/com/hazelcast/kubernetes/KubernetesTokenProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
* Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.hazelcast.kubernetes; | ||
|
||
interface KubernetesTokenProvider { | ||
String getToken(); | ||
} | ||
|
30 changes: 30 additions & 0 deletions
30
hazelcast/src/main/java/com/hazelcast/kubernetes/StaticTokenProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright (c) 2008-2022, Hazelcast, Inc. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.hazelcast.kubernetes; | ||
|
||
class StaticTokenProvider implements KubernetesTokenProvider { | ||
private final String token; | ||
|
||
StaticTokenProvider(String token) { | ||
this.token = token; | ||
} | ||
|
||
@Override | ||
public String getToken() { | ||
return token; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.