Ingress Kubernetes integration

Hi @Josh
Looks like URL rewrite is not working for us.
It only added value to request url, not changed the header
Config:
“path”: “/.*”,
_ “method”: “GET”,_
_ “match_pattern”: “/.*”,_
_ “rewrite_to”: “$tyk_context.headers_Host/$1”,_
_ “triggers”: [_
_ {_
_ “on”: “any”,_
_ “options”: {_
_ “header_matches”: {_
_ “Host”: {_
_ “match_rx”: “11.124.50.234:80”_
_ }_
_ },_
_ “query_val_matches”: {},_
_ “path_part_matches”: {},_
_ “session_meta_matches”: {},_
_ “payload_matches”: {_
_ “match_rx”: “”_
_ }_
_ },_
_ “rewrite_to”: “test2”_
_ }_
_ ],_
_ “MatchRegexp”: null_
_ }_

Response:
010.104.005.015.33892-010.104.005.082.00080: GET /$tyk_context.headers_Host/ HTTP/1.1
Host: 11.124.50.234:80

We also tried to use modify headers. Please see:

We have next config:
“extended_paths”: {
_ “transform_headers”: [_
_ {_
_ “delete_headers”: [_
_ “Cache-Control”,_
_ “Host”_
_ ],_
_ “add_headers”: {_
_ “Cache-Control”: “test”,_
_ “Host”: “test.sdw.ocs”_
_ },_
_ “path”: “/.*”,_
_ “method”: “GET”,_
_ “act_on”: false_
_ }_
_ ],_
which should replace above headers, Cache-Control was updated, however Host - no

Response:
010.104.005.015.35222-010.104.005.082.00080: GET / HTTP/1.1
Host: 11.124.50.234:80
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,/;q=0.8
Accept-Encoding: gzip, deflate
Accept-Language: en-US,en;q=0.9,ru;q=0.8,uk;q=0.7
Cache-Control: test
Remoteip: 193.109.118.86
Upgrade-Insecure-Requests: 1
X-Forwarded-For: 193.111.228.186, 130.114.128.44

What is more prefered way to changed the Host header?