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

kubernetes-operator

Here are 392 public repositories matching this topic...

flyte
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

smanpathak
smanpathak commented Jul 24, 2018

Currently, we have a simple approach where the operator simply watches the namespace it was created in. But in larger env, multi-namespaces are common. To create mysql cluster in any namespace, we broadly have two approaches (1) Make mysql-operator watch and create mysql clusters in any namespace (2) Continue with current model.
However, current approach is problematic when multiple namespaces ar

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

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