-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: tools-2616 tools-2648 support server 6.4 configs (#15)
* feat: tools-2616 support server 6.4 configs * ci: add allowed error to server64 test * ci: use docker CLI to get logs * ci: don't hide feature key version errors * fix: tools-2648 parse sindex-type from asconf * ci: test colon delimited secrets-address-port
- Loading branch information
1 parent
8f006d2
commit d1690a8
Showing
9 changed files
with
145 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
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 @@ | ||
[{"Source":"testdata/cases/server64/server64.conf","Destination":"testdata/cases/server64/server64-res-.yaml","Expected":"testdata/cases/server64/server64.yaml","Arguments":["convert","--aerospike-version","6.4.0.1","--format","asconfig","--output","testdata/cases/server64/server64-res-.yaml"],"SkipServerTest":false,"ServerErrorAllowList":["each of: /proc/sys/vm/dirty_bytes"]}] |
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,65 @@ | ||
|
||
service { | ||
user root | ||
group root | ||
pidfile /dummy/file/path1 | ||
proto-fd-max 15000 | ||
|
||
secrets-address-port test_dns_name 4000 127.0.0.1 | ||
secrets-tls-context tlscontext | ||
secrets-uds-path /test/path/socket | ||
} | ||
|
||
logging { | ||
|
||
file /dummy/file/path2 { | ||
context any info | ||
} | ||
} | ||
|
||
network { | ||
service { | ||
address any | ||
port 3000 | ||
} | ||
|
||
heartbeat { | ||
mode multicast | ||
multicast-group 127.0.0.1 | ||
port 9918 | ||
|
||
|
||
|
||
|
||
interval 150 | ||
timeout 10 | ||
} | ||
|
||
fabric { | ||
port 3001 | ||
} | ||
|
||
info { | ||
port 3003 | ||
} | ||
} | ||
|
||
namespace ns1 { | ||
replication-factor 2 | ||
memory-size 4G | ||
|
||
index-type flash { | ||
mount /dummy/mount/point1 /test/mount2 | ||
mounts-high-water-pct 30 | ||
mounts-size-limit 10G | ||
} | ||
|
||
sindex-type flash { | ||
mount /dummy/mount/point3 | ||
mounts-high-water-pct 60 | ||
mounts-size-limit 20000M | ||
} | ||
|
||
storage-engine memory | ||
} | ||
|
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,45 @@ | ||
logging: | ||
- any: info | ||
name: /dummy/file/path2 | ||
namespaces: | ||
- index-type: | ||
mounts: | ||
- /dummy/mount/point1 /test/mount2 | ||
mounts-high-water-pct: 30 | ||
mounts-size-limit: 10737418240 | ||
type: flash | ||
memory-size: 4294967296 | ||
name: ns1 | ||
replication-factor: 2 | ||
sindex-type: | ||
mounts: | ||
- /dummy/mount/point3 | ||
mounts-high-water-pct: 60 | ||
mounts-size-limit: 20971520000 | ||
type: flash | ||
storage-engine: | ||
type: memory | ||
network: | ||
fabric: | ||
port: 3001 | ||
heartbeat: | ||
interval: 150 | ||
mode: multicast | ||
multicast-groups: | ||
- 127.0.0.1 | ||
port: 9918 | ||
timeout: 10 | ||
info: | ||
port: 3003 | ||
service: | ||
addresses: | ||
- any | ||
port: 3000 | ||
service: | ||
group: root | ||
pidfile: /dummy/file/path1 | ||
proto-fd-max: 15000 | ||
secrets-address-port: test_dns_name:4000:127.0.0.1 | ||
secrets-tls-context: tlscontext | ||
secrets-uds-path: /test/path/socket | ||
user: root |
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 @@ | ||
{"TestedVersion":"6.4.0.1","OriginallyUsedVersion":"6.4.0.1"} |
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 @@ | ||
[{"Source":"testdata/cases/server64/server64.yaml","Destination":"testdata/cases/server64/server64-res-.conf","Expected":"testdata/cases/server64/server64.conf","Arguments":["convert","--aerospike-version","6.4.0.1","--format","yaml","--output","testdata/cases/server64/server64-res-.conf"],"SkipServerTest":false,"ServerErrorAllowList":["each of: /proc/sys/vm/dirty_bytes"]}] |