Skip to content
This repository was archived by the owner on Jul 19, 2024. It is now read-only.

Commit c7f4a43

Browse files
authored
Merge pull request #51 from Charliekenney23/bypass-sshkeygen-stdin
bypass sshkeygen stdin
2 parents 5db29e9 + 5bed6b0 commit c7f4a43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
steps:
2626
- install_build_deps
2727
- checkout
28-
- run: ssh-keygen -b 4096 -t rsa -f $HOME/.ssh/id_rsa -q -N ""
29-
- run: wget https://storage.googleapis.com/kubernetes-release/release/v1.14.0/bin/linux/amd64/kubectl -O /usr/local/bin/kubectl && chmod +x /usr/local/bin/kubectl
28+
- run: echo -e 'y\n' | ssh-keygen -b 4096 -f $HOME/.ssh/id_rsa -t rsa -N ''
3029
- run: ssh-add $HOME/.ssh/id_rsa
30+
- run: wget https://storage.googleapis.com/kubernetes-release/release/v1.14.0/bin/linux/amd64/kubectl -O /usr/local/bin/kubectl && chmod +x /usr/local/bin/kubectl
3131
- run:
3232
name: integration test
3333
command: make test

0 commit comments

Comments
 (0)