-
Notifications
You must be signed in to change notification settings - Fork 522
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
IngressEnricher ignores IngressRules defined in XML config #231
Comments
rohanKanojia
added a commit
to rohanKanojia/jkube
that referenced
this issue
Dec 3, 2020
rohanKanojia
added a commit
to rohanKanojia/jkube
that referenced
this issue
Dec 7, 2020
12 tasks
rohanKanojia
added a commit
to rohanKanojia/jkube
that referenced
this issue
Dec 8, 2020
rohanKanojia
added a commit
to rohanKanojia/jkube
that referenced
this issue
Jan 4, 2021
rohanKanojia
added a commit
to rohanKanojia/jkube
that referenced
this issue
Jan 13, 2021
rohanKanojia
added a commit
to rohanKanojia/jkube
that referenced
this issue
Jan 21, 2021
manusa
pushed a commit
to rohanKanojia/jkube
that referenced
this issue
Jan 26, 2021
manusa
pushed a commit
that referenced
this issue
Jan 26, 2021
This was referenced Jan 26, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is this field mentioned in XML config:
https://github.com/eclipse/jkube/blob/65087cc54ac59f773b6b41314e9b27684f3db47f/jkube-kit/config/resource/src/main/java/org/eclipse/jkube/kit/config/resource/ResourceConfig.java#L82
@jwcarman noticed this issue. When you try to provide
IngressRules
inside XML config like this:No
IngressRule
seems to be present inside the createdIngress
resource duringk8s:resource
goal.Actual generated fragment:
Expected generated fragment:
The plugin should also check XML configuration for provided
Ingress
configuration. Right now we're just using Kubernetes Model'sIngressRule
object inside our XML configuration. We should probably have our ownIngressConfig
class to be used insideResourceConfig
so that we don't get affected by changes in Kubernetes model over time.The text was updated successfully, but these errors were encountered: