我正在使用下面的代码行来获取有关特定PVC的详细信息
response = await `serverModule.kubeclient.api.v1.namespaces(ns).persistentvolumeclaims(pvc).get();`
上述调用的相应API为readNamespacedPersistentVolumeClaim,格式如下:
GET /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}
现在,我正尝试使用与上述相同的约定致电readStorageClass
response =等待serverModule.kubeclient.apis.storage.k8s.io.v1.storageclasses(sc).get();
正如您在链接中所看到的,GET /apis/storage.k8s.io/v1/storageclasses/{name}
是格式,我已经使用了上面的语法。但是由于某种原因,代码会失败并出现错误
Exported kubeclient, ready to process requests
TypeError: Cannot read property 'k8s' of undefined
我犯了什么语法错误。我尝试了各种组合,但没有用。
答案 0 :(得分:2)
此问题是列表PersistentVolumeClaim
是kubernetes的coreV1Api
的一部分,列表StorageClass
是StorageV1beta1Api
的一部分。接下来是使用JAVA客户端列出存储类的最简单代码:
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure API key authorization: BearerToken
ApiKeyAuth BearerToken = (ApiKeyAuth) defaultClient.getAuthentication("BearerToken");
BearerToken.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//BearerToken.setApiKeyPrefix("Token");
StorageV1beta1Api apiInstance = new StorageV1beta1Api();
try {
V1beta1StorageClassList result = apiInstance.listStorageClass();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling StorageV1beta1Api#listStorageClass");
e.printStackTrace();
}
以下是官方文档链接供您参考:
希望这会有所帮助。
答案 1 :(得分:1)
使用client.apis["storage.k8s.io"].v1.storageclasses.get()
,适用于任何包含点的api。
希望对您有帮助