generated from saic-oss/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/sifo580 Adding Podman to be used for registry access (#15)
* update for podman * test readme * Update README.md Co-authored-by: Andy Roth <roth.andy@gmail.com> * update for comeents from review * update for syntax error on dnf -command * update for Dockerfile * update for comments from MR * switched to podman 2.2 * update to move podman section in dockerfile * put container-selinux back in * cleanup and add podman_spec * clearing extra space. Co-authored-by: Sony Francis <sony.p.francis@saic.com> Co-authored-by: Andy Roth <roth.andy@gmail.com> Co-authored-by: Brad Staton <47569500+saic-statonb@users.noreply.github.com>
- Loading branch information
1 parent
a9f734c
commit 9973e66
Showing
2 changed files
with
24 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env shellspec | ||
|
||
Describe "printVersion()" | ||
printVersion() { | ||
podman --version | grep "${PODMAN_VERSION}" | ||
} | ||
|
||
It "validates tool is installed by checking version" | ||
When call printVersion | ||
The output should include "${PODMAN_VERSION}" | ||
The status should eq 0 | ||
End | ||
End |
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