Skip to content

Commit

Permalink
Merge pull request #41 from ityuhui/yh-readme-1201
Browse files Browse the repository at this point in the history
[Readme] Add the build dependency libssl-dev
  • Loading branch information
k8s-ci-robot authored Dec 3, 2020
2 parents e7015c8 + 6f41360 commit 09f4b33
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Prepare
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev uncrustify libyaml-dev
sudo apt-get install -y libssl-dev libcurl4-openssl-dev uncrustify libyaml-dev
- name: Build client library
run: |
cd kubernetes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ git clone https://github.com/kubernetes-client/c
CLIENT_REPO_ROOT=${PWD}/c

# Install pre-requisites
sudo apt-get install libcurl4-openssl-dev uncrustify libyaml-dev
sudo apt-get install libssl-dev libcurl4-openssl-dev uncrustify libyaml-dev

# Move into the Kubernetes directory
cd ${CLIENT_REPO_ROOT}/kubernetes
Expand Down Expand Up @@ -127,7 +127,7 @@ list all pods in cluster:

## Multi-threaded Usage

If the C client library is used in multi-threaded program, the following 2 actions must be taken:
If the C client library is used in multi-threaded program, the following 2 actions are required:

1. After the program starts up, main thread must call the function ```apiClient_setupGlobalEnv()``` before any worker thread is created.

Expand Down

0 comments on commit 09f4b33

Please sign in to comment.