mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-03-03 18:20:19 +00:00
13 lines
263 B
Go
13 lines
263 B
Go
// Copyright 2020-2023 Project Capsule Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package api
|
|
|
|
import corev1 "k8s.io/api/core/v1"
|
|
|
|
// +kubebuilder:object:generate=true
|
|
|
|
type LimitRangesSpec struct {
|
|
Items []corev1.LimitRangeSpec `json:"items,omitempty"`
|
|
}
|