Is RKE (from Rancher) production ready? [closed] - kubernetes

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
All is in the title: Is RKE (from Rancher) production ready?
I tried to google it without success.
And is there any best practices to set up a production cluster with it?
Thanks for your help.

This question is rather hard to answer without knowing your acceptance criteria. What is production readiness from your point of view?
High availability? Can be achived
(Enterprise) Customer Support? Can be requested
Are you concerned about the conformance of the k8s deployment through rke? Check https://www.cncf.io/certification/software-conformance/ - Rancher is listed there.
Maybe give https://github.com/heptio/sonobuoy a try.
Cheers

Related

The difference among alpha,beta and stable in kubernetes [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
Can you explain the different features among alpha, beta and stable in kubernetes?
And I also want to know what the General Availability ( a.k.a GA ).
Thank a lot!!
Alpha means the feature is disabled by default and may change wildly before it exits alpha. Beta means on by default, stable for most use, but still might change before GA. GA means the feature will not change in backwards incompatible ways and has the full trust of the project behind it.

Swift development pods [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
is there some good tutorial where I can follow, is there a good tutorial for better understanding, the ones I find i just create the pod and them publish, there is no implementation for me start to develop my own
This is a poorly formed question... But if you're asking how to use podfiles, this video works great: https://www.youtube.com/watch?v=MuMZZtQpB6Y
If you're trying to make a podfile, here you are: https://guides.cocoapods.org/making/making-a-cocoapod.html

Kubernetes Template UML models [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Is there any place where I can find the UML representation of Kubernetes Templatesand constructs - Pod, ReplicaSet, Job etc.
There is few diagrams you can find.
For example how does the Container Deployment work:
How does the Kubernetes Object work:
How does the architecture work:
I also do recommend reading Kubernetes in three diagrams by Tsuyoshi Ushio and Getting Started With Kubernetes.

Switch from RabbitMQ to Kafka [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
How easy is to switch from Rabbit to Kafka in existing solution, to replace one implementation (Rabbit) with other (Kafka)? We are about to use Rabbit in our implementation but we want to see if it is possible in the future to replace it with Kafka.
It is possible, and I've seen people do it - but it is a big project.
Not only the APIs are different, but the semantics are different. So you need to rethink your data model, scaling model, error handling, etc. And then there's testing.
If you don't have tons of code to update, and the code is localized and you have both RabbitMQ and Kafka experts on the team you may be able to get it done in a month or two.

Good tutorials/books starting amazon EC2 java REST web service [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I need to build a very scalable REST web service that will be consumed both by mobile apps, clients surfing the web, servers, etc...
Now as you can imagine this is a rather large task and I have no idea where to start, so I wonder if there are any good tutorials or books to help me on my way?
Thanks in advance!
A good starting point would be reading the "REST API - Design Rulebook" by "Mark Masse" published by O'Reilly Media, Inc.