You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the official Kubernetes client library for the C programming language.
9
-
It is a work in progress.
10
9
11
10
## Building the library
12
11
```bash
@@ -153,6 +152,10 @@ list all pods in cluster:
153
152
apiClient_unsetupGlobalEnv();
154
153
```
155
154
155
+
## Aggregated APIs and CRD-based APIs
156
+
157
+
If you want to implement a client for aggregated APIs (such as the metrics server API `apis/metrics.k8s.io` ) or CRD-based APIs, use the [generic client](./kubernetes/src/generic.c). See [example](./examples/generic/main.c).
158
+
156
159
## Multi-threaded Usage
157
160
158
161
If the C client library is used in multi-threaded program, the following 2 actions are required:
@@ -174,7 +177,7 @@ Learn how to engage with the Kubernetes community on the [community page](http:/
0 commit comments