Pranav Saxena
6cc7cda9ce
CS:15792- S2S VPN : A tier created in VPC from a domain-admin account does not show up in the VPC configuration page. Instead, it is seen in the guest networks page
2012-08-02 02:59:30 +05:30
Brian Federle
431b8fe708
CS-15753:
...
Re-enable 'view all ip addresses' link on tier details.
--this was disabled previously due to a bug in the VPC widget, which
is also fixed with this commit.
2012-07-30 15:10:48 -07:00
Pranav Saxena
ac3dca4f6a
CS-15746: S2S VPN: vpn connection details page does not show the vpn connection state
2012-07-30 17:51:31 +05:30
Pranav Saxena
8ac846dcb3
CS-15720:S2S VPN: Adding vpn conenction is on customer gateway rather than in vpn connection page
2012-07-30 10:31:51 +05:30
Pranav Saxena
a37e2d461c
CS-15720 :S2S VPN Front end development: Adding vpn connection is on customer gateway rather than in vpn connection page
2012-07-27 17:44:01 +05:30
Brian Federle
f8bfead038
Cleanup formatting/whitespace
2012-07-26 15:38:56 -07:00
Brian Federle
099af7c283
Disable listView filters for PF/LB/Static NAT
2012-07-26 15:36:53 -07:00
Brian Federle
eb68b40e7f
Add tag UI support for VPC resource types:
...
- Vpc,
- NetworkACL,
- StaticRoute
2012-07-24 13:58:07 -07:00
Jessica Wang
9dfe6eaf53
cloudstack 3.0 UI - VPN Customer Gateway - detailView - add new action "Create VPN Connection".
2012-07-20 11:05:44 -07:00
Jessica Wang
8f11a882e0
cloudstack 3.0 UI - site to site VPN - VPN Gateway - implement Add VPN Gateway action.
2012-07-19 17:40:58 -07:00
Jessica Wang
1fc67e4990
cloudstack 3.0 UI - site to site VPN - VPN Gateway - implement Delete VPN Gateway action.
2012-07-19 16:55:44 -07:00
Jessica Wang
b08e3a0fc4
cloudstack 3.0 UI - site to site VPN - VPN connection - when delete action is clicked, only call deleteVpnConnection API (no calling deleteVpnCustomerGateway any more).
2012-07-19 16:20:58 -07:00
Jessica Wang
4114b1cce7
cloudstack 3.0 UI - network page - add new section "VPN customer gateway".
2012-07-19 16:09:34 -07:00
Jessica Wang
7825e82260
cloudstack 3.0 UI - VPC - site to site VPN - add new section "Customer Gateway".
2012-07-19 15:36:42 -07:00
Jessica Wang
b3aad47570
cloudstack 3.0 UI - VPC - private gateway - make root-admin able to see private gateways created by other people.
2012-07-16 16:06:57 -07:00
Jessica Wang
13fd9c9774
cloudstack 3.0 UI - VPC - private gateway - only root-admin is allowed to delete a private gateway.
2012-07-16 16:00:53 -07:00
Jessica Wang
845569b121
cloudstack 3.0 UI - VPC - create private gateway action - make it async instead of sync.
2012-07-16 15:17:44 -07:00
Jessica Wang
32873b3c4e
cloudstack 3.0 UI - VPC - tier - tier detail - hide View IP Addresses until JS error "$browser is undefined" is fixed.
2012-07-13 13:07:31 -07:00
Jessica Wang
f0815df712
cloudstack 3.0 UI - VPC - tier - implement tier detail with edit, delete, restart action.
2012-07-13 11:28:34 -07:00
Jessica Wang
c3a854faf2
cloudstack 3.0 UI - VPC - Gateways - pass listAll=true to listPrivateGateways API.
2012-07-12 16:28:48 -07:00
Jessica Wang
99c28a58f6
cloudstack 3.0 UI - VPC - gateways - regular user and domain admin are not allowed to Add Gateway.
2012-07-11 16:27:23 -07:00
Jessica Wang
d0b8e59ab4
cloudstack 3.0 UI - VPC - create tier dialog - check all tiers under the VPC. If any of them includes LB service, exclude network offering including LB service from network offering dropdown.
2012-07-11 16:00:48 -07:00
Jessica Wang
76b8407b69
cloudstack 3.0 UI - VPC - gateways - implement Remove Gateway action.
2012-07-11 15:16:18 -07:00
Jessica Wang
b727c58497
cloudstack 3.0 UI - VPC - gateways - static route - implement Remove action.
2012-07-11 14:51:19 -07:00
Jessica Wang
37786a8325
cloudstack 3.0 UI - VPC - gateways - static route - implement Add action.
2012-07-11 14:42:23 -07:00
Jessica Wang
9212d16080
cloudstack 3.0 UI - VPC - gateways - populate Static Routes tab.
2012-07-11 13:30:18 -07:00
Jessica Wang
c04fd3461a
cloudstack 3.0 UI - VPC - gateways - populate listView and detailView.
2012-07-11 13:19:29 -07:00
Jessica Wang
04142986c7
cloudstack 3.0 UI - VPC - implement Add Private Gateway action.
2012-07-11 12:15:35 -07:00
Jessica Wang
deab99a533
cloudstack 3.0 UI - VPC - Add Tier dialog - check if any tier supports LB service before populating network offering dropdown.
2012-07-11 11:25:56 -07:00
Brian Federle
c33aeb43e5
Add VPC gateway config UI
...
-Add a list view which lists gateways associated with a VPC
-Add detail view with ability to edit a gateway's static routes
** Note: this currently uses dummy content
2012-07-11 10:21:31 -07:00
Jessica Wang
3bb48742b8
cloudstack 3.0 UI - VPC - tier - ACL - add ACL action - add traffic type field (Ingress/Egress).
2012-07-10 18:06:33 -07:00
Brian Federle
722d8faf17
VPC: Add tier detail view
...
On click of tier name, show a detail view of the specific tier.
This implemented as follows:
tiers: {
detailView: {
name: 'Tier details',
tabs: {
details: {
title: 'Details',
fields: [
{ id: { label: 'ID' }},
{
name: { label: 'Name' },
cidr: { label: 'CIDR' }
}
],
dataProvider: function(args) {
args.response.success({
data: args.context.networks[0]
});
}
}
}
},
...
2012-07-10 16:23:43 -07:00
Jessica Wang
9a669ab0bb
cloudstack 3.0 UI - VPC - site to site VPN - delete action - not delete VPN gateway, only delete VPN connection and VPN customer gateway.
2012-07-09 19:11:33 -07:00
Jessica Wang
902a56fc7a
cloudstack 3.0 UI - VPC - site to site VPN - there is only one VPN gateway per VPC. So, when creating 2nd, 3rd, ~ VPN connection, reuse the VPN gateway created when the first VPN connection is created.
2012-07-09 19:00:48 -07:00
Jessica Wang
c237e0a960
cloudstack 3.0 UI - VPC section - rename context.tiers to context.networks to be consistent with Guest Network section.
2012-07-08 15:20:18 -07:00
Jessica Wang
ecf730356d
cloudstack 3.0 UI - VPC - site-to-site VPN - pass vpcid to listVpnConnections and listVirtualMachines API since site-to-site VPN has been moved under VPC.
2012-07-08 14:05:54 -07:00
Jessica Wang
6641f35885
cloudstack 3.0 UI - move site-to-site VPN into VPC container.
2012-07-08 11:37:46 -07:00
Jessica Wang
2602acb0b7
cloudstack 3.0 UI - VPC - implement "IP Addresses" in VPC.
2012-07-08 11:18:18 -07:00
Jessica Wang
cbd67268f0
cloudstack 3.0 UI - VPC - tier - VM listing - implement start VM, stop VM, restart VM, destroy VM, restore VM action.
2012-07-07 19:09:23 -07:00
Jessica Wang
8b8b9ddce7
cloudstack 3.0 UI - VPC - tier - (1) clicking "N VMs" will pop up a dialog box listing VMs.
...
(2) remove Star Tier, Stop Tear action.
2012-07-07 14:02:14 -07:00
Jessica Wang
33cf9468b6
cloudstack 3.0 UI - VPC - tier - implement Remove Tier action.
2012-07-07 13:35:01 -07:00
Jessica Wang
93b264b219
cloudstack 3.0 UI - VPC - tier - ACL - implement Add ACL rule, Delete ACL rule.
2012-07-07 10:33:10 -07:00
Jessica Wang
e67d0cbf86
cloudstack 3.0 UI - VPC - tier - ACL - populate ACL grid.
2012-07-06 16:34:40 -07:00
Jessica Wang
3a5b43796c
cloudstack 3.0 UI - VPC - tier - implement "Add VM to tier" action.
2012-07-06 16:03:44 -07:00
Jessica Wang
883d061dd7
cloudstack 3.0 UI - VPC - Edit VPC chart - populate tiers by API call instead of hardcoding.
2012-07-06 10:43:28 -07:00
Jessica Wang
212baba7b1
cloudstack 3.0 UI - VPC - implement "Add new tier" action.
2012-07-05 13:19:32 -07:00
Brian Federle
a3a965a5a8
VPC UI: Add link to site-to-site VPN
...
Add link in tooltip for site-to-site VPN, which opens a new panel
showing the list view. This draws from the existing 'siteToSiteVpn'
network subsection, so no modification should be required to the
existing list view.
2012-06-29 13:35:47 -07:00
Brian Federle
d5e8a5f227
Add configure icon to VPC
2012-06-29 11:50:58 -07:00
Brian Federle
f6fb322c7b
Fix add tier UI
...
Properly pass context for add tier dialog, which broke due to recent
changes that requires context to be present, for the action filter.
2012-06-28 15:34:08 -07:00
Brian Federle
196ef1c1e0
VPC tier UI: Update state after performing actions
...
After performing an action that changes state, namely starting and
stopping a tier, run through the action pre-filter again, to make sure
that the allowable actions are properly refreshed.
2012-06-28 15:19:06 -07:00