| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- ---
- apiVersion: traefik.containo.us/v1alpha1
- kind: IngressRoute
- metadata:
- name: https-auction-auc
- namespace: default
- spec:
- entryPoints:
- - websecure
- routes:
- - kind: Rule
- match: Host(`auction-dev.hobbystocks.cn`) && PathPrefix(`/auc/admin`)
- middlewares:
- - name: auction-app-strip
- - name: jwt-token-validation
- services:
- - name: auction-auc
- port: 80
- - kind: Rule
- match: Host(`auction-dev.hobbystocks.cn`) && PathPrefix(`/auc`)
- middlewares:
- - name: auction-app-strip
- services:
- - name: auction-auc
- port: 80
- tls:
- secretName: auction-dev.hobbystocks.cn
- ---
- apiVersion: traefik.containo.us/v1alpha1
- kind: IngressRoute
- metadata:
- name: https-auction-bid
- namespace: default
- spec:
- entryPoints:
- - websecure
- routes:
- - kind: Rule
- match: Host(`auction-dev.hobbystocks.cn`) && PathPrefix(`/bid/admin`)
- middlewares:
- - name: auction-app-strip
- - name: jwt-token-validation
- services:
- - name: auction-bid
- port: 80
- - kind: Rule
- match: Host(`auction-dev.hobbystocks.cn`) && Path(`/bid/pub/myList`,`/bid/pub/add`, `/bid/pub/mine`, `/bid/pub/myLots`, `/bid/pub/testUser`)
- middlewares:
- - name: auction-app-strip
- - name: jwt-token-validation
- services:
- - name: auction-bid
- port: 80
- - kind: Rule
- match: Host(`auction-dev.hobbystocks.cn`) && PathPrefix(`/bid`)
- middlewares:
- - name: auction-app-strip
- services:
- - name: auction-bid
- port: 80
- tls:
- secretName: auction-dev.hobbystocks.cn
- ---
- apiVersion: traefik.containo.us/v1alpha1
- kind: IngressRoute
- metadata:
- name: https-auction-deposit
- namespace: default
- spec:
- entryPoints:
- - websecure
- routes:
- - kind: Rule
- match: Host(`auction-dev.hobbystocks.cn`) && PathPrefix(`/deposit/admin`,`/deposit/pub`)
- middlewares:
- - name: auction-app-strip
- - name: jwt-token-validation
- services:
- - name: auction-deposit
- port: 80
- - kind: Rule
- match: Host(`auction-dev.hobbystocks.cn`) && PathPrefix(`/deposit`)
- middlewares:
- - name: auction-app-strip
- services:
- - name: auction-deposit
- port: 80
- tls:
- secretName: auction-dev.hobbystocks.cn
- ---
- apiVersion: traefik.containo.us/v1alpha1
- kind: IngressRoute
- metadata:
- name: https-auction-pub
- namespace: default
- spec:
- entryPoints:
- - websecure
- routes:
- - kind: Rule
- match: Host(`auction-dev.hobbystocks.cn`) && PathPrefix(`/pub/admin`)
- middlewares:
- - name: auction-app-strip
- - name: jwt-token-validation
- services:
- - name: auction-pub
- port: 80
- - kind: Rule
- match: Host(`auction-dev.hobbystocks.cn`) && PathPrefix(`/pub`)
- middlewares:
- - name: auction-app-strip
- services:
- - name: auction-pub
- port: 80
- tls:
- secretName: auction-dev.hobbystocks.cn
- ---
- apiVersion: traefik.containo.us/v1alpha1
- kind: IngressRoute
- metadata:
- name: https-auction-order
- namespace: default
- spec:
- entryPoints:
- - websecure
- routes:
- - kind: Rule
- match: Host(`auction-dev.hobbystocks.cn`) && PathPrefix(`/order/admin`,`/order/pub`)
- middlewares:
- - name: auction-app-strip
- - name: jwt-token-validation
- services:
- - name: auction-order
- port: 80
- - kind: Rule
- match: Host(`auction-dev.hobbystocks.cn`) && PathPrefix(`/order`)
- middlewares:
- - name: auction-app-strip
- services:
- - name: auction-order
- port: 80
- tls:
- secretName: auction-dev.hobbystocks.cn
- ---
- apiVersion: traefik.containo.us/v1alpha1
- kind: IngressRoute
- metadata:
- name: https-auction-pay
- namespace: default
- spec:
- entryPoints:
- - websecure
- routes:
- - kind: Rule
- match: Host(`auction-dev.hobbystocks.cn`) && PathPrefix(`/pay/admin`)
- middlewares:
- - name: auction-app-strip
- - name: jwt-token-validation
- services:
- - name: auction-pay
- port: 80
- - kind: Rule
- match: Host(`auction-dev.hobbystocks.cn`) && PathPrefix(`/pay`)
- middlewares:
- - name: auction-app-strip
- services:
- - name: auction-pay
- port: 80
- tls:
- secretName: auction-dev.hobbystocks.cn
|