-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
d66520d
commit 39752b8
Showing
15 changed files
with
141 additions
and
37 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
```release-note:change | ||
core/namespace (enterprise): Introduce the concept of high-privilege namespace (administrative namespace), | ||
which will have access to some system backend paths that were previously only accessible in the root namespace. | ||
``` |
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
19 changes: 19 additions & 0 deletions
19
command/server/test-fixtures/config_with_valid_admin_ns.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,19 @@ | ||
# Copyright (c) HashiCorp, Inc. | ||
# SPDX-License-Identifier: MPL-2.0 | ||
|
||
storage "raft" { | ||
path = "/path/to/raft" | ||
node_id = "raft_node_1" | ||
} | ||
listener "tcp" { | ||
address = "127.0.0.1:8200" | ||
tls_cert_file = "/path/to/cert.pem" | ||
tls_key_file = "/path/to/key.key" | ||
} | ||
seal "awskms" { | ||
kms_key_id = "alias/kms-unseal-key" | ||
} | ||
service_registration "consul" { | ||
address = "127.0.0.1:8500" | ||
} | ||
administrative_namespace_path = "admin/" |
28 changes: 28 additions & 0 deletions
28
command/server/test-fixtures/config_with_valid_admin_ns.json
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,28 @@ | ||
{ | ||
"listener": { | ||
"tcp": { | ||
"address": "0.0.0.0:8200", | ||
"tls_cert_file": "/path/to/cert.pem", | ||
"tls_key_file": "/path/to/key.key" | ||
} | ||
}, | ||
"seal": { | ||
"awskms": { | ||
"kms_key_id": "alias/kms-unseal-key" | ||
} | ||
}, | ||
"storage": { | ||
"raft": { | ||
"path": "/path/to/raft", | ||
"node_id": "raft_node_1" | ||
} | ||
}, | ||
"cluster_addr": "http://127.0.0.1:8201", | ||
"api_addr": "http://127.0.0.1:8200", | ||
"service_registration": { | ||
"consul": { | ||
"address": "127.0.0.1:8500" | ||
} | ||
}, | ||
"administrative_namespace_path": "admin/" | ||
} |
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
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