
1. Cleaning up old Makefiles and scripts which are not used anymore 2. Renaming files to contain .md extension so that they render correctly 3. Moving README* files so that they are stored in same location 4. Adding installation scripts for all the utilities Change-Id: Id8475cc7323f6905a0ea6df330197c61688a2a90
19 lines
483 B
Bash
Executable File
19 lines
483 B
Bash
Executable File
#!/bin/bash
|
|
set -xe
|
|
|
|
#NOTE: Lint and package chart
|
|
: ${OSH_INFRA_PATH:="../openstack-helm-infra"}
|
|
|
|
cd charts
|
|
|
|
make openstack-utility
|
|
|
|
helm upgrade --install openstack-utility ./openstack-utility --namespace=utility
|
|
|
|
#NOTE: Validate Deployment info
|
|
kubectl get pods --all-namespaces | grep openstack-utility
|
|
helm status openstack-utility
|
|
export OS_CLOUD=openstack_helm
|
|
sleep 30 #NOTE(portdirect): Wait for ingress controller to update rules and restart Nginx
|
|
openstack endpoint list
|