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

kola/test/docker: enable docker.selinux for all arch #225

Merged
merged 2 commits into from
Sep 3, 2021
Merged
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

### Changed
- Enabled SELinux for ARM64 ([#222](https://github.com/kinvolk/mantle/pull/222/))
- Enabled `docker.selinux` test for ARM64 ([#225](https://github.com/kinvolk/mantle/pull/225))

### Removed

Expand Down
11 changes: 5 additions & 6 deletions kola/tests/docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,11 @@ type simplifiedDockerInfo struct {

func init() {
register.Register(&register.Test{
Run: dockerSELinux,
ClusterSize: 1,
Name: "docker.selinux",
Distros: []string{"cl"},
Channels: []string{"alpha", "beta"},
Architectures: []string{"amd64"},
Run: dockerSELinux,
ClusterSize: 1,
Name: "docker.selinux",
Distros: []string{"cl"},
MinVersion: semver.Version{Major: 2942},
})
register.Register(&register.Test{
Run: dockerNetwork,
Expand Down