Assigned
Status Update
Comments
kn...@google.com <kn...@google.com>
kn...@google.com <kn...@google.com> #2
Hello Punit,
As mentioned [1], this annotation is not supported by GCE ingress controller. However, for your use case you can use a Nginx Ingress Controller as explained in this blog [2]
[1]https://github.com/kubernetes/ingress-nginx/issues/1120
[2]http://rahmonov.me/posts/nginx-ingress-controller/
As mentioned [1], this annotation is not supported by GCE ingress controller. However, for your use case you can use a Nginx Ingress Controller as explained in this blog [2]
[1]
[2]
[Deleted User] <[Deleted User]> #3
The reason I used the GCE ingress controller was because I wanted to use the `ingress.gcp.kubernetes.io/pre-shared-cert : "readacted-cert"` annotation to be able to load the SSL certs from GCE automatically. The nginx controller does not support this annotation.
kn...@google.com <kn...@google.com> #4
Hello,
Thank you for your patience. We have shared this to our engineering and they are aware of this feature been requested by some of our users. Unfortunately I am not able to provide an E.T.A on the fix. Future update(s) regarding this will be posted here.
Thank you for your patience. We have shared this to our engineering and they are aware of this feature been requested by some of our users. Unfortunately I am not able to provide an E.T.A on the fix. Future update(s) regarding this will be posted here.
[Deleted User] <[Deleted User]> #5
Any updates on this?
[Deleted User] <[Deleted User]> #6
Is this dead? Would be really nice to have...
am...@gmail.com <am...@gmail.com> #7
any news? seems like trivial
[Deleted User] <[Deleted User]> #8
Is this now solved?
We are using ingress-gce and it's a must-have for us.
We are using ingress-gce and it's a must-have for us.
[Deleted User] <[Deleted User]> #9
Any news about this one?
[Deleted User] <[Deleted User]> #10
is there any workaround?
ua...@nuked.zone <ua...@nuked.zone> #11
There's no response from Google for more than a year on this, is there any way to get an update? If I have to fall back to nginx ingress controller, I'd rather use a cheaper alternative to GCP.
me...@googlemail.com <me...@googlemail.com> #12
WTF...
bi...@gmail.com <bi...@gmail.com> #13
we are waiting.
as...@gmail.com <as...@gmail.com> #14
when we can have this feature? Its almost 2 year
pi...@brandnooz.de <pi...@brandnooz.de> #15
So I can setup a redirect on the loadbalancer - but the gce ingress always overwrites that ... Any possibility to make the host redirect on the loadbalancer persistent with gce ingress?
[Deleted User] <[Deleted User]> #16
I'd love to have this!
ut...@ironmountain.com <ut...@ironmountain.com> #17
When can we get this feature?
ma...@gmail.com <ma...@gmail.com> #18
Is there any workaround for this?
ro...@datos-health.com <ro...@datos-health.com> #19
+1 here too
ra...@trueanthem.com <ra...@trueanthem.com> #20
+1
he...@gmail.com <he...@gmail.com> #21
+1
bh...@google.com <bh...@google.com> #22
+1
or...@applitools.com <or...@applitools.com> #23
We need that as well. is there a plan to support it in the future?
ro...@applitools.com <ro...@applitools.com> #24
+1
[Deleted User] <[Deleted User]> #25
+1
su...@bespinglobal.com <su...@bespinglobal.com> #26
+1
ju...@bespinglobal.com <ju...@bespinglobal.com> #27
+1
ko...@gmail.com <ko...@gmail.com> #28
Why am I still receiving these notifications and I clicked on unsubscribe 20 times already
ab...@chefbasil.fr <ab...@chefbasil.fr> #29
"So I can setup a redirect on the loadbalancer - but the gce ingress always overwrites that ... Any possibility to make the host redirect on the loadbalancer persistent with gce ingress?"
I confirm this, it's annoying to set the configuration for this every time I push a new deployment. Should be included in ingress configuration yaml.
Any news on that Google ?
I confirm this, it's annoying to set the configuration for this every time I push a new deployment. Should be included in ingress configuration yaml.
Any news on that Google ?
ma...@bell.ca <ma...@bell.ca> #30
+1
ka...@gmail.com <ka...@gmail.com> #31
+1
dm...@epam.com <dm...@epam.com> #32
+1
ka...@searce.com <ka...@searce.com> #33
+1
da...@gmail.com <da...@gmail.com> #34
+1
th...@gmail.com <th...@gmail.com> #35
+1
ni...@evonence.com <ni...@evonence.com> #36
what is the update on this Issue
[Deleted User] <[Deleted User]> #37
+1
gi...@gtempaccount.com <gi...@gtempaccount.com> #38
+1
h....@skilllab.io <h....@skilllab.io> #39
+1
se...@vodeno.com <se...@vodeno.com> #40
+1
s7...@gmail.com <s7...@gmail.com> #41
+1
ac...@gmail.com <ac...@gmail.com> #42
+1
du...@gmail.com <du...@gmail.com> #43
Any update on this matter?
hu...@gmail.com <hu...@gmail.com> #44
+1
ni...@oneplanetstudios.com <ni...@oneplanetstudios.com> #45
+1
mi...@gmail.com <mi...@gmail.com> #46
+1
mi...@gmail.com <mi...@gmail.com> #47
+1
ja...@unityai.co <ja...@unityai.co> #48
+1
ne...@coppel.com <ne...@coppel.com> #49
+1
mi...@doit.com <mi...@doit.com> #50
Hey all, you can use GKE Gateway API and HTTPRoute supports rewrites:
kind: Gateway
apiVersion: gateway.networking.k8s.io/v1beta1
metadata:
name: external-http
namespace: admin
spec:
gatewayClassName: gke-l7-global-external-managed
listeners:
- name: https
protocol: HTTPS
port: 443
tls:
mode: Terminate
options:
networking.gke.io/pre-shared-certs: www-example-com
allowedRoutes:
namespaces:
from: Selector
selector:
matchLabels:
shared-gateway-access: "true"
addresses:
- type: NamedAddress
value: my-static-ip
---
kind: HTTPRoute
apiVersion: gateway.networking.k8s.io/v1beta1
metadata:
name: my-website
namespace: website
labels:
gateway: external-http
spec:
parentRefs:
- name: external-http
namespace: admin
hostnames:
- "www.example.com"
rules:
- matches:
- path:
value: /foo
filters:
- type: URLRewrite
urlRewrite:
path:
type: ReplacePrefixMatch
replacePrefixMatch: /
backendRefs:
- name: website
port: 80
rx...@almanak.co <rx...@almanak.co> #51
+1
sp...@idldap.net <sp...@idldap.net> #52
+1
se...@alto.id <se...@alto.id> #53
Comment has been deleted.
ka...@tangerine.co.th <ka...@tangerine.co.th> #54
+1
Description