build: update CRDs and k8s dependencies (#68)

This commit is contained in:
Julia Iskierka
2021-05-10 10:35:08 +02:00
committed by GitHub
parent 3fa0cc3b66
commit 9b8f463527
12 changed files with 904 additions and 680 deletions

View File

@ -36,7 +36,7 @@ const (
// HydraAdmin defines the desired hydra admin instance to use for OAuth2Client
type HydraAdmin struct {
// +kubebuilder:validation:MaxLength=64
// +kubebuilder:validation:Pattern=(^$|^https?://.*)
// +kubebuilder:validation:Pattern=`(^$|^https?://.*)`
//
// URL is the URL for the hydra instance on
// which to set up the client. This value will override the value
@ -132,7 +132,7 @@ type GrantType string
// ResponseType represents an OAuth 2.0 response type strings
type ResponseType string
// +kubebuilder:validation:Pattern=\w+:/?/?[^\s]+
// +kubebuilder:validation:Pattern=`\w+:/?/?[^\s]+`
// RedirectURI represents a redirect URI for the client
type RedirectURI string

View File

@ -15,7 +15,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
// autogenerated by controller-gen object, do not modify manually
// Code generated by controller-gen. DO NOT EDIT.
package v1alpha1
@ -70,7 +70,7 @@ func (in *OAuth2Client) DeepCopyObject() runtime.Object {
func (in *OAuth2ClientList) DeepCopyInto(out *OAuth2ClientList) {
*out = *in
out.TypeMeta = in.TypeMeta
out.ListMeta = in.ListMeta
in.ListMeta.DeepCopyInto(&out.ListMeta)
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]OAuth2Client, len(*in))