ソースを参照

Pongo mensajes en español

creylopez 11 ヶ月 前
コミット
626ee9e188
1 ファイル変更2 行追加3 行削除
  1. 2 3
      Jenkinsfile

+ 2 - 3
Jenkinsfile

@@ -12,7 +12,7 @@ pipeline {
 
   stages {
 
-    stage('Kaniko Build & Push Image') {
+    stage('Construye y sube la imagen usando Kaniko') {
       steps {
         container('kaniko') {
           script {
@@ -26,7 +26,7 @@ pipeline {
       }
     }
 
-    stage('Deploy App to Kubernetes') {
+    stage('Despliega en Kubernetes') {
       steps {
         container('kubectl') {
           withCredentials([file(credentialsId: 'kubeconfig-imac', variable: 'KUBECONFIG')]) {
@@ -37,6 +37,5 @@ pipeline {
         }
       }
     }
-
   }
 }