Updated names

This commit is contained in:
Erik Tiekstra
2021-05-04 09:38:46 +02:00
parent 21f94db524
commit f33f844c67

View File

@@ -102,12 +102,6 @@ pipeline {
cp -r nginx/* ${NGINX_PATH}
'''
// Used when testing Openshift, so that we dont need to wait for build. Also put a # before npm ci above
// sh '''
// mkdir dist
// echo hello > dist/index.html
// '''
echo '### Application built! ###'
}
}
@@ -126,9 +120,9 @@ pipeline {
}
}
stage('Deploy u1') {
stage('Deploy to "auto"') {
steps {
echo '### Deploying to U1... ###'
echo '### Deploying to "auto"... ###'
script {
openshift.withCluster() {
openshift.withProject(u1project) {
@@ -138,13 +132,13 @@ pipeline {
}
}
}
echo '### Deployed to U1! ###'
echo '### Deployed to "auto"! ###'
}
}
stage('Deploy i1') {
stage('Deploy to "test"') {
steps {
echo '### Deploying to I1... ###'
echo '### Deploying to "test"... ###'
script {
openshift.withCluster() {
openshift.withProject(i1project) {
@@ -154,13 +148,13 @@ pipeline {
}
}
}
echo '### Deployed to I1! ###'
echo '### Deployed to "test"! ###'
}
}
stage('Deploy t1') {
stage('Deploy "sys"') {
steps {
echo '### Deploying to T1... ###'
echo '### Deploying to "sys"... ###'
script {
openshift.withCluster() {
openshift.withProject(t1project) {
@@ -170,7 +164,7 @@ pipeline {
}
}
}
echo '### Deployed to T1! ###'
echo '### Deployed to "sys"! ###'
}
}