Skip to content

Commit

Permalink
Vpn support (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
majst01 authored Oct 25, 2022
1 parent f708412 commit d53d081
Show file tree
Hide file tree
Showing 4 changed files with 177 additions and 2 deletions.
17 changes: 17 additions & 0 deletions api/models/models_v1_machine_v_p_n.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 48 additions & 0 deletions api/models/v1_cluster_credentials_response.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

88 changes: 88 additions & 0 deletions api/models/v1_v_p_n.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 24 additions & 2 deletions cloud-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -784,11 +784,15 @@
},
"auth_key": {
"type": "string"
},
"connected": {
"type": "boolean"
}
},
"required": [
"address",
"auth_key"
"auth_key",
"connected"
]
},
"models.V1PartitionBootConfiguration": {
Expand Down Expand Up @@ -1132,11 +1136,15 @@
},
"SSHKeyPair": {
"$ref": "#/definitions/v1.SSHKeyPair"
},
"VPN": {
"$ref": "#/definitions/v1.VPN"
}
},
"required": [
"Kubeconfig",
"SSHKeyPair"
"SSHKeyPair",
"VPN"
]
},
"v1.ClusterFeatures": {
Expand Down Expand Up @@ -4371,6 +4379,20 @@
}
}
},
"v1.VPN": {
"properties": {
"Address": {
"type": "string"
},
"AuthKey": {
"type": "string"
}
},
"required": [
"Address",
"AuthKey"
]
},
"v1.VolumeFindRequest": {
"properties": {
"PartitionID": {
Expand Down

0 comments on commit d53d081

Please sign in to comment.