Skip to content

Commit 3817bf0

Browse files
committed
add ssh forwarding to tild yp step and correct undeploy command indoc
Signed-off-by: hanenMizouni <[email protected]>
1 parent 7f99205 commit 3817bf0

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

docs/src/developers/developement.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -147,12 +147,10 @@ IMG=my-registry/controller:my-tag make undeploy
147147

148148
# Delete Cluster Api
149149

150-
Please look at [cluster-api][cluster-api] section about deployment of cert-manager and cluster-api
151-
152-
Or you can use this to undeploy cluster-api with cert-manager:
150+
You can use this to undeploy cluster-api with cert-manager:
153151

154152
```
155-
make deploy-clusterapi
153+
make undeploy-clusterapi
156154
```
157155

158156
<!-- References -->

docs/src/developers/tilt-setup.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,13 @@ Or you can set with tilt.config:
4040
}
4141
```
4242
### Tilt
43+
We need SSH forwarding in Tilt to securely relay authentication credentials from your local machine to containers running in the Kubernetes cluster managed by Tilt.
44+
This enables you to access remote resources that require SSH authentication
45+
46+
A way to enable SSH forwarding in a single line is to do so :
47+
```
48+
ssh -f -N -i <private_key_file> <username>@<remote_host> -L <local_port>:<destination_host>:<destination_port>
49+
```
4350
Please launch tilt at the project's root folder:
4451
```
4552
[root@cidev-admin cluster-api-provider-outscale]# tilt up

0 commit comments

Comments
 (0)