-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Vault 1.8.0 - Consul 1.10.1 - Update documentation
- Loading branch information
1 parent
17b6de4
commit 94b7830
Showing
13 changed files
with
179 additions
and
51 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
## 3.8.0 | ||
|
||
- Vault 1.8.0 | ||
- Consul 1.10.1 | ||
- Update documentation | ||
|
||
## 3.7.5 | ||
|
||
- Vault v1.7.3 | ||
|
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,32 @@ | ||
# Vault OSS v1.7.0 | ||
|
||
# ----------------------------------------------------------------------- | ||
# Global configuration | ||
# ----------------------------------------------------------------------- | ||
|
||
api_addr = "${api_addr}" | ||
cluster_name = "${cluster_name}" | ||
cluster_address = "${cluster_address}" | ||
disable_mlock = "${disable_mlock}" | ||
log_level = "${log_level}" | ||
ui = true | ||
plugin_directory = "/vault/plugins" | ||
|
||
# ----------------------------------------------------------------------- | ||
# Listener configuration | ||
# ----------------------------------------------------------------------- | ||
|
||
listener "tcp" { | ||
address = "${address}" | ||
tls_cert_file = "/etc/ssl/certs/vault-server.crt" | ||
tls_key_file = "/etc/ssl/vault-server.key" | ||
} | ||
|
||
# ----------------------------------------------------------------------- | ||
# Enable Prometheus metrics by default | ||
# ----------------------------------------------------------------------- | ||
|
||
telemetry { | ||
prometheus_retention_time = "30s" | ||
disable_hostname = false | ||
} |
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
15 changes: 15 additions & 0 deletions
15
red_lion/templates/oss/consul_oss_client_config_1.10.0.hcl
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,15 @@ | ||
{ | ||
"node_id": "${agent_node_id}", | ||
"raft_protocol": 3, | ||
"acl_datacenter": "arus", | ||
"acl_master_token": "b4c0ffee-3b77-04af-36d6-738b697872e6", | ||
"acl_default_policy": "allow", | ||
"acl_down_policy": "allow", | ||
"cert_file": "/etc/ssl/certs/consul-client.crt", | ||
"key_file": "/etc/ssl/consul-client.key", | ||
"ca_file": "/etc/ssl/certs/ca.pem", | ||
"ports": { | ||
"http": -1, | ||
"https": 8500 | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
red_lion/templates/oss/consul_oss_client_config_1.10.1.hcl
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,15 @@ | ||
{ | ||
"node_id": "${agent_node_id}", | ||
"raft_protocol": 3, | ||
"acl_datacenter": "arus", | ||
"acl_master_token": "b4c0ffee-3b77-04af-36d6-738b697872e6", | ||
"acl_default_policy": "allow", | ||
"acl_down_policy": "allow", | ||
"cert_file": "/etc/ssl/certs/consul-client.crt", | ||
"key_file": "/etc/ssl/consul-client.key", | ||
"ca_file": "/etc/ssl/certs/ca.pem", | ||
"ports": { | ||
"http": -1, | ||
"https": 8500 | ||
} | ||
} |
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,15 @@ | ||
{ | ||
"node_id": "${agent_node_id}", | ||
"raft_protocol": 3, | ||
"acl_datacenter": "arus", | ||
"acl_master_token": "b4c0ffee-3b77-04af-36d6-738b697872e6", | ||
"acl_default_policy": "allow", | ||
"acl_down_policy": "allow", | ||
"cert_file": "/etc/ssl/certs/consul-client.crt", | ||
"key_file": "/etc/ssl/consul-client.key", | ||
"ca_file": "/etc/ssl/certs/ca.pem", | ||
"ports": { | ||
"http": -1, | ||
"https": 8500 | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
red_lion/templates/oss/consul_oss_server_config_1.10.0.hcl
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,22 @@ | ||
{ | ||
"bootstrap_expect": 3, | ||
"datacenter": "${datacenter}", | ||
"data_dir": "${data_dir}", | ||
"raft_protocol": 3, | ||
"acl_datacenter": "arus", | ||
"acl_master_token": "b4c0ffee-3b77-04af-36d6-738b697872e6", | ||
"acl_default_policy": "allow", | ||
"acl_down_policy": "allow", | ||
"recursors": [ | ||
"${recursor1}", | ||
"${recursor2}" | ||
], | ||
"cert_file": "/etc/ssl/certs/consul-server.crt", | ||
"key_file": "/etc/ssl/consul-server.key", | ||
"ca_file": "/etc/ssl/certs/ca.pem", | ||
"ports": { | ||
"http": -1, | ||
"https": 8500 | ||
}, | ||
"ui": true | ||
} |
22 changes: 22 additions & 0 deletions
22
red_lion/templates/oss/consul_oss_server_config_1.10.1.hcl
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,22 @@ | ||
{ | ||
"bootstrap_expect": 3, | ||
"datacenter": "${datacenter}", | ||
"data_dir": "${data_dir}", | ||
"raft_protocol": 3, | ||
"acl_datacenter": "arus", | ||
"acl_master_token": "b4c0ffee-3b77-04af-36d6-738b697872e6", | ||
"acl_default_policy": "allow", | ||
"acl_down_policy": "allow", | ||
"recursors": [ | ||
"${recursor1}", | ||
"${recursor2}" | ||
], | ||
"cert_file": "/etc/ssl/certs/consul-server.crt", | ||
"key_file": "/etc/ssl/consul-server.key", | ||
"ca_file": "/etc/ssl/certs/ca.pem", | ||
"ports": { | ||
"http": -1, | ||
"https": 8500 | ||
}, | ||
"ui": 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"bootstrap_expect": 3, | ||
"datacenter": "${datacenter}", | ||
"data_dir": "${data_dir}", | ||
"raft_protocol": 3, | ||
"acl_datacenter": "arus", | ||
"acl_master_token": "b4c0ffee-3b77-04af-36d6-738b697872e6", | ||
"acl_default_policy": "allow", | ||
"acl_down_policy": "allow", | ||
"recursors": [ | ||
"${recursor1}", | ||
"${recursor2}" | ||
], | ||
"cert_file": "/etc/ssl/certs/consul-server.crt", | ||
"key_file": "/etc/ssl/consul-server.key", | ||
"ca_file": "/etc/ssl/certs/ca.pem", | ||
"ports": { | ||
"http": -1, | ||
"https": 8500 | ||
}, | ||
"ui": 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.7.5 | ||
3.8.0 |