-
Updated
Aug 27, 2021 - Java
kubernetes-operator
Here are 392 public repositories matching this topic...
-
Updated
Aug 28, 2021 - Go
-
Updated
Aug 25, 2021 - Go
monitored configMaps too.
`{
"configVersion":"v1",
"kubernetes":[
{
"apiVersion": "events.k8s.io/v1beta1",
"kind": "Event",
"namespace": {
"nameSelector": {
"matchNames": ["example-monitor-events"]
}
},
"fieldSelector": {
"matchExpressions": [
{
"field": "metadata.namespace",
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
-
Updated
Sep 14, 2020 - Python
What would you like to be added:
Currently, kubectl kudo version
only prints the current version of the KUDO CLI. It should also print the version of the KUDO controller if the con
-
Updated
May 28, 2021 - Go
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
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
-
Updated
Aug 26, 2021 - Go
-
Updated
Aug 28, 2021 - Go
Related question GoogleCloudPlatform/flink-on-k8s-operator#114
-
Updated
Aug 27, 2021 - Go
-
Updated
Oct 2, 2020 - Python
Currently, SchemaHero assumes that every Postgres table will be deployed to the public schema. It should be possible to specify the schema when defining a table
-
Updated
Apr 20, 2021 - Go
🚓 New Scanner implementation request
-
Updated
Aug 25, 2021 - Go
-
Updated
Jul 1, 2021 - Go
Add example manifests for different persistence options (EBS volume / SSD mount / RAM disk)
Currently the env variables injected are specific to this docker image https://github.com/barney-s/docker-airflow
Align it with https://github.com/puckel/docker-airflow and make necessary changes in the operator to make it work with both.
related to GoogleCloudPlatform/airflow-operator#10
-
Updated
Aug 27, 2021 - Go
This would allow in the use case where you may have more than 1 DNS server to query (for redundancy)
edgeDNSServer: &edgeDNSServer:
- 1.1.1.1
- 2.2.2.2
-
Updated
Jun 11, 2021 - Go
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
-
Updated
Aug 27, 2021 - Go
-
Updated
Dec 2, 2019 - Go
Improve this page
Add a description, image, and links to the kubernetes-operator topic page so that developers can more easily learn about it.
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."
Describe the Issue
Currently, in flyteadmin, We are using the kind cluster for running integration tests, In that case, we need to maintain kind.
What if we do not do this?
Need to maintain kind as dependency
Related component
flyteadmin