Kong gateway does not cares about strip-path annotation

On GKE I run a Kong gateway on K8S .I send request to my path …/goal/admin/weather/hello ,
But target upstream service ( weather-hello) always receives request with full path /goal/admin/weather/hello . which means strip-path:true not working. Any helps?
Thanks.

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: apibase-lima-mydomainturkey
annotations:
konghq.com/strip-path: ‘true’
kubernetes.io/ingress.class: kong
kubernetes.io/tls-acme: “true”
konghq.com/preserve-host: “true”
spec:
rules:
- http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: lima-api
port:
number: 80
- path: /smp/pt
pathType: Prefix
backend:
service:
name: sample-service3
port:
number: 80
- path: /goal/admin/weather
pathType: Prefix
backend:
service:
name: weather-hello
port:
number: 50601
- path: /goal/admin/weather2
pathType: Prefix
backend:
service:
name: weather-hello
port:
number: 50601
host: api.mydomain.com.tr
tls:
- secretName: mydomain-secret-name
hosts:
- api.mydomain.com.tr