The Wayback Machine - https://web.archive.org/web/20220103073845/https://github.com/topics/kubernetes-operator
Skip to content
#

kubernetes-operator

Here are 430 public repositories matching this topic...

flyte
kumare3
kumare3 commented Nov 30, 2021

Describe the issue

Currently we run the Linter CI for golang repos using the golang-ci-linter binary. But according to the documentation it is faster and better to use the github action.
https://golangci-lint.run/usage/install/

The UX of all the error highlighting is also better.

What if we do not do this?

Finding linter errors is troublesome as users have to parse through the cons

absynth76
absynth76 commented Jun 7, 2021

Almost all CRD declared in operator lifecyle manager are in v1alpha1 version.
Until now it's enough but when it'll be migrated to v1, the conditions will have to respect conventions describe here:
https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties

This should be put in the backlog.

The current conditions are

nolar
nolar commented Aug 20, 2020

Problem

K8s-event posting can fail to post an event (kind: Event) for any reasons, such as API rate limiting, temporary API failures (HTTP 5xx), control plane connectivity issues, SSL handshake failures, etc.

This leads to the events being lost, while they can represent some value. This applies both to the events created from the per-object logger messages (logger.info(...) from the

divolgin
divolgin commented Mar 19, 2021

kubectl schemahero get migrations command can output a long list of migrations, with potentially repeating names.

To find the right migration with a tool like grep, we need to look at the what schema files were changed to determine what the name of the migration would be.

It would be nice to list migrations sorted by timestamps or filter by migration state (open/approved/applied)

secureCodeBox
VladoPortos
VladoPortos commented May 7, 2021

I'm not sure right now how to specify NodePort with AWX operator. Its not mentioned in documentation.

spec:
tower_ingress_type: NodePort

Ok, but how to avoid random port assignment,

Usually I can do in service deployment something like:

spec:
  type: NodePort
  ports:
    - port: 80
      nodePort: 30080
      name: http
    - port: 443
      nodePort: 30443
      name
ytsarev
ytsarev commented Apr 6, 2020

Most of the current use cases, automated tests and functional test scenarios were performed in context of 2 clusters only as it is most common and easier to test setup.

Meanwhile we need to be ready and test for >2 scenario cluster scenario.

This series of testing can reveal potential edge cases in current LB strategies implementation and can lead to LB logic extension and handling of >2 num

Improve this page

Add a description, image, and links to the kubernetes-operator topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the kubernetes-operator topic, visit your repo's landing page and select "manage topics."

Learn more