aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Gets org_apache_ZooKeeperService metrics from pzoo toometrics-experimentStaffan Olsson2017-11-041-1/+1
| | | | like from zoo. Probably solves #61.
* Exports everything from Zookeeper tooStaffan Olsson2017-11-041-17/+5
|
* Looks like metrics exporter needs more memory now with a debian jvmStaffan Olsson2017-11-031-1/+1
|
* temporarily export all kafka metrics, very slowStaffan Olsson2017-11-032-16/+6
|
* Can't have 1 replica, even if we can afford ...Staffan Olsson2017-11-031-2/+2
| | | | | | | to lose the data, because we're unable to produce if the pod that owns that replica goes down. Instead we can wait for 2 acks for important data, and 0 or 1 ack for less important.
* Upgrade to jmx-exporter 0.1.0Staffan Olsson2017-11-033-3/+3
|
* Merge branch 'addon-bootstrap-service' into kubernetes-1.8-testStaffan Olsson2017-11-031-0/+11
|\
| * Avoids change to the test case, as it causes conflict.Staffan Olsson2017-11-031-2/+1
| | | | | | | | | | | | We could have a separate bootstrap test instead. This reverts commit fabb292ba83821cfa7d5f5a0c8cf54a1bc33d454.
| * Evaluates bootstrap; kafkacat ERRs on missing brokers ...Staffan Olsson2017-08-091-1/+2
| | | | | | | | so this solves the problem with maintaining the BOOTSTRAP string
| * Adds a service to use as "bootstrap" servers url ...Staffan Olsson2017-08-091-0/+11
| | | | | | | | | | i.e. to connect to any kafka broker and get a list of actual broker DNS names to talk to.
* | Merge remote-tracking branch 'origin/rolling-update' into kubernetes-1.8-testStaffan Olsson2017-11-033-0/+6
|\ \
| * | Rolling Update for zookeeper tooStaffan Olsson2017-08-072-0/+4
| | |
| * | Changes update strategy from OnDelete to automaticStaffan Olsson2017-08-071-0/+2
| | | | | | | | | | | | | | | To see this in action, with no other changes: kubectl -n kafka patch statefulset kafka --type='json' -p='[{"op": "replace", "path": "/spec/updateStrategy/type", "value": "RollingUpdate"}]'
* | | Runs Kafka 1.0.0Staffan Olsson2017-11-016-10/+7
| | |
* | | Merge branch '1.8-kube-events' into kubernetes-1.8-testStaffan Olsson2017-10-304-0/+202
|\ \ \
| * | | Fixes manifest. I must have had a local edit last time.Staffan Olsson2017-10-301-1/+1
| | | |
| * | | Merge pull request #86 from Yolean/atamon-patch-1solsson2017-10-301-2/+2
| |\ \ \ | | | | | | | | | | Fix retention from 0.8 days to 8 days
| | * | | Fix retention from 0.8 days to 8 daysatamon-patch-1Anton Lindgren2017-10-301-2/+2
| |/ / / | | | | | | | | | | | | | | | | Silly change, but 0.8 days is very short. Google helped me verify the math.
| * | | Aligns RBAC with addons->folders for v3.0.0Staffan Olsson2017-10-271-0/+0
| | | |
| * | | Fixes JSON syntax, topic is jq:able nowStaffan Olsson2017-10-271-2/+2
| | | |
| * | | Needs to be tweaked depending on the churnStaffan Olsson2017-10-271-1/+1
| | | |
| * | | An actual assertionStaffan Olsson2017-10-271-10/+72
| | | |
| * | | Manifests updated to 1.8 and v3.0.0 pre-mergeStaffan Olsson2017-10-273-2/+10
| | | |
| * | | kafkacat's debug output solves the silence, but ...Staffan Olsson2017-10-261-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | to see the error message (like missing RBAC) you basically have to run the curl command. I'd like startup to be as fast as possible, to not miss events, so I hesitate to add checks.
| * | | bash -e is important, in combination with curl -f, so ...Staffan Olsson2017-10-261-12/+2
| | | | | | | | | | | | | | | | | | | | we don't send error messages to the topic (even if it's json -- format is different and it's pretty printed)
| * | | Argh, curl will pretty print the json ...Staffan Olsson2017-10-261-1/+11
| | | | | | | | | | | | | | | | and kafkacat will produce each line separately
| * | | Makes things a bit less obscure if for example RBAC failsStaffan Olsson2017-10-261-2/+12
| | | |
| * | | Use an image with new kafkacat and curl versionsStaffan Olsson2017-10-261-1/+1
| | | |
| * | | Not a proper test yet, but the PR documents how to use it to see eventsStaffan Olsson2017-08-051-7/+2
| | | |
| * | | Moves the example comsumer to the test namespaceStaffan Olsson2017-08-051-5/+4
| | | |
| * | | Adds RBAC policy for curl, default service accountStaffan Olsson2017-08-051-0/+30
| | | |
| * | | Latest build suppors snappy compressionStaffan Olsson2017-08-052-2/+2
| | | |
| * | | Works with my current kafka image, and the test consumer still sees JSONStaffan Olsson2017-08-051-1/+1
| | | |
| * | | Testing compression but solsson/kafka:0.11.0.0 throws ...Staffan Olsson2017-08-051-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Caused by: java.lang.NoClassDefFoundError: Could not initialize class org.xerial.snappy.Snappy at org.xerial.snappy.SnappyInputStream.readFully(SnappyInputStream.java:145) at org.xerial.snappy.SnappyInputStream.readHeader(SnappyInputStream.java:99) at org.xerial.snappy.SnappyInputStream.<init>(SnappyInputStream.java:59) at org.apache.kafka.common.record.CompressionType$3.wrapForInput(CompressionType.java:82) ... 40 more
| * | | Produces proper json. Let's see when curl gives up and the container restarts.Staffan Olsson2017-08-051-2/+1
| | | |
| * | | Quite interesting way to test a command from yaml - see it in logsStaffan Olsson2017-08-051-1/+3
| | | |
| * | | wipStaffan Olsson2017-08-051-5/+6
| | | |
| * | | Produces and reads eventsStaffan Olsson2017-08-053-2/+72
| | | |
| * | | Creates a pod for expermentation with kubectl and kafkacatStaffan Olsson2017-08-051-0/+27
| | | |
* | | | TODO I guess labels must be unique for each test now?Staffan Olsson2017-10-251-2/+6
| | | |
* | | | Updates test deployment to 1.8 APIStaffan Olsson2017-10-251-1/+5
| | | |
* | | | Merge remote-tracking branch 'origin/bootstrap-test' into kubernetes-1.8-testStaffan Olsson2017-10-251-23/+99
|\ \ \ \
| * | | | Return to grouping the tests in a namespace, ...Staffan Olsson2017-10-201-3/+3
| | | | | | | | | | | | | | | | | | | | if you haven't created it, you probably don't want the tests.
| * | | | Divides a couple of librdkafka timoeuts by 100Staffan Olsson2017-10-161-2/+3
| | | | |
| * | | | Don't fail the test if bootstrap fails ...Staffan Olsson2017-10-161-9/+15
| | | | | | | | | | | | | | | | | | | | but only if producers and consumers (which must maintain a broker list) fail
| * | | | Logs broker connect/disconnect stateStaffan Olsson2017-10-161-10/+35
| | | | |
| * | | | More ideasStaffan Olsson2017-10-161-18/+42
| | | | |
| * | | | not workingStaffan Olsson2017-10-161-2/+17
| | | | |
| * | | | Converted to latest Yolean/kube-test boilerplateStaffan Olsson2017-10-161-22/+27
| | | | |
* | | | | Exposes JMX port on brokers, for direct access without serviceStaffan Olsson2017-10-251-0/+2
| | | | |