MarcCain-Scott commented on issue #2404:
URL:
https://github.com/apache/apisix-ingress-controller/issues/2404#issuecomment-3236209246
Nothing custom, it's actually quite simple. We use helm but in this case the
rendered chart looks like the following.
```
apiVersion: apisix.apache.org/v2
kind: ApisixPluginConfig
metadata:
name: azure-token-service-anon
labels:
environment: Test
app: azure-token-service
appVersion: 1.0.0
spec:
plugins:
- name: redirect
enable: true
config:
http_to_https: true
- name: proxy-rewrite
enable: true
config:
headers:
add:
X-Forwarded-Api-Route: azure-token-service-test
---
apiVersion: apisix.apache.org/v2
kind: ApisixRoute
metadata:
name: azure-token-service
labels:
environment: Test
app: azure-token-service
appVersion: 1.0.0
spec:
ingressClassName: apisix
http:
- name: azuretoken-service-get-anonymous
match:
hosts:
- some-dns.com
paths:
- /.well-known/jwks.json
- /.well-known/openid-configuration
methods:
- GET
upstreams:
- name: test-upstream
plugin_config_name: azure-token-service-anon
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]