You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#KafkaUser
apiVersion: kafka.strimzi.io/v1beta2
kind: KafkaUser
metadata:
name: confluent-schema-registry
namespace: strimzi-ui-demo
labels:
strimzi.io/cluster: schemaregistry
spec:
authentication:
type: tls
authorization:
# Official docs on authorizations required for the Schema Registry:
# https://docs.confluent.io/current/schema-registry/security/index.html#authorizing-access-to-the-schemas-topic
type: simple
acls:
# Allow all operations on the registry-schemas topic
# Read, Write, and DescribeConfigs are known to be required
- resource:
type: topic
name: registry-schemas
patternType: literal
operation: All
type: allow
# Allow all operations on the schema-registry* group
- resource:
type: group
name: schema-registry
patternType: prefix
operation: All
type: allow
# Allow Describe on the __consumer_offsets topic
- resource:
type: topic
name: __consumer_offsets
patternType: literal
operation: Describe
type: allow
A Pod is created with above configuration.
But I want to know, if I want to consume the strimzi-schema-registry from either Producer app or configure the schema URL,how will configure it or Post deployment of strimzi-registry-operator how to consume it.
The text was updated successfully, but these errors were encountered:
Followed the steps mention in : https://github.com/lsst-sqre/strimzi-registry-operator/blob/main/README.md
Using Helm have deployed operator into Kubernetes cluster.
helm install my-strimzi-registry-operator lsst-sqre/strimzi-registry-operator --version 2.1.0 --namespace strimzi-registry --set clusterNamespace="strimzi-kafka",clusterName="kafka"
Deployed StrimziSchemaRegistry resources like KafkaTopic, KafkaUser, StrimziSchemaRegistry as below referance:
kind: KafkaTopic
metadata:
name: registry-schemas
namespace: strimzi-ui-demo
labels:
strimzi.io/cluster: schemaregistry
spec:
partitions: 1
replicas: 3
config:
# http://kafka.apache.org/documentation/#topicconfigs
cleanup.policy: compact
#KafkaUser
apiVersion: kafka.strimzi.io/v1beta2
kind: KafkaUser
metadata:
name: confluent-schema-registry
namespace: strimzi-ui-demo
labels:
strimzi.io/cluster: schemaregistry
spec:
authentication:
type: tls
authorization:
# Official docs on authorizations required for the Schema Registry:
# https://docs.confluent.io/current/schema-registry/security/index.html#authorizing-access-to-the-schemas-topic
type: simple
acls:
# Allow all operations on the registry-schemas topic
# Read, Write, and DescribeConfigs are known to be required
- resource:
type: topic
name: registry-schemas
patternType: literal
operation: All
type: allow
# Allow all operations on the schema-registry* group
- resource:
type: group
name: schema-registry
patternType: prefix
operation: All
type: allow
# Allow Describe on the __consumer_offsets topic
- resource:
type: topic
name: __consumer_offsets
patternType: literal
operation: Describe
type: allow
#StrimziSchemaRegistry
apiVersion: roundtable.lsst.codes/v1beta1
kind: StrimziSchemaRegistry
metadata:
name: confluent-schema-registry
namespace: strimzi-ui-demo
spec:
strimziVersion: v1beta2
listener: tls
securityProtocol: SSL
compatibilityLevel: forward #backward
registryImage: confluentinc/cp-schema-registry
registryImageTag: "7.2.1"
cpuLimit: ""
cpuRequest: ""
memoryLimit: ""
memoryRequest: ""
A Pod is created with above configuration.
But I want to know, if I want to consume the strimzi-schema-registry from either Producer app or configure the schema URL,how will configure it or Post deployment of strimzi-registry-operator how to consume it.
The text was updated successfully, but these errors were encountered: