Skip to content

Commit 09f4b33

Browse files
authored
Merge pull request #41 from ityuhui/yh-readme-1201
[Readme] Add the build dependency libssl-dev
2 parents e7015c8 + 6f41360 commit 09f4b33

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Prepare
1616
run: |
1717
sudo apt-get update
18-
sudo apt-get install -y libcurl4-openssl-dev uncrustify libyaml-dev
18+
sudo apt-get install -y libssl-dev libcurl4-openssl-dev uncrustify libyaml-dev
1919
- name: Build client library
2020
run: |
2121
cd kubernetes

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ git clone https://github.com/kubernetes-client/c
1111
CLIENT_REPO_ROOT=${PWD}/c
1212

1313
# Install pre-requisites
14-
sudo apt-get install libcurl4-openssl-dev uncrustify libyaml-dev
14+
sudo apt-get install libssl-dev libcurl4-openssl-dev uncrustify libyaml-dev
1515

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

128128
## Multi-threaded Usage
129129

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

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

0 commit comments

Comments
 (0)