-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Enno Boland <[email protected]>
- Loading branch information
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,16 @@ stringData: | |
-----BEGIN OPENSSH PRIVATE KEY----- | ||
... | ||
-----END OPENSSH PRIVATE KEY----- | ||
sshKexAlgorithms: | | ||
curve25519-sha256 | ||
[email protected] | ||
ecdh-sha2-nistp256 | ||
ecdh-sha2-nistp384 | ||
ecdh-sha2-nistp521 | ||
diffie-hellman-group-exchange-sha256 | ||
diffie-hellman-group14-sha256 | ||
diffie-hellman-group14-sha1 | ||
--- | ||
apiVersion: v1 | ||
kind: Secret | ||
|
@@ -60,4 +70,4 @@ stringData: | |
githubAppPrivateKey: | | ||
-----BEGIN OPENSSH PRIVATE KEY----- | ||
... | ||
-----END OPENSSH PRIVATE KEY----- | ||
-----END OPENSSH PRIVATE KEY----- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -341,6 +341,16 @@ The following keys are valid to refer to credential secrets: | |
#### SSH repositories | ||
|
||
* `sshPrivateKey` refers to the SSH private key for accessing the repositories | ||
* `sshKexAlgorithms` refers to the SSH key exchange algorithms to use when connecting to the repositories. If not specified, the following algorithms are used: | ||
* `curve25519-sha256` | ||
* `[email protected]` | ||
* `ecdh-sha2-nistp256` | ||
* `ecdh-sha2-nistp384` | ||
* `ecdh-sha2-nistp521` | ||
* `diffie-hellman-group-exchange-sha256` | ||
* `diffie-hellman-group14-sha256` | ||
* `diffie-hellman-group14-sha1` | ||
|
||
|
||
#### HTTPS repositories | ||
|
||
|