forked from redhat-developer/intellij-kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: allow multiple configs listed in KUBECONFIG (redhat-developer#779)
Signed-off-by: Andre Dietisheim <[email protected]>
- Loading branch information
Showing
6 changed files
with
3,127 additions
and
2 deletions.
There are no files selected for viewing
1,885 changes: 1,885 additions & 0 deletions
1,885
src/main/java/io/fabric8/kubernetes/client/Config.java
Large diffs are not rendered by default.
Oops, something went wrong.
84 changes: 84 additions & 0 deletions
84
src/main/java/io/fabric8/kubernetes/client/KubeConfigFile.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,84 @@ | ||
/* | ||
* Copyright (C) 2015 Red Hat, Inc. | ||
* | ||
* 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 io.fabric8.kubernetes.client; | ||
|
||
import io.fabric8.kubernetes.api.model.Config; | ||
import io.fabric8.kubernetes.client.internal.KubeConfigUtils; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
import java.io.File; | ||
import java.io.IOException; | ||
|
||
public class KubeConfigFile { | ||
|
||
private static final Logger LOGGER = LoggerFactory.getLogger(KubeConfigFile.class); | ||
|
||
private final File file; | ||
private boolean parsed = false; | ||
private Config config; | ||
|
||
public KubeConfigFile(String file) { | ||
this(new File(file), null); | ||
} | ||
|
||
public KubeConfigFile(File file) { | ||
this(file, null); | ||
} | ||
|
||
private KubeConfigFile(File file, Config config) { | ||
this.file = file; | ||
this.config = config; | ||
} | ||
|
||
public File getFile() { | ||
return file; | ||
} | ||
|
||
public Config getConfig() { | ||
if (!parsed) { | ||
this.config = createConfig(file); | ||
this.parsed = true; | ||
} | ||
return config; | ||
} | ||
|
||
private Config createConfig(File file) { | ||
Config config = null; | ||
try { | ||
if (isReadable(file)) { | ||
LOGGER.debug("Found for Kubernetes config at: [{}].", file.getPath()); | ||
config = KubeConfigUtils.parseConfig(file); | ||
} | ||
} catch (IOException e) { | ||
LOGGER.debug("Kubernetes file at [{}] is not a valid config. Ignoring.", file.getPath(), e); | ||
} | ||
return config; | ||
} | ||
|
||
public boolean isReadable() { | ||
return isReadable(file); | ||
} | ||
|
||
private boolean isReadable(File file) { | ||
try { | ||
return file != null | ||
&& file.isFile(); | ||
} catch (SecurityException e) { | ||
return false; | ||
} | ||
} | ||
} |
229 changes: 229 additions & 0 deletions
229
src/main/java/io/fabric8/kubernetes/client/internal/KubeConfigUtils.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,229 @@ | ||
/* | ||
* Copyright (C) 2015 Red Hat, Inc. | ||
* | ||
* 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 io.fabric8.kubernetes.client.internal; | ||
|
||
import io.fabric8.kubernetes.api.model.AuthInfo; | ||
import io.fabric8.kubernetes.api.model.Cluster; | ||
import io.fabric8.kubernetes.api.model.Config; | ||
import io.fabric8.kubernetes.api.model.ConfigBuilder; | ||
import io.fabric8.kubernetes.api.model.Context; | ||
import io.fabric8.kubernetes.api.model.NamedAuthInfo; | ||
import io.fabric8.kubernetes.api.model.NamedCluster; | ||
import io.fabric8.kubernetes.api.model.NamedContext; | ||
import io.fabric8.kubernetes.api.model.NamedExtension; | ||
import io.fabric8.kubernetes.api.model.PreferencesBuilder; | ||
import io.fabric8.kubernetes.client.utils.Serialization; | ||
import io.fabric8.kubernetes.client.utils.Utils; | ||
|
||
import java.io.File; | ||
import java.io.FileWriter; | ||
import java.io.IOException; | ||
import java.nio.file.Files; | ||
import java.util.List; | ||
|
||
/** | ||
* Helper class for working with the YAML config file thats located in | ||
* <code>~/.kube/config</code> which is updated when you use commands | ||
* like <code>osc login</code> and <code>osc project myproject</code> | ||
*/ | ||
public class KubeConfigUtils { | ||
private KubeConfigUtils() { | ||
} | ||
|
||
public static Config parseConfig(File file) throws IOException { | ||
return Serialization.unmarshal(Files.newInputStream(file.toPath()), Config.class); | ||
} | ||
|
||
public static Config parseConfigFromString(String contents) { | ||
return Serialization.unmarshal(contents, Config.class); | ||
} | ||
|
||
/** | ||
* Returns the current context in the given config | ||
* | ||
* @param config Config object | ||
* @return returns context in config if found, otherwise null | ||
*/ | ||
public static NamedContext getCurrentContext(Config config) { | ||
String contextName = config.getCurrentContext(); | ||
if (contextName != null) { | ||
List<NamedContext> contexts = config.getContexts(); | ||
if (contexts != null) { | ||
for (NamedContext context : contexts) { | ||
if (contextName.equals(context.getName())) { | ||
return context; | ||
} | ||
} | ||
} | ||
} | ||
return null; | ||
} | ||
|
||
/** | ||
* Returns the current user token for the config and current context | ||
* | ||
* @param config Config object | ||
* @param context Context object | ||
* @return returns current user based upon provided parameters. | ||
*/ | ||
public static String getUserToken(Config config, Context context) { | ||
AuthInfo authInfo = getUserAuthInfo(config, context); | ||
if (authInfo != null) { | ||
return authInfo.getToken(); | ||
} | ||
return null; | ||
} | ||
|
||
/** | ||
* Returns the current {@link AuthInfo} for the current context and user | ||
* | ||
* @param config Config object | ||
* @param context Context object | ||
* @return {@link AuthInfo} for current context | ||
*/ | ||
public static AuthInfo getUserAuthInfo(Config config, Context context) { | ||
NamedAuthInfo namedAuthInfo = getAuthInfo(config, context.getUser()); | ||
return (namedAuthInfo != null) ? namedAuthInfo.getUser() : null; | ||
} | ||
|
||
/** | ||
* Returns the {@link NamedAuthInfo} with the given name. | ||
* Returns {@code null} otherwise | ||
* | ||
* @param config the config to search | ||
* @param name | ||
* @return | ||
*/ | ||
public static NamedAuthInfo getAuthInfo(Config config, String name) { | ||
NamedAuthInfo authInfo = null; | ||
if (config != null && name != null) { | ||
List<NamedAuthInfo> users = config.getUsers(); | ||
if (users != null) { | ||
authInfo = users.stream() | ||
.filter(toInspect -> name.equals(toInspect.getName())) | ||
.findAny() | ||
.orElse(null); | ||
} | ||
} | ||
return authInfo; | ||
} | ||
|
||
/** | ||
* Returns {@code true} if the given {@link Config} has a {@link NamedAuthInfo} with the given name. | ||
* Returns {@code false} otherwise. | ||
* | ||
* @param name the name of the NamedAuthInfo that we are looking for | ||
* @param config the Config to search | ||
* @return true if it contains a NamedAuthInfo with the given name | ||
*/ | ||
public static boolean hasAuthInfoNamed(Config config, String name) { | ||
if (Utils.isNullOrEmpty(name) | ||
|| config == null | ||
|| config.getUsers() == null) { | ||
return false; | ||
} | ||
return getAuthInfo(config, name) != null; | ||
} | ||
|
||
/** | ||
* Returns the current {@link Cluster} for the current context | ||
* | ||
* @param config {@link Config} config object | ||
* @param context {@link Context} context object | ||
* @return current {@link Cluster} for current context | ||
*/ | ||
public static Cluster getCluster(Config config, Context context) { | ||
Cluster cluster = null; | ||
if (config != null && context != null) { | ||
String clusterName = context.getCluster(); | ||
if (clusterName != null) { | ||
List<NamedCluster> clusters = config.getClusters(); | ||
if (clusters != null) { | ||
cluster = clusters.stream() | ||
.filter(c -> c.getName().equals(clusterName)) | ||
.findAny() | ||
.map(NamedCluster::getCluster) | ||
.orElse(null); | ||
} | ||
} | ||
} | ||
return cluster; | ||
} | ||
|
||
/** | ||
* Get User index from Config object | ||
* | ||
* @param config {@link io.fabric8.kubernetes.api.model.Config} Kube Config | ||
* @param userName username inside Config | ||
* @return index of user in users array | ||
*/ | ||
public static int getNamedUserIndexFromConfig(Config config, String userName) { | ||
for (int i = 0; i < config.getUsers().size(); i++) { | ||
if (config.getUsers().get(i).getName().equals(userName)) { | ||
return i; | ||
} | ||
} | ||
return -1; | ||
} | ||
|
||
/** | ||
* Modify KUBECONFIG file | ||
* | ||
* @param kubeConfig modified {@link io.fabric8.kubernetes.api.model.Config} object | ||
* @param kubeConfigPath path to KUBECONFIG | ||
* @throws IOException in case of failure while writing to file | ||
*/ | ||
public static void persistKubeConfigIntoFile(Config kubeConfig, String kubeConfigPath) throws IOException { | ||
try (FileWriter writer = new FileWriter(kubeConfigPath)) { | ||
writer.write(Serialization.asYaml(kubeConfig)); | ||
} | ||
} | ||
|
||
public static Config merge(Config thisConfig, Config thatConfig) { | ||
if (thisConfig == null) { | ||
return thatConfig; | ||
} | ||
ConfigBuilder builder = new ConfigBuilder(thatConfig); | ||
if (thisConfig.getClusters() != null) { | ||
builder.addAllToClusters(thisConfig.getClusters()); | ||
} | ||
if (thisConfig.getContexts() != null) { | ||
builder.addAllToContexts(thisConfig.getContexts()); | ||
} | ||
if (thisConfig.getUsers() != null) { | ||
builder.addAllToUsers(thisConfig.getUsers()); | ||
} | ||
if (thisConfig.getExtensions() != null) { | ||
builder.addAllToExtensions(thisConfig.getExtensions()); | ||
} | ||
if (!builder.hasCurrentContext() | ||
&& Utils.isNotNullOrEmpty(thisConfig.getCurrentContext())) { | ||
builder.withCurrentContext(thisConfig.getCurrentContext()); | ||
} | ||
Config merged = builder.build(); | ||
mergePreferences(thisConfig, merged); | ||
return merged; | ||
} | ||
|
||
public static void mergePreferences(io.fabric8.kubernetes.api.model.Config source, | ||
io.fabric8.kubernetes.api.model.Config destination) { | ||
if (source.getPreferences() != null) { | ||
PreferencesBuilder builder = new PreferencesBuilder(destination.getPreferences()); | ||
builder.addToExtensions(source.getExtensions().toArray(new NamedExtension[] {})); | ||
destination.setPreferences(builder.build()); | ||
} | ||
} | ||
} |
Oops, something went wrong.