我在 aks 上有一个 nginx 入口控制器,我使用官方指南配置了它。我还想配置 nginx 以允许标头中使用下划线,所以我写下了以下配置映射
apiVersion: v1
kind: ConfigMap
data:
enable-underscores-in-headers: "true"
metadata:
name: nginx-configuration
Run Code Online (Sandbox Code Playgroud)
请注意,我使用 nginx 的默认命名空间。然而应用配置映射似乎没有发生任何事情。我没有看到任何事件。我在这里做错了什么?
Name: nginx-configuration
Namespace: default
Labels: <none>
Annotations: kubectl.kubernetes.io/last-applied-configuration:
{"apiVersion":"v1","data":{"enable-underscores-in-headers":"true"},"kind":"ConfigMap","metadata":{"annotations":{},"name":"nginx-configura...
Data
====
enable-underscores-in-headers:
----
true
Events: <none>
Run Code Online (Sandbox Code Playgroud)