GoogleCloudPlatform / continuous-deployment-on-kubernetes

Get up and running with Jenkins on Google Kubernetes Engine
Apache License 2.0
1.6k stars 890 forks source link

gcloud container builds is deprecated #136

Closed ajay-bangar closed 6 years ago

ajay-bangar commented 6 years ago

Need to update Jenkinsfile for Cloud SDK updates.

Current gcloud CLI command to Build and push an image with Container Builder : sh "PYTHONUNBUFFERED=1 gcloud container builds submit -t ${imageTag} .

Need to update as: sh "PYTHONUNBUFFERED=1 gcloud builds submit -t ${imageTag} .

ajay-bangar commented 6 years ago

Same modifications introduced in this PR.