歡迎訪問我的GitHub
https://github.com/zq2599/blog_demos
內容:所有原創文章分類彙總及配套原始碼,涉及Java、Docker、Kubernetes、DevOPS等;
概覽
- 以下提到的java客戶端都是指client-jar.jar;
- 本文是《Kubernetes官方java客戶端》系列的第三篇,《Kubernetes官方java客戶端:準備》一文中我們們為實戰做好了準備工作,從本文開始進入實戰階段;
- 本文的目標是開發名為OutsideclusterApplication的SpringBoot應用,該應用沒有部署在K8S環境,使用的config檔案是手動從K8S環境複製過來的,java客戶端通過此config檔案,能夠遠端訪問到K8S上的API Server,實現所有客戶端功能,整體部署情況如下圖:
- 介紹完畢,開始編碼;
原始碼下載
- 如果您不想編碼,可以在GitHub下載所有原始碼,地址和連結資訊如下表所示(https://github.com/zq2599/blog_demos):
名稱 | 連結 | 備註 |
---|---|---|
專案主頁 | https://github.com/zq2599/blog_demos | 該專案在GitHub上的主頁 |
git倉庫地址(https) | https://github.com/zq2599/blog_demos.git | 該專案原始碼的倉庫地址,https協議 |
git倉庫地址(ssh) | git@github.com:zq2599/blog_demos.git | 該專案原始碼的倉庫地址,ssh協議 |
- 這個git專案中有多個資料夾,本章的應用在kubernetesclient資料夾下,如下圖紅框所示:
部署在K8S之外的應用:OutsideclusterApplication
名為OutsideclusterApplication的應用並未部署在K8S環境,該應用能夠訪問到K8S環境的關鍵,就是將K8S環境的config檔案複製一份,然後放在OutsideclusterApplication能夠訪問到的位置:
- 登入K8S環境,在~/.kube目錄下找到config檔案,複製此檔案到OutsideclusterApplication執行的機器上(我這裡存放的路徑是/Users/zhaoqin/temp/202007/05/,和後面的程式碼中一致);
- 開啟《Kubernetes官方java客戶端:準備》中建立的的kubernetesclient工程,在裡面建立子工程,名為OutsideclusterApplication,這是個SpringBoot工程,pom.xml內容如下:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.bolingcavalry</groupId>
<artifactId>kubernetesclient</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>com.bolingcavalry</groupId>
<artifactId>outsidecluster</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>outsidecluster</name>
<description>Demo project for Spring Boot</description>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-json</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.kubernetes</groupId>
<artifactId>client-java</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.3.0.RELEASE</version>
</plugin>
</plugins>
</build>
</project>
- 上述pom.xml中,需要注意的是在依賴spring-boot-starter-web的時候,使用exclusion語法排除了spring-boot-starter-json的依賴,這樣做是為了將jackson的依賴全部去掉(spring-boot-starter-json依賴了jackson),如此一來整個classpath下面就沒有了jackson庫,此時SpringBoot框架就會使用gson作為序列化和反序列化工具(client-java.jar依賴了gson庫);(這個問題在《Kubernetes官方java客戶端之二:序列化和反序列化問題》一文有詳細介紹)
- 新增OutsideclusterApplication.java,簡單起見,該類即是引導類又是Controller:
package com.bolingcavalry.outsidecluster;
import com.google.gson.GsonBuilder;
import io.kubernetes.client.openapi.ApiClient;
import io.kubernetes.client.openapi.Configuration;
import io.kubernetes.client.openapi.apis.CoreV1Api;
import io.kubernetes.client.openapi.models.V1PodList;
import io.kubernetes.client.util.ClientBuilder;
import io.kubernetes.client.util.KubeConfig;
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.io.FileReader;
@SpringBootApplication
@RestController
@Slf4j
public class OutsideclusterApplication {
public static void main(String[] args) {
SpringApplication.run(OutsideclusterApplication.class, args);
}
@RequestMapping(value = "/hello")
public V1PodList hello() throws Exception {
// 存放K8S的config檔案的全路徑
String kubeConfigPath = "/Users/zhaoqin/temp/202007/05/config";
// 以config作為入參建立的client物件,可以訪問到K8S的API Server
ApiClient client = ClientBuilder
.kubeconfig(KubeConfig.loadKubeConfig(new FileReader(kubeConfigPath)))
.build();
Configuration.setDefaultApiClient(client);
CoreV1Api api = new CoreV1Api();
// 呼叫客戶端API取得所有pod資訊
V1PodList v1PodList = api.listPodForAllNamespaces(null, null, null, null, null, null, null, null, null);
// 使用jackson將集合物件序列化成JSON,在日誌中列印出來
log.info("pod info \n{}", new GsonBuilder().setPrettyPrinting().create().toJson(v1PodList));
return v1PodList;
}
}
-
執行上述程式碼,在瀏覽器訪問http://localhost:8080/hello ,即可取得K8S所有pod的詳情,如下所示(為了讓返回資料更加整齊美觀,我用的是Firefox瀏覽器):
-
檢視控制檯,可見日誌也將詳情列印出來:
- 至此,我們們的第一個使用K8S官方java客戶端的應用就完成了,接下來的實戰會嘗試將應用部署在K8S環境內,在K8S內部進行各項操作;
你不孤單,欣宸原創一路相伴
歡迎關注公眾號:程式設計師欣宸
微信搜尋「程式設計師欣宸」,我是欣宸,期待與您一同暢遊Java世界...
https://github.com/zq2599/blog_demos