Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: correct start of data container #331

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Dokken Changelog

### Bug Fixes

## [2.20.7](https://github.com/test-kitchen/kitchen-dokken/compare/v2.20.6...v2.20.7) (2024-07-02)

## [2.20.6](https://github.com/test-kitchen/kitchen-dokken/compare/v2.20.5...v2.20.6) (2024-07-01)


Expand Down
2 changes: 1 addition & 1 deletion lib/kitchen/driver/dokken_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
module Kitchen
module Driver
# Version string for Dokken Kitchen driver
DOKKEN_VERSION = "2.20.6".freeze
DOKKEN_VERSION = "2.20.7".freeze
end
end
2 changes: 1 addition & 1 deletion lib/kitchen/helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def data_dockerfile(registry)
RUN chmod 600 /root/.ssh/authorized_keys

EXPOSE 22
CMD [ "/usr/sbin/sshd", "-D", "-p", "22", "-o", "UseDNS=no", "-o", "UsePrivilegeSeparation=no", "-o", "MaxAuthTries=60" ]
CMD [ "/usr/sbin/sshd", "-D", "-p", "22", "-o", "UseDNS=no", "-o", "MaxAuthTries=60" ]

VOLUME /opt/kitchen
VOLUME /opt/verifier
Expand Down