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

Add dockerRunOptions setting #64

Merged
merged 2 commits into from
Jul 23, 2024
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
18 changes: 18 additions & 0 deletions examples/gpu.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
apiVersion: container-canary.nvidia.com/v1
kind: Validator
name: gpu
description: A GPU example to show you can pass extra flags to Docker
command:
- "sleep"
- "30"
dockerRunOptions:
- "--gpus"
- "all"
checks:
- name: nvidia-smi
description: 📦 Can run nvidia-smi
probe:
exec:
command:
- /usr/bin/nvidia-smi
initialDelaySeconds: 1
4 changes: 4 additions & 0 deletions internal/apis/v1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ type Validator struct {
// A command to run in the container
// +optional
Command []string

// Additional flags to pass to the docker CLI.
// +optional
DockerRunOptions []string `yaml:"dockerRunOptions"`
}

type Check struct {
Expand Down
2 changes: 1 addition & 1 deletion internal/config/load.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"path/filepath"

canaryv1 "github.com/nvidia/container-canary/internal/apis/v1"
"gopkg.in/yaml.v2"
yaml "gopkg.in/yaml.v2"
)

func LoadValidatorFromURL(url string) (*canaryv1.Validator, error) {
Expand Down
4 changes: 2 additions & 2 deletions internal/container/container.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ type ContainerInterface interface {
Logs() (string, error)
}

func New(image string, env []v1.EnvVar, ports []v1.ServicePort, volumes []canaryv1.Volume, command []string) ContainerInterface {
func New(image string, env []v1.EnvVar, ports []v1.ServicePort, volumes []canaryv1.Volume, command []string, dockerRunOptions []string) ContainerInterface {
name := fmt.Sprintf("%s%s", "canary-runner-", uuid.New().String()[:8])
return &DockerContainer{Name: name, Image: image, Command: command, Env: env, Ports: ports, Volumes: volumes}
return &DockerContainer{Name: name, Image: image, Command: command, Env: env, Ports: ports, Volumes: volumes, RunOptions: dockerRunOptions}
}
5 changes: 5 additions & 0 deletions internal/container/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ type DockerContainer struct {
Env []v1.EnvVar
Ports []v1.ServicePort
Volumes []canaryv1.Volume
RunOptions []string
runCommand string
}

Expand All @@ -46,6 +47,10 @@ func (c *DockerContainer) Start() error {
}
}

if len(c.RunOptions) > 0 {
commandArgs = append(commandArgs, c.RunOptions...)
}

commandArgs = append(commandArgs, c.Image)

if len(c.Command) > 0 {
Expand Down
4 changes: 2 additions & 2 deletions internal/container/docker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func TestDockerContainer(t *testing.T) {
volumes := []canaryv1.Volume{
{MountPath: "/foo"},
}
c := New("nginx", env, ports, volumes, nil)
c := New("nginx", env, ports, volumes, nil, nil)

err := c.Start()

Expand Down Expand Up @@ -69,7 +69,7 @@ func TestDockerContainer(t *testing.T) {
}
}
func TestDockerContainerRemoves(t *testing.T) {
c := New("nginx", nil, nil, nil, nil)
c := New("nginx", nil, nil, nil, nil, nil)

err := c.Start()
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion internal/validator/validator.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ func loadConfig(filePath string) tea.Cmd {

func startContainer(image string, validator *canaryv1.Validator) tea.Cmd {
return func() tea.Msg {
container := container.New(image, validator.Env, validator.Ports, validator.Volumes, validator.Command)
container := container.New(image, validator.Env, validator.Ports, validator.Volumes, validator.Command, validator.DockerRunOptions)
err := container.Start()
if err != nil {
return containerFailed{Error: err}
Expand Down
Loading