forked from projectcontour/contour
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
apis: add TLSCertificateDelegation API types
Updates projectcontour#410 Updates projectcontour#905 Signed-off-by: Dave Cheney <dave@cheney.net>
- Loading branch information
1 parent
377115c
commit 07c7e88
Showing
15 changed files
with
701 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
// Copyright © 2019 Heptio | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package v1beta1 | ||
|
||
import ( | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
) | ||
|
||
// TLSCertificateDelegationSpec defines the spec of the CRD | ||
type TLSCertificateDelegationSpec struct { | ||
Delegations []CertificateDelegation `json:"delegations"` | ||
} | ||
|
||
// CertificateDelegation maps the authority to reference a secret | ||
// in the current namespace to a set of namespaces. | ||
type CertificateDelegation struct { | ||
|
||
// required, the name of a secret in the current namespace. | ||
SecretName string `json:"secretName"` | ||
|
||
// required, the namespaces the authority to reference the | ||
// the secret will be delegated to. | ||
// If TargetNamespaces is nil or empty, the CertificateDelegation' | ||
// is ignored. If the TargetNamespace list contains the character, "*" | ||
// the secret will be delegated to all namespaces. | ||
TargetNamespaces []string `json:"targetNamespaces"` | ||
} | ||
|
||
// +genclient | ||
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object | ||
|
||
// TLSCertificateDelefgation is an TLS Certificate Delegation CRD specificiation. | ||
// See design/tls-certificate-delegation.md for details. | ||
type TLSCertificateDelegation struct { | ||
metav1.TypeMeta `json:",inline"` | ||
metav1.ObjectMeta `json:"metadata"` | ||
|
||
Spec TLSCertificateDelegationSpec `json:"spec"` | ||
} | ||
|
||
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object | ||
|
||
// TLSCertificateDelegationList is a list of TLSCertificateDelegations. | ||
type TLSCertificateDelegationList struct { | ||
metav1.TypeMeta `json:",inline"` | ||
metav1.ListMeta `json:"metadata"` | ||
Items []TLSCertificateDelegation `json:"items"` | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
apis/generated/clientset/versioned/typed/contour/v1beta1/contour_client.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
apis/generated/clientset/versioned/typed/contour/v1beta1/fake/fake_contour_client.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
128 changes: 128 additions & 0 deletions
128
...generated/clientset/versioned/typed/contour/v1beta1/fake/fake_tlscertificatedelegation.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
apis/generated/clientset/versioned/typed/contour/v1beta1/generated_expansion.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.