Merge pull request #149 from ityuhui/yh-readme-0921

Add "debug mode" and "Compatibility" descriptions to README.md
This commit is contained in:
Kubernetes Prow Robot
2022-09-21 12:11:18 -07:00
committed by GitHub

View File

@@ -41,7 +41,10 @@ cd ${CLIENT_REPO_ROOT}/kubernetes
# Build
mkdir build
cd build
# If you don't need to debug the C client library:
cmake -DCMAKE_INSTALL_PREFIX=/usr/local ..
# If you want to use `gdb` to debug the C client library, add `-DCMAKE_BUILD_TYPE=Debug` to the cmake command line, e.g.
# cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr/local ..
make
sudo make install
```
@@ -170,6 +173,10 @@ Refer to the [example](https://github.com/kubernetes-client/c/tree/master/exampl
All APIs and Models' documentation can be found at the [Generated client's README file](https://github.com/kubernetes-client/c/blob/master/kubernetes/README.md#documentation-for-api-endpoints)
## Versions and Compatibility
See [versioning-and-compatibility.md](./docs/versioning-and-compatibility.md)
## Community, discussion, contribution, and support
Learn how to engage with the Kubernetes community on the [community page](http://kubernetes.io/community/).