Skip to content

Commit 379ab73

Browse files
authored
replace link to config-default.yaml (#903)
1 parent ef84543 commit 379ab73

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

charts/apisix/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The command removes all the Kubernetes components associated with the chart and
7070
| apisix.deployment.role | string | `"traditional"` | Deployment role Optional: traditional, data_plane, control_plane ref: https://apisix.apache.org/docs/apisix/deployment-modes/ |
7171
| apisix.deployment.role_traditional.config_provider | string | `"etcd"` | |
7272
| apisix.discovery.enabled | bool | `false` | Enable or disable Apache APISIX integration service discovery |
73-
| apisix.discovery.registry | object | `{}` | Registry is the same to the one in APISIX [config-default.yaml](https://github.com/apache/apisix/blob/master/conf/config-default.yaml#L281), and refer to such file for more setting details. also refer to [this documentation for integration service discovery](https://apisix.apache.org/docs/apisix/discovery) |
73+
| apisix.discovery.registry | object | `{}` | Service discovery registry. Refer to [configuration under discovery](https://github.com/apache/apisix/blob/master/conf/config.yaml.example#L307) for example. Also see [example of using external service discovery](https://apisix.apache.org/docs/ingress-controller/1.8.0/tutorials/external-service-discovery/). |
7474
| apisix.dns.resolvers[0] | string | `"127.0.0.1"` | |
7575
| apisix.dns.resolvers[1] | string | `"172.20.0.10"` | |
7676
| apisix.dns.resolvers[2] | string | `"114.114.114.114"` | |
@@ -108,8 +108,8 @@ The command removes all the Kubernetes components associated with the chart and
108108
| apisix.nginx.workerConnections | string | `"10620"` | |
109109
| apisix.nginx.workerProcesses | string | `"auto"` | |
110110
| apisix.nginx.workerRlimitNofile | string | `"20480"` | |
111-
| apisix.pluginAttrs | object | `{}` | Set APISIX plugin attributes, see [config-default.yaml](https://github.com/apache/apisix/blob/master/conf/config-default.yaml#L376) for more details |
112-
| apisix.plugins | list | `[]` | Customize the list of APISIX plugins to enable. By default, APISIX's default plugins are automatically used. See [config-default.yaml](https://github.com/apache/apisix/blob/master/conf/config-default.yaml) |
111+
| apisix.pluginAttrs | object | `{}` | Set APISIX plugin attributes. By default, APISIX's [plugin_attr](https://github.com/apache/apisix/blob/master/apisix/cli/config.lua#L295) are automatically used. See [configuration example](https://github.com/apache/apisix/blob/master/conf/config.yaml.example#L591). |
112+
| apisix.plugins | list | `[]` | Customize the list of APISIX plugins to enable. By default, APISIX's [default plugins](https://github.com/apache/apisix/blob/master/apisix/cli/config.lua#L196) are automatically used. |
113113
| apisix.prometheus.containerPort | int | `9091` | container port where the metrics are exposed |
114114
| apisix.prometheus.enabled | bool | `false` | |
115115
| apisix.prometheus.metricPrefix | string | `"apisix_"` | prefix of the metrics |
@@ -127,7 +127,7 @@ The command removes all the Kubernetes components associated with the chart and
127127
| apisix.ssl.sslProtocols | string | `"TLSv1.2 TLSv1.3"` | TLS protocols allowed to use. |
128128
| apisix.status.ip | string | `"0.0.0.0"` | |
129129
| apisix.status.port | int | `7085` | |
130-
| apisix.stream_plugins | list | `[]` | Customize the list of APISIX stream_plugins to enable. By default, APISIX's default stream_plugins are automatically used. See [config-default.yaml](https://github.com/apache/apisix/blob/master/conf/config-default.yaml) |
130+
| apisix.stream_plugins | list | `[]` | Customize the list of APISIX stream_plugins to enable. By default, APISIX's [default stream_plugins](https://github.com/apache/apisix/blob/master/apisix/cli/config.lua#L294) are automatically used. |
131131
| apisix.vault.enabled | bool | `false` | Enable or disable the vault integration |
132132
| apisix.vault.host | string | `""` | The host address where the vault server is running. |
133133
| apisix.vault.prefix | string | `""` | Prefix allows you to better enforcement of policies. |

charts/apisix/values.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -464,8 +464,8 @@ apisix:
464464
discovery:
465465
# -- Enable or disable Apache APISIX integration service discovery
466466
enabled: false
467-
# -- Registry is the same to the one in APISIX [config-default.yaml](https://github.com/apache/apisix/blob/master/conf/config-default.yaml#L281),
468-
# and refer to such file for more setting details. also refer to [this documentation for integration service discovery](https://apisix.apache.org/docs/apisix/discovery)
467+
# -- Service discovery registry. Refer to [configuration under discovery](https://github.com/apache/apisix/blob/master/conf/config.yaml.example#L307) for example.
468+
# Also see [example of using external service discovery](https://apisix.apache.org/docs/ingress-controller/1.8.0/tutorials/external-service-discovery/).
469469
registry: {}
470470
# Integration service discovery registry. E.g eureka\dns\nacos\consul_kv
471471
# reference:
@@ -539,12 +539,13 @@ apisix:
539539
# -- container port where the metrics are exposed
540540
containerPort: 9091
541541

542-
# -- Customize the list of APISIX plugins to enable. By default, APISIX's default plugins are automatically used. See [config-default.yaml](https://github.com/apache/apisix/blob/master/conf/config-default.yaml)
542+
# -- Customize the list of APISIX plugins to enable. By default, APISIX's [default plugins](https://github.com/apache/apisix/blob/master/apisix/cli/config.lua#L196) are automatically used.
543543
plugins: []
544-
# -- Customize the list of APISIX stream_plugins to enable. By default, APISIX's default stream_plugins are automatically used. See [config-default.yaml](https://github.com/apache/apisix/blob/master/conf/config-default.yaml)
544+
# -- Customize the list of APISIX stream_plugins to enable. By default, APISIX's [default stream_plugins](https://github.com/apache/apisix/blob/master/apisix/cli/config.lua#L294) are automatically used.
545545
stream_plugins: []
546546

547-
# -- Set APISIX plugin attributes, see [config-default.yaml](https://github.com/apache/apisix/blob/master/conf/config-default.yaml#L376) for more details
547+
# -- Set APISIX plugin attributes. By default, APISIX's [plugin_attr](https://github.com/apache/apisix/blob/master/apisix/cli/config.lua#L295) are automatically used.
548+
# See [configuration example](https://github.com/apache/apisix/blob/master/conf/config.yaml.example#L591).
548549
pluginAttrs: {}
549550

550551
extPlugin:

0 commit comments

Comments
 (0)