Skip to content

Commit 6eb723a

Browse files
committed
Fix SSH key input
1 parent b831ab1 commit 6eb723a

File tree

3 files changed

+27
-6
lines changed

3 files changed

+27
-6
lines changed

articles/operator-nexus/howto-kubernetes-cluster-dual-stack.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,15 @@ This parameter file is intended to be used with the [QuickStart guide](./quickst
9696
"location": {
9797
"value": "eastus"
9898
},
99-
"sshPublicKey": {
100-
"value": "ssh-rsa AAAAB...."
99+
"sshPublicKeys": {
100+
"value": [
101+
{
102+
"keyData": "ssh-rsa AAAAB..."
103+
},
104+
{
105+
"keyData": "ssh-rsa AAAAC..."
106+
}
107+
]
101108
},
102109
"podCidrs": {
103110
"value": ["10.244.0.0/16", "fd12:3456:789a::/64"]

articles/operator-nexus/howto-kubernetes-cluster-huge-pages.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,15 @@ Refer to the Nexus Kubernetes cluster [quickStart guide](./quickstarts-kubernete
6767
"location": {
6868
"value": "eastus"
6969
},
70-
"sshPublicKey": {
71-
"value": "ssh-rsa AAAAB...."
70+
"sshPublicKeys": {
71+
"value": [
72+
{
73+
"keyData": "ssh-rsa AAAAB..."
74+
},
75+
{
76+
"keyData": "ssh-rsa AAAAC..."
77+
}
78+
]
7279
},
7380
"initialPoolAgentOptions": {
7481
"value": {"hugepagesCount": 512,"hugepagesSize": "2M"}

articles/operator-nexus/howto-kubernetes-service-load-balancer.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,15 @@ This parameter file is intended to be used with the [quickStart guide](./quickst
105105
"location": {
106106
"value": "eastus"
107107
},
108-
"sshPublicKey": {
109-
"value": "ssh-rsa AAAAB...."
108+
"sshPublicKeys": {
109+
"value": [
110+
{
111+
"keyData": "ssh-rsa AAAAB..."
112+
},
113+
{
114+
"keyData": "ssh-rsa AAAAC..."
115+
}
116+
]
110117
},
111118
"ipAddressPools": {
112119
"value": [

0 commit comments

Comments
 (0)