This repository was archived by the owner on Jun 11, 2025. It is now read-only.
Fix/operators crashing repeatedly#28
Merged
nxtcoder17 merged 3 commits intoSep 16, 2023
Merged
Conversation
- trying to move templates closer to where they are being used, nearby the controllers, that are making use of it - kubectl.YAMLClient is now an interface, instead of a struct. Most of their encountered usages have been updated
abdheshnayak
pushed a commit
that referenced
this pull request
Nov 5, 2024
* WIP: cleanup, and migration to controller-runtime 0.15.x
* fix: k8s packages pinned to 0.26.0
- migrated back to controller-runtime@0.14.1
NOTE: version 0.15.0 had some serious problems like:
+ cache size would become too big, that the pod would crash
+ sometimes, when controller talks to `https://10.43.0.1:443` `the kubernetes service`, it would end up in x509 cert signed by unknown authority
- trying to move templates closer to where they are being used, nearby
the controllers, that are making use of it
- kubectl.YAMLClient is now an interface, instead of a struct. Most of
their encountered usages have been updated
* chore: trying to setup validation webhooks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
migrated back to controller-runtime@0.14.1 as version
0.15.0had some serious issues like:+ cache size would become too big, that the pod would crash
+ sometimes, when controller talks to
https://10.43.0.1:443the kubernetes service, it would end up in x509 cert signed by unknown authority