I need each of my users to access the service at a special URL, for example. abccompany.mycloudapp.com, each service is a kubernet service. I look at the input controllers, but I need a way to use the host wildcard field and somehow read the value in the path: and service: fields; here is a sample input controller of what i mean:
apiVersion: extensions/v1beta1 kind: Ingress metadata: name: test spec: rules: - host: *.bar.com http: paths: - path: /{{ value of * in * .bar.com }} backend: serviceName: {{value of * in *.bar.com }}Svc servicePort: 80
nginx kubernetes
Jonathan
source share