-
Notifications
You must be signed in to change notification settings - Fork 7.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
operator: move proto from api to this repo #52472
Merged
Merged
+9,253
−1,737
Conversation
This file contains 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
howardjohn
added a commit
to howardjohn/api
that referenced
this pull request
Aug 1, 2024
This is no longer an Istio CRD, just an internal YAML API to istioctl, so move it under the Istio repo (istio/istio#52472)
b328b66
to
34041ad
Compare
/retest |
zirain
approved these changes
Aug 2, 2024
hanxiaop
approved these changes
Aug 2, 2024
dhawton
approved these changes
Aug 2, 2024
This gives us more flexibility to do things like make "breaking" changes to the proto (but not the user facing API - yaml), and signals that the API is not a traditional supported protobuf API. This also makes usage in our repo more ergonomic. Pre-req for istio#52469
34041ad
to
ace0126
Compare
istio-testing
pushed a commit
to istio/api
that referenced
this pull request
Aug 9, 2024
This is no longer an Istio CRD, just an internal YAML API to istioctl, so move it under the Istio repo (istio/istio#52472)
11 tasks
luksa
pushed a commit
to luksa/istio
that referenced
this pull request
Oct 14, 2024
* upstream/master: (67 commits) Add release notes for dual-stack support promotion (istio#52524) Automator: update proxy@master in istio/istio@master (istio#52515) add name (istio#52501) Allow setting resources to null in gateway chart (istio#52514) Fix replacements errors in helm charts and templates (istio#52459) hand written IstioEndpoint deepcopy (istio#52485) operator: remove `profile` commands (istio#52468) Automator: update proxy@master in istio/istio@master (istio#52506) Automator: update proxy@master in istio/istio@master (istio#52505) Automator: update proxy@master in istio/istio@master (istio#52504) Automator: update ztunnel@master in istio/istio@master (istio#52502) Fix typo of InsertDataToConfigMap func description (istio#52491) Fix stale GVK in benchmark test (istio#52482) Bug/stale cert expiration logs (istio#52466) Automator: update ztunnel@master in istio/istio@master (istio#52496) Automator: update proxy@master in istio/istio@master (istio#52495) operator: move proto from api to this repo (istio#52472) remove unneeded func isAllowedKubernetesAudience (istio#52489) operator: misc code cleanup (istio#52467) ambient: do not allow service waypoint to have a waypoint (istio#52480) ...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
release-notes-none
Indicates a PR that does not require release notes.
size/XXL
Denotes a PR that changes 1000+ lines, ignoring generated files.
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.
This gives us more flexibility to do things like make "breaking" changes
to the proto (but not the user facing API - yaml), and signals that the
API is not a traditional supported protobuf API. This also makes usage
in our repo more ergonomic.
Pre-req for #52469