// SPDX-License-Identifier: Apache-2.0 // Copyright Authors of K9s package config import ( "github.com/derailed/k9s/internal/client" v1 "k8s.io/api/core/v1" ) const defaultDockerShellImage = "busybox:1.35.0" // Limits represents resource limits. type Limits map[v1.ResourceName]string // ShellPod represents k9s shell configuration. type ShellPod struct { Image string `json:"image"` ImagePullSecrets []v1.LocalObjectReference `json:"imagePullSecrets,omitempty" yaml:"imagePullSecrets,omitempty"` ImagePullPolicy v1.PullPolicy `json:"imagePullPolicy,omitempty" yaml:"imagePullPolicy,omitempty"` Command []string `json:"command,omitempty"` Args []string `json:"args,omitempty"` Namespace string `json:"namespace"` Limits Limits `json:"resources,omitempty"` Labels map[string]string `json:"labels,omitempty"` } // NewShellPod returns a new instance. func NewShellPod() *ShellPod { return &ShellPod{ Image: defaultDockerShellImage, Namespace: "default", Limits: defaultLimits(), } } // Validate validates the configuration. func (s *ShellPod) Validate(client.Connection, KubeSettings) { if s.Image == "" { s.Image = defaultDockerShellImage } if len(s.Limits) == 0 { s.Limits = defaultLimits() } } func defaultLimits() Limits { return Limits{ v1.ResourceCPU: "100m", v1.ResourceMemory: "100Mi", } }