davidjumani commented on a change in pull request #800: URL: https://github.com/apache/cloudstack-primate/pull/800#discussion_r503924846
########## File path: src/views/compute/KubernetesServiceTab.vue ########## @@ -327,14 +327,14 @@ export default { this.resource.projectid !== '') { params.projectid = this.resource.projectid } - if (this.isValidValueForKey(this.resource, 'associatednetworkid')) { - params.associatednetworkid = this.resource.associatednetworkid + if (this.isValidValueForKey(this.resource, 'networkid')) { + params.associatednetworkid = this.resource.networkid } } api('listPublicIpAddresses', params).then(json => { const ips = json.listpublicipaddressesresponse.publicipaddress if (this.arrayHasItems(ips)) { - this.publicIpAddress = ips[0] + this.publicIpAddress = ips.filter(x => x.issourcenat)[0] Review comment: From what I've seen, it does use the source nat ip of the network https://github.com/apache/cloudstack/blob/master/plugins/integrations/kubernetes-service/src/main/java/com/cloud/kubernetes/cluster/actionworkers/KubernetesClusterStartWorker.java#L376 ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org