From jakub at scholz.cz Mon Dec 10 18:02:33 2018 From: jakub at scholz.cz (Jakub Scholz) Date: Mon, 10 Dec 2018 19:02:33 +0100 Subject: [Strimzi] RC1 for Strimzi 0.9.0 Message-ID: Hi, The Release Candidate 1 for the first Strimzi 0.9.0 release is now available. The main features are: * Add possibility to label and annotate different resources * Add support for TransactionalID in KafkaUser resource * Update to Kafka 2.0.1 * Add maintenance time windows support for allowing CA certificates renewal rolling update started only in specific times More details can be found on our GitHub: https://github.com/strimzi/strimzi-kafka-operator/releases/tag/0.9.0-rc1 Thanks & Regards Jakub -------------- next part -------------- An HTML attachment was scrubbed... URL: From dandaniel97 at gmail.com Wed Dec 12 11:55:17 2018 From: dandaniel97 at gmail.com (Daniel Beilin) Date: Wed, 12 Dec 2018 13:55:17 +0200 Subject: [Strimzi] Hacking strimzi Message-ID: Hello, I want to change the source code for the cluster operator and make a new image, but I'm having some difficulties with building it. First, I can't run only the make file of the cluster operator by its own, is it even possible? Second, when I try to build using the main make file it fails on the tests for the crd models and I don't know what to do with it, is there an explanation on how to do it? as the hacking.md file doesn't explain this. Best regards, Daniel -------------- next part -------------- An HTML attachment was scrubbed... URL: From jakub at scholz.cz Wed Dec 12 22:02:45 2018 From: jakub at scholz.cz (Jakub Scholz) Date: Wed, 12 Dec 2018 23:02:45 +0100 Subject: [Strimzi] Hacking strimzi In-Reply-To: References: Message-ID: Hi Daniel, If you post more details about your OS and the errors you are getting, we might be able to help a bit more. You can probably also skip the tests. I think that some of the integration tests require running Kubernetes / Openshift cluster. I think in general you should follow these steps to build everything: export MVN_ARGS="-DskipTests" export USER= make all Or just the cluster operator Docker image: mvn clean -DskipTests install cd cluster-operator export MVN_ARGS="-DskipTests" export USER= make all If you do not want to push to any Docker repository, you can call "make docker_build" or "make docker_tag" instead of "make all". Hope this helps. If not feel free to share the errors you are getting. Thanks & Regards Jakub On Wed, Dec 12, 2018 at 12:55 PM Daniel Beilin wrote: > Hello, > I want to change the source code for the cluster operator and make a new > image, but I'm having some difficulties with building it. > First, I can't run only the make file of the cluster operator by its own, > is it even possible? > Second, when I try to build using the main make file it fails on the tests > for the crd models and I don't know what to do with it, is there an > explanation on how to do it? as the hacking.md file doesn't explain this. > > Best regards, > Daniel > _______________________________________________ > Strimzi mailing list > Strimzi at redhat.com > https://www.redhat.com/mailman/listinfo/strimzi > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jakub at scholz.cz Thu Dec 13 21:03:06 2018 From: jakub at scholz.cz (Jakub Scholz) Date: Thu, 13 Dec 2018 22:03:06 +0100 Subject: [Strimzi] [Release] Strimzi 0.9.0 Message-ID: Strimzi 0.9.0 has been released. The main new features are: * Add possibility to label and annotate different resources * Add support for TransactionalID in KafkaUser resource * Update to Kafka 2.0.1 * Add maintenance time windows support and more. For more details go to http://strimzi.io/ and/or https://github.com/strimzi/strimzi-kafka-operator/releases/tag/0.9.0 Thanks to everyone who help with this release. Thanks & Regards Jakub -------------- next part -------------- An HTML attachment was scrubbed... URL: From dandaniel97 at gmail.com Thu Dec 20 12:28:54 2018 From: dandaniel97 at gmail.com (Daniel Beilin) Date: Thu, 20 Dec 2018 14:28:54 +0200 Subject: [Strimzi] Deploying kafka cluster in multiple namespaces Message-ID: Hello, I'm using strimzi 0.8.2/amq streams and I'm trying to deploy a cluster operator and use it from a different project. But when I'm trying to use the template you have in examples in order to deploy I'm getting the error: Kafka.kafka.strimzi.io is forbidden: User cannot create kafka.kafka.strimzi.io in the namespace : no RBAC policy matched What can I do about it? Furthermore, Is there a specific user that needs to be logged in in order to deploy the cluster I'm a different project? And if so can I add this privilege to other users. I'm having a hard time finding which users need to be logged in in order to deploy cluster because we would like to give this ability also to non system:admin users Thank you in advanced, Daniel -------------- next part -------------- An HTML attachment was scrubbed... URL: From dandaniel97 at gmail.com Thu Dec 20 14:37:46 2018 From: dandaniel97 at gmail.com (Daniel Beilin) Date: Thu, 20 Dec 2018 16:37:46 +0200 Subject: [Strimzi] Deploying templates for kafka cluster Message-ID: Hello, I'm using the strimzi 0.8.0 on red hat amq streams and I'm trying to use the templates in the examples folder but when I try to use the template on openshift 3.11 I'm getting the error : The following resource versions are not supported by the server: Api version kafka.strimzi.io/v1alpha1 for kind kafka. I'm not sure why I'm getting this error because I followed the tutorial and it should work, I'd be greatful for advice. Best regards, Daniel -------------- next part -------------- An HTML attachment was scrubbed... URL: From jakub at scholz.cz Thu Dec 20 16:45:15 2018 From: jakub at scholz.cz (Jakub Scholz) Date: Thu, 20 Dec 2018 17:45:15 +0100 Subject: [Strimzi] Deploying kafka cluster in multiple namespaces In-Reply-To: References: Message-ID: Hi Daniel, The user who is using the template needs to have the rights to create the Kafka custom resources. In the 0.9.0, we have a new docs and YAML files to make it easier to add this role to the user: https://strimzi.io/docs/latest/full.html#assembly-getting-started-strimzi-admin-str I think the files should be the same for 0.8.x as well, so you can follow this guide to give the user you use in the console these rights. Thanks & Regards Jakub On Thu, Dec 20, 2018 at 1:29 PM Daniel Beilin wrote: > Hello, > > I'm using strimzi 0.8.2/amq streams and I'm trying to deploy a cluster > operator and use it from a different project. But when I'm trying to use > the template you have in examples in order to deploy I'm getting the error: > Kafka.kafka.strimzi.io is forbidden: User cannot create > kafka.kafka.strimzi.io in the namespace : no RBAC policy matched > > What can I do about it? > > Furthermore, Is there a specific user that needs to be logged in in order > to deploy the cluster I'm a different project? > And if so can I add this privilege to other users. > > I'm having a hard time finding which users need to be logged in in order > to deploy cluster because we would like to give this ability also to non > system:admin users > > Thank you in advanced, > Daniel > > > _______________________________________________ > Strimzi mailing list > Strimzi at redhat.com > https://www.redhat.com/mailman/listinfo/strimzi > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jakub at scholz.cz Thu Dec 20 18:32:54 2018 From: jakub at scholz.cz (Jakub Scholz) Date: Thu, 20 Dec 2018 19:32:54 +0100 Subject: [Strimzi] Deploying templates for kafka cluster In-Reply-To: References: Message-ID: Hi Daniel, I tried this in my OpenShift 3.11 and it seems to work fine. Are you sure this isn't related to the other email and the user has the access rights to create the custom resources? Thanks & Regards Jakub On Thu, Dec 20, 2018 at 3:38 PM Daniel Beilin wrote: > Hello, > I'm using the strimzi 0.8.0 on red hat amq streams and I'm trying to use > the templates in the examples folder but when I try to use the template on > openshift 3.11 I'm getting the error : > > The following resource versions are not supported by the server: Api > version kafka.strimzi.io/v1alpha1 for kind kafka. > > I'm not sure why I'm getting this error because I followed the tutorial > and it should work, I'd be greatful for advice. > > Best regards, > Daniel > _______________________________________________ > Strimzi mailing list > Strimzi at redhat.com > https://www.redhat.com/mailman/listinfo/strimzi > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dandaniel97 at gmail.com Mon Dec 31 14:11:46 2018 From: dandaniel97 at gmail.com (Daniel Beilin) Date: Mon, 31 Dec 2018 16:11:46 +0200 Subject: [Strimzi] Kafka manager Message-ID: Hello, I'm trying to implement kafka manager to work with strimzi/amq streams in openshift, but I'm having some difficulties. I have put the cluster certificate inside the kafka manager pod and enabled tls, furthermore I've created a kafka user for the kafka manager but it still doesn't seem to work when I try to connect to zookeeper with the client service and port 2181 Is it even possible to access the zookeeper from a pod outside of the cluster? In addition, is there a ui in the works for the strimzi or amq streams project? Thank you in advanced, Daniel -------------- next part -------------- An HTML attachment was scrubbed... URL: