modified to remove dns for K8 relationship. 17/34317/1
authorNarinder Gupta <narinder.gupta@canonical.com>
Thu, 4 May 2017 21:36:58 +0000 (16:36 -0500)
committerNarinder Gupta <narinder.gupta@canonical.com>
Thu, 4 May 2017 21:37:23 +0000 (16:37 -0500)
Change-Id: Ibd4a0998dc3a6ccc344fd49f033856f045fcc7dd
Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
ci/config_tpl/juju2/bundlek8_tpl/relations.yaml
juju/joid-configure-openstack

index de69b76..32d9ccb 100644 (file)
@@ -3,7 +3,6 @@
 {% else %}
     - [ 'kubernetes-master:kube-api-endpoint', 'kubernetes-worker:kube-api-endpoint' ]
 {% endif %}
-    - [ 'kubernetes-master:cluster-dns', 'kubernetes-worker:kube-dns' ]
     - [ 'kubernetes-master:certificates', 'easyrsa:client' ]
     - [ 'kubernetes-master:etcd', 'etcd:db' ]
     - [ 'kubernetes-worker:certificates', 'easyrsa:client' ]
index 71e4f71..5df82b8 100755 (executable)
@@ -78,12 +78,13 @@ openstack flavor show m1.xlarge > /dev/null 2>&1 || openstack flavor create --ra
 echo "modifying default quotas for admin user"
 
 #Modify quotas for the tenant to allow large deployments
-openstack quota set --instances 400 --cores 800 --ram 404800 --secgroups 4000 --floating-ips -1 --secgroup-rules -1 $TENANT_ID
+PROJECT_ID=`openstack quota show -f value -c project`
+openstack quota set --instances 400 --cores 800 --ram 404800 --secgroups 4000 --floating-ips -1 --secgroup-rules -1 $PROJECT_ID
 
 ### need to find how to change quota for the project not the tenant
 
 ### modify default quota the same way..
-openstack quota set --class --instances 400 --cores 800 --ram 404800 --secgroups 4000 --floating-ips -1 --secgroup-rules -1 $TENANT_ID
+#openstack quota set --class --instances 400 --cores 800 --ram 404800 --secgroups 4000 --floating-ips -1 --secgroup-rules -1 $TENANT_ID
 
 echo "Uploading images to glance"