The Wayback Machine - http://web.archive.org/web/20211122123745/https://github.com/topics/operators
Skip to content
#

operators

Here are 225 public repositories matching this topic...

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

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
kensipe
kensipe commented Mar 28, 2020

The kuttl cli overrides the testsuite file... with the exception of the test env. (this is a require to fix that).

If the kuttl-test.yaml has a configuration for startControlPlane: true and the cli is started with --start-kind.... the cli override should start kind.

Perhaps we should have an override that allows to point at a cluster (currently it is the default that is selected if no

vkadi
vkadi commented Nov 15, 2021

I am seeing the issue with CW logstreams not getting created when using the "mounted-file" to ingest the logs from file in the container.
I picked the sample config from examples folder and able to reproduce it , below is the demo config what I have used.

apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
namespace: default
spec:
selector:
matchLabels:

Kaitou786
Kaitou786 commented Oct 7, 2020

Describe the bug
Currently we check our code with golangci-lint, which in itself catches most of the things, but having comments over exported function is not caught by it, it'll be nice to enable both the linters. Currently there are some warnings by this linter on the main branch

To Reproduce
Run: golint ./... | grep -v zz_generated #to ignore the auto-generated files

**Expe

Improve this page

Add a description, image, and links to the operators 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 operators topic, visit your repo's landing page and select "manage topics."

Learn more