
This removes the script's redundant project creation curl calls as
this is created by the project code here [0]. This also moved the
wedged temporary script last to allow projects creation to occur
prior to the dev pipeline run.
[0] 1169477e65/charts/jarvis-project/templates/Job-project.yaml (L53-L72)
Signed-off-by: Tin Lam <tin@irrational.io>
Change-Id: Ie6ca362cf7d05dd07881e8540c556f7a3ad534e7
12 lines
475 B
Bash
Executable File
12 lines
475 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
cd ./tools/images
|
|
sudo make build IMAGE_FULLNAME=standard-container:1.0
|
|
|
|
cd ../../charts
|
|
helm upgrade --install development-pipeline -n development-pipeline ./development-pipeline
|
|
kubectl apply -n development-pipeline -f ./development-pipeline/config_map.yaml.example
|
|
kubectl create -n development-pipeline -f ./development-pipeline/pipelinerun-validation.yaml
|
|
../tools/deployment/common/wait-for-pipelinerun.sh development-pipeline development-pipeline
|