Files
capsule/pkg/api/external_service_ips.go
2022-12-26 14:27:26 +01:00

14 lines
322 B
Go

// Copyright 2020-2021 Clastix Labs
// SPDX-License-Identifier: Apache-2.0
package api
// +kubebuilder:validation:Pattern="^([0-9]{1,3}.){3}[0-9]{1,3}(/([0-9]|[1-2][0-9]|3[0-2]))?$"
type AllowedIP string
// +kubebuilder:object:generate=true
type ExternalServiceIPsSpec struct {
Allowed []AllowedIP `json:"allowed"`
}