All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.predic8.membrane.core.kubernetes.client.KubernetesClientFactory Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
/* Copyright 2022 predic8 GmbH, www.predic8.com

   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.predic8.membrane.core.kubernetes.client;

import com.predic8.membrane.core.transport.http.HttpClientFactory;

import java.util.WeakHashMap;

/**
 * Sharing the KubernetesClient instances has two benefits:
 * 
    *
  • The KubernetesClient only uses one HttpClient and thereby shares the timer (connection closer) and connection pool.
  • *
  • The KubernetesClient only downloads the schema once (speeding up initialization).
  • *
* * * Note: "baseUrl" is the KubernetesClient's only supported configuration. (KubernetesClientBuilder supports more, which * would need to be implemented here.) */ public class KubernetesClientFactory { private WeakHashMap clients; private final HttpClientFactory httpClientFactory; public KubernetesClientFactory(HttpClientFactory httpClientFactory) { this.httpClientFactory = httpClientFactory; } public synchronized KubernetesClient createClient(String baseUrl) { if (clients == null) clients = new WeakHashMap<>(); KubernetesClient client = clients.get(baseUrl); if (client == null) try { KubernetesClientBuilder builder = KubernetesClientBuilder.auto() .httpClientFactory(httpClientFactory); if (baseUrl != null) builder.baseURL(baseUrl); client = builder.build(); clients.put(baseUrl, client); } catch (KubernetesClientBuilder.ParsingException e) { throw new RuntimeException(e); } return client; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy