Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions docs/src/developers/developement.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,12 +147,10 @@ IMG=my-registry/controller:my-tag make undeploy

# Delete Cluster Api

Please look at [cluster-api][cluster-api] section about deployment of cert-manager and cluster-api

Or you can use this to undeploy cluster-api with cert-manager:
You can use this to undeploy cluster-api with cert-manager:

```
make deploy-clusterapi
make undeploy-clusterapi
```

<!-- References -->
Expand Down
7 changes: 7 additions & 0 deletions docs/src/developers/tilt-setup.md
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To correct the sentence for accuracy and clarity:
"This enables access to remote resources requiring SSH authentication."

Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ Or you can set with tilt.config:
}
```
### Tilt
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.
This enables you to access remote resources that require SSH authentication

A way to enable SSH forwarding in a single line is to do so :
```
ssh -f -N -i <private_key_file> <username>@<remote_host> -L <local_port>:<destination_host>:<destination_port>
```
Please launch tilt at the project's root folder:
```
[root@cidev-admin cluster-api-provider-outscale]# tilt up
Expand Down