mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-03-03 02:00:18 +00:00
12 lines
247 B
Go
12 lines
247 B
Go
// Copyright 2020-2021 Clastix Labs
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package api
|
|
|
|
// +kubebuilder:validation:Enum=Always;Never;IfNotPresent
|
|
type ImagePullPolicySpec string
|
|
|
|
func (i ImagePullPolicySpec) String() string {
|
|
return string(i)
|
|
}
|