File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 15
15
- name : Prepare
16
16
run : |
17
17
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
19
19
- name : Build client library
20
20
run : |
21
21
cd kubernetes
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ git clone https://github.com/kubernetes-client/c
11
11
CLIENT_REPO_ROOT=${PWD} /c
12
12
13
13
# 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
15
15
16
16
# Move into the Kubernetes directory
17
17
cd ${CLIENT_REPO_ROOT} /kubernetes
@@ -127,7 +127,7 @@ list all pods in cluster:
127
127
128
128
## Multi-threaded Usage
129
129
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 :
131
131
132
132
1 . After the program starts up, main thread must call the function ``` apiClient_setupGlobalEnv() ``` before any worker thread is created.
133
133
You can’t perform that action at this time.
0 commit comments