aws-controllers-k8s / community

AWS Controllers for Kubernetes (ACK) is a project enabling you to manage AWS services from Kubernetes
https://aws-controllers-k8s.github.io/community/
Apache License 2.0
2.42k stars 255 forks source link

Kinesis service controller #235

Open cc4i opened 4 years ago

cc4i commented 4 years ago

New ACK Service Controller

Support for Amazon Kinesis

List of API resources

List the API resources in order of importance to you:

1) Stream

jaypipes commented 4 years ago

Keep in mind that ACK only handles control plane operations, not data plane operations, so Kinesis API operations like SubscribeToStream, DeregisterStreamConsumer, PutRecord and PutRecords are not going to be supported.

Some Kinesis API operations that are going to be problematic:

Because they represent mutating operations on just a single attribute of a stream and there isn't a ModifyStream or UpdateStream API call, which means we're going to need to inform the code generator in ACK what all those API operations actually do...

Neither of these is congruent with the Kubernetes API and declarative modeling.

So, at least initially, it's only going to be CreateStream and DeleteStream and then followed by the "single attribute mutating operations".

cc4i commented 4 years ago

Thanks @jaypipes pointed out operational focus. Just want to confirm will embed inform code into generator to handle these kind of service or not determine yet?

jaypipes commented 4 years ago

@cc4i we will be enhancing the code generator in ACK to account for these kinds of odd API calls, yes. Already starting to do that with the Elasticache and RDS ACK service controllers, since both of those APIs have a lot of rough edges like this :)

ack-bot commented 3 years ago

Issues go stale after 90d of inactivity. Mark the issue as fresh with /remove-lifecycle stale. Stale issues rot after an additional 30d of inactivity and eventually close. If this issue is safe to close now please do so with /close. Provide feedback via https://github.com/aws-controllers-k8s/community. /lifecycle stale

RedbackThomson commented 3 years ago

/lifecycle frozen

jaypipes commented 1 year ago

@cc4i and all other watchers: you can install and use the Kinesis controller for ACK now.

You can install it using the kinesis-chart Helm chart.

Feedback and criticism very much welcomed! -jay