You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expected: pulumi-kubernetes package creates Ingress resource with apiVersion: networking.k8s.io/v1
Actual: Ingress resource was created with apiVersion: extensions/v1beta1 which is deprecated.
The text was updated successfully, but these errors were encountered:
@shinebayar-g FYI, kubectl will return the apiVersion of the resource that you request, regardless of which version was used to create the resource. (It automatically converts between versions on the server). If you look at the resource in the Pulumi state, you can see which version it was created with in the __initialApiVersion field of the resource outputs.
Steps to reproduce
Expected: pulumi-kubernetes package creates
Ingress
resource withapiVersion: networking.k8s.io/v1
Actual:
Ingress
resource was created withapiVersion: extensions/v1beta1
which is deprecated.The text was updated successfully, but these errors were encountered: