-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat:support set RecursionAvailable options (#66)
* mod:update go.mod file * fix:修复mesh模式服务名错误匹配问题 * fix:修复mesh模式服务名错误匹配问题 * fix:search name需要递归处理
- Loading branch information
1 parent
441d806
commit 9bb8f49
Showing
7 changed files
with
70 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: polaris-sidecar-config | ||
data: | ||
polaris-sidecar.yaml: |- | ||
bind: 0.0.0.0 | ||
port: 53 | ||
namespace: default | ||
recurse: | ||
enable: false | ||
timeoutSec: 1 | ||
mtls: | ||
enable: false | ||
logger: | ||
output_paths: | ||
- stdout | ||
error_output_paths: | ||
- stderr | ||
rotate_output_path: logs/polaris-sidecar.log | ||
error_rotate_output_path: logs/polaris-sidecar-error.log | ||
rotation_max_size: 100 | ||
rotation_max_backups: 10 | ||
rotation_max_age: 7 | ||
output_level: info | ||
resolvers: | ||
- name: dnsagent | ||
dns_ttl: 10 | ||
enable: true | ||
suffix: "." | ||
# option: | ||
# route_labels: "key:value,key:value" | ||
- name: meshproxy | ||
dns_ttl: 120 | ||
enable: false | ||
option: | ||
reload_interval_sec: 30 | ||
dns_answer_ip: 10.4.4.4 | ||
recursion_available: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters