-
Notifications
You must be signed in to change notification settings - Fork 2
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
Add automated tests #3
base: master
Are you sure you want to change the base?
Conversation
molecule/default/converge.yml
Outdated
--- | ||
- name: Converge | ||
hosts: all | ||
become: true | ||
|
||
vars: | ||
|
||
pre_tasks: | ||
|
||
|
||
roles: | ||
- role: ansible-role-nfs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're going to need to set up a pair of images to act as client + server in the molecule file, and then populate this section to configure both the client and server (See the role's readme, it documents the whole thing), And then in the verify stage, we can test by creating a file on the client, and checking the server to see if it showed up.
molecule/default/molecule.yml
Outdated
driver: | ||
name: docker | ||
platforms: | ||
- name: instance |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rename instance
to be nfsclient, and add another image to become the nfsserver.
No description provided.