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
*`✓` Changes in main Kubernetes repo are manually ([should be automated](https://github.com/kubernetes-client/python/issues/177)) published to client-python when they are available.
@@ -151,11 +149,10 @@ Participation in the Kubernetes community is governed by the [CNCF Code of Condu
151
149
152
150
## Kubernetes Incubator
153
151
154
-
This is a [Kubernetes Incubator project](https://github.com/kubernetes/community/blob/master/incubator.md).
152
+
This is a [Kubernetes Incubator project](https://github.com/kubernetes/community/blob/master/incubator.md).
Copy file name to clipboardexpand all lines: devel/submodules.md
+8-6
Original file line number
Diff line number
Diff line change
@@ -1,27 +1,29 @@
1
1
# Submodules
2
+
2
3
To comply with [client library structure requirement](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/api-machinery/csi-client-structure-proposal.md),
3
-
python client base utilities is moved into kubernetes-client/python-base repo. `git submodules` is being used to handle dependency to that repo.
4
-
This document will provide basic steps to get submodules work.
4
+
python client base utilities is moved into the [kubernetes-client/python-base](https://github.com/kubernetes-client/python-base) repo. `git submodules` is being used to handle dependency to that repo.
5
+
This document will provide basic steps to get submodules working.
5
6
6
7
# Clone repo
7
-
To clone repo, you need to pass `recursive` parameter to make the clone also get submodules:
8
+
9
+
To clone the repo, you need to pass the `recursive` parameter to make the clone also get submodules:
if you already clone repo with no `--recursive` option, you can run this command to get submodules:
15
+
if you have already cloned the repo with no `--recursive` option, you can run this command to get submodules:
14
16
15
17
```bash
16
18
git submodule update --init
17
19
```
18
20
19
21
# Update submodule
20
-
If you changed kubernetes-client/python-base and want to pull your changes into this repo run this command:
22
+
23
+
If you changed [kubernetes-client/python-base](https://github.com/kubernetes-client/python-base) and want to pull your changes into this repo run this command:
21
24
22
25
```bash
23
26
git submodule update --remote
24
27
```
25
28
26
29
Once updated, you should create a new PR to commit changes to the repository.
0 commit comments