From 4d2aeccea089e8bd7fc52d648f5f17b3b61d39da Mon Sep 17 00:00:00 2001 From: Rafal Korepta Date: Wed, 26 Oct 2022 01:32:29 +0200 Subject: [PATCH] k8s: Extend schema registry authorization method With changes to authorization configuration options the CRD is updated. REF: https://github.com/redpanda-data/redpanda/pull/6639 --- src/go/k8s/apis/redpanda/v1alpha1/cluster_types.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/go/k8s/apis/redpanda/v1alpha1/cluster_types.go b/src/go/k8s/apis/redpanda/v1alpha1/cluster_types.go index 3367a73c8d97d..93b4383d46c6a 100644 --- a/src/go/k8s/apis/redpanda/v1alpha1/cluster_types.go +++ b/src/go/k8s/apis/redpanda/v1alpha1/cluster_types.go @@ -581,6 +581,9 @@ type SchemaRegistryAPI struct { External *SchemaRegistryExternalConnectivityConfig `json:"external,omitempty"` // TLS is the configuration for schema registry TLS *SchemaRegistryAPITLS `json:"tls,omitempty"` + // AuthenticationMethod can enable authentication method per schema registry + // listener. Available options are: none, http_basic. + AuthenticationMethod string `json:"authenticationMethod,omitempty"` } // SchemaRegistryExternalConnectivityConfig defines the external connectivity